mirror of
https://github.com/retspen/webvirtcloud
synced 2024-10-31 19:44:16 +00:00
Language change activation. Fix typos and add new translations
This commit is contained in:
parent
7bb6bd310b
commit
b7fc8a5fea
26 changed files with 2078 additions and 180 deletions
|
@ -30,7 +30,7 @@ class UserAttributes(models.Model):
|
|||
user = models.OneToOneField(User, on_delete=models.CASCADE)
|
||||
can_clone_instances = models.BooleanField(default=True)
|
||||
max_instances = models.IntegerField(default=2,
|
||||
help_text="-1 for unlimited. Any integer value",
|
||||
help_text=_("-1 for unlimited. Any integer value"),
|
||||
validators=[
|
||||
MinValueValidator(-1),
|
||||
])
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<div class="col-lg-12">
|
||||
{% include 'create_user_block.html' %}
|
||||
<div class="float-right search">
|
||||
<input id="filter" class="form-control" type="text" placeholder="Search">
|
||||
<input id="filter" class="form-control" type="text" placeholder="{% trans 'Search' %}">
|
||||
</div>
|
||||
<h2 class="page-header">{% trans "Users" %}</h1>
|
||||
</div>
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
<div class="form-group row">
|
||||
<label class="col-sm-4 col-form-label">{% trans "Name" %}</label>
|
||||
<div class="col-sm-6">
|
||||
<input type="text" class="form-control" name="name" placeholder="john" required pattern="[a-z0-9]+">
|
||||
<input type="text" class="form-control" name="name" placeholder="{% trans "john" %}" required pattern="[a-z0-9]+">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group row">
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
<th span="col">{% trans "Staff" %}</th>
|
||||
<th span="col">{% trans "Superuser" %}</th>
|
||||
<th span="col">{% trans "Can Clone" %}</th>
|
||||
<th span="col">""</th>
|
||||
<th span="col">{% trans "Actions" %}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="searchable">
|
||||
|
|
|
@ -1,65 +1,38 @@
|
|||
# Generated by Django 2.2.12 on 2020-05-23 12:05
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
from django.utils.translation import ugettext_lazy as _
|
||||
|
||||
def add_default_settings(apps, schema_editor):
|
||||
|
||||
setting = apps.get_model("appsettings", "AppSettings")
|
||||
db_alias = schema_editor.connection.alias
|
||||
setting.objects.using(db_alias).bulk_create([
|
||||
setting(1, "Theme", "BOOTSTRAP_THEME", "flaty",
|
||||
"", "Bootstrap CSS & Bootswatch Theme"),
|
||||
setting(2, "Theme SASS Path", "SASS_DIR", "dev/scss/",
|
||||
"", "Bootstrap SASS & Bootswatch SASS Directory"),
|
||||
setting(3, "All Instances View Style", "VIEW_INSTANCES_LIST_STYLE",
|
||||
"grouped", "grouped,nongrouped", "All instances list style"),
|
||||
setting(4, "Logs per Page", "LOGS_PER_PAGE",
|
||||
"100", "", "Pagination for logs"),
|
||||
setting(5, "Multiple Owner for VM ", "ALLOW_INSTANCE_MULTIPLE_OWNER",
|
||||
"True", "True,False", "Allow to have multiple owner for instance"),
|
||||
setting(6, "Quota Debug", "QUOTA_DEBUG", "True",
|
||||
"True,False", "Debug for user quotas"),
|
||||
setting(7, "Disk Format", "INSTANCE_VOLUME_DEFAULT_FORMAT",
|
||||
"qcow2", "raw,qcow,qcow2", "Instance disk format"),
|
||||
setting(8, "Disk Bus", "INSTANCE_VOLUME_DEFAULT_BUS", "virtio",
|
||||
"virtio,scsi,ide,usb,sata", "Instance disk bus type"),
|
||||
setting(9, "Disk SCSI Controller", "INSTANCE_VOLUME_DEFAULT_SCSI_CONTROLLER",
|
||||
"virtio-scsi", "virtio-scsi, lsilogic, virtio-blk", "SCSI controller type"),
|
||||
setting(10, "Disk Cache", "INSTANCE_VOLUME_DEFAULT_CACHE", "directsync",
|
||||
"default,directsync,none,unsafe,writeback,writethrough", "Disk volume cache type"),
|
||||
setting(11, "Disk IO Type", "INSTANCE_VOLUME_DEFAULT_IO",
|
||||
"default", "default,native,threads", "Volume io modes"),
|
||||
setting(12, "Disk Detect Zeroes", "INSTANCE_VOLUME_DEFAULT_DETECT_ZEROES",
|
||||
"default", "default,on,off,unmap", "Volume detect zeroes mode"),
|
||||
setting(13, "Disk Discard", "INSTANCE_VOLUME_DEFAULT_DISCARD",
|
||||
"default", "default,unmap,ignore", "Volume discard mode"),
|
||||
setting(14, "Disk Owner UID", "INSTANCE_VOLUME_DEFAULT_OWNER_UID", "0",
|
||||
"", "Owner UID: up to os, 0=root, 107=qemu or libvirt-bin(for ubuntu)"),
|
||||
setting(15, "Disk Owner GID", "INSTANCE_VOLUME_DEFAULT_OWNER_GID", "0",
|
||||
"", "Owner GID: up to os, 0=root, 107=qemu or libvirt-bin(for ubuntu)"),
|
||||
setting(16, "VM CPU Mode", "INSTANCE_CPU_DEFAULT_MODE", "host-model",
|
||||
"no-model,host-model,host-passthrough,custom", "Cpu modes"),
|
||||
setting(17, "VM Machine Type", "INSTANCE_MACHINE_DEFAULT_TYPE",
|
||||
"q35", "q35,x86_64", "Chipset/Machine type"),
|
||||
setting(18, "VM Firmware Type", "INSTANCE_FIRMWARE_DEFAULT_TYPE",
|
||||
"BIOS", "BIOS,UEFI", "Firmware type for x86_64"),
|
||||
setting(19, "VM Architecture Type", "INSTANCE_ARCH_DEFAULT_TYPE",
|
||||
"x86_64", "x86_64,i686", "Architecture type: x86_64, i686, etc"),
|
||||
setting(20, "VM Console Type", "QEMU_CONSOLE_DEFAULT_TYPE",
|
||||
"vnc", "vnc,spice", "Default console type"),
|
||||
setting(21, "VM Clone Name Prefix", "CLONE_INSTANCE_DEFAULT_PREFIX",
|
||||
"instance", "True,False", "Prefix for cloned instance name"),
|
||||
setting(22, "VM Clone Auto Name", "CLONE_INSTANCE_AUTO_NAME",
|
||||
"False", "True,False", "Generated name for cloned instance"),
|
||||
setting(23, "VM Clone Auto Migrate", "CLONE_INSTANCE_AUTO_MIGRATE",
|
||||
"False", "True,False", "Auto migrate instance after clone"),
|
||||
setting(24, "VM Bottom Bar", "VIEW_INSTANCE_DETAIL_BOTTOM_BAR",
|
||||
"True", "True,False", "Bottom navbar for instance details"),
|
||||
setting(25, "Show Access Root Pass", "SHOW_ACCESS_ROOT_PASSWORD",
|
||||
"False", "True,False", "Show access root password"),
|
||||
setting(26, "Show Access SSH Keys", "SHOW_ACCESS_SSH_KEYS",
|
||||
"False", "True,False", "Show access ssh keys"),
|
||||
setting(1, _("Theme"), "BOOTSTRAP_THEME", "flaty", "", _("Bootstrap CSS & Bootswatch Theme")),
|
||||
setting(2, _("Theme SASS Path"), "SASS_DIR", "dev/scss/", "", _("Bootstrap SASS & Bootswatch SASS Directory")),
|
||||
setting(3, _("All Instances View Style"), "VIEW_INSTANCES_LIST_STYLE", "grouped", "grouped,nongrouped", _("All instances list style")),
|
||||
setting(4, _("Logs per Page"), "LOGS_PER_PAGE", "100", "", _("Pagination for logs")),
|
||||
setting(5, _("Multiple Owner for VM"), "ALLOW_INSTANCE_MULTIPLE_OWNER", "True", "True,False", _("Allow to have multiple owner for instance")),
|
||||
setting(6, _("Quota Debug"), "QUOTA_DEBUG", "True", "True,False", _("Debug for user quotas")),
|
||||
setting(7, _("Disk Format"), "INSTANCE_VOLUME_DEFAULT_FORMAT", "qcow2", "raw,qcow,qcow2", _("Instance disk format")),
|
||||
setting(8, _("Disk Bus"), "INSTANCE_VOLUME_DEFAULT_BUS", "virtio", "virtio,scsi,ide,usb,sata", _("Instance disk bus type")),
|
||||
setting(9, _("Disk SCSI Controller"), "INSTANCE_VOLUME_DEFAULT_SCSI_CONTROLLER", "virtio-scsi", "virtio-scsi, lsilogic, virtio-blk", _("SCSI controller type")),
|
||||
setting(10, _("Disk Cache"), "INSTANCE_VOLUME_DEFAULT_CACHE", "directsync", "default,directsync,none,unsafe,writeback,writethrough", _("Disk volume cache type")),
|
||||
setting(11, _("Disk IO Type"), "INSTANCE_VOLUME_DEFAULT_IO", "default", "default,native,threads", _("Volume io modes")),
|
||||
setting(12, _("Disk Detect Zeroes"), "INSTANCE_VOLUME_DEFAULT_DETECT_ZEROES", "default", "default,on,off,unmap", _("Volume detect zeroes mode")),
|
||||
setting(13, _("Disk Discard"), "INSTANCE_VOLUME_DEFAULT_DISCARD", "default", "default,unmap,ignore", _("Volume discard mode")),
|
||||
setting(14, _("Disk Owner UID"), "INSTANCE_VOLUME_DEFAULT_OWNER_UID", "0", "", _("Owner UID: up to os, 0=root, 107=qemu or libvirt-bin(for ubuntu)")),
|
||||
setting(15, _("Disk Owner GID"), "INSTANCE_VOLUME_DEFAULT_OWNER_GID", "0", "", _("Owner GID: up to os, 0=root, 107=qemu or libvirt-bin(for ubuntu)")),
|
||||
setting(16, _("VM CPU Mode"), "INSTANCE_CPU_DEFAULT_MODE", "host-model", "no-model,host-model,host-passthrough,custom", _("Cpu modes")),
|
||||
setting(17, _("VM Machine Type"), "INSTANCE_MACHINE_DEFAULT_TYPE", "q35", "q35,x86_64", _("Chipset/Machine type")),
|
||||
setting(18, _("VM Firmware Type"), "INSTANCE_FIRMWARE_DEFAULT_TYPE", "BIOS", "BIOS,UEFI", _("Firmware type for x86_64")),
|
||||
setting(19, _("VM Architecture Type"), "INSTANCE_ARCH_DEFAULT_TYPE", "x86_64", "x86_64,i686", _("Architecture type: x86_64, i686, etc")),
|
||||
setting(20, _("VM Console Type"), "QEMU_CONSOLE_DEFAULT_TYPE", "vnc", "vnc,spice", _("Default console type")),
|
||||
setting(21, _("VM Clone Name Prefix"), "CLONE_INSTANCE_DEFAULT_PREFIX", "instance", "True,False", _("Prefix for cloned instance name")),
|
||||
setting(22, _("VM Clone Auto Name"), "CLONE_INSTANCE_AUTO_NAME", "False", "True,False", _("Generated name for cloned instance")),
|
||||
setting(23, _("VM Clone Auto Migrate"), "CLONE_INSTANCE_AUTO_MIGRATE", "False", "True,False", _("Auto migrate instance after clone")),
|
||||
setting(24, _("VM Bottom Bar"), "VIEW_INSTANCE_DETAIL_BOTTOM_BAR", "True", "True,False", _("Bottom navbar for instance details")),
|
||||
setting(25, _("Show Access Root Pass"), "SHOW_ACCESS_ROOT_PASSWORD", "False", "True,False", _("Show access root password")),
|
||||
setting(26, _("Show Access SSH Keys"), "SHOW_ACCESS_SSH_KEYS", "False", "True,False", _("Show access ssh keys")),
|
||||
])
|
||||
|
||||
|
||||
|
|
|
@ -90,7 +90,7 @@
|
|||
<div class="form-group row">
|
||||
<label class="col-sm-4 col-form-label">{% trans "Details" %}</label>
|
||||
<div class="col-sm-6">
|
||||
<input type="text" name="details" class="form-control" placeholder="Details" value="{{ compute.details }}">
|
||||
<input type="text" name="details" class="form-control" placeholder="{% trans "Details" %}" value="{{ compute.details }}">
|
||||
</div>
|
||||
</div></div>
|
||||
<div class="modal-footer">
|
||||
|
@ -133,7 +133,7 @@
|
|||
<div class="form-group row">
|
||||
<label class="col-sm-4 col-form-label">{% trans "Details" %}</label>
|
||||
<div class="col-sm-6">
|
||||
<input type="text" name="details" class="form-control" placeholder="Details" value="{{ compute.details }}">
|
||||
<input type="text" name="details" class="form-control" placeholder="{% trans "Details" %}" value="{{ compute.details }}">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -181,7 +181,7 @@
|
|||
<div class="form-group row">
|
||||
<label class="col-sm-4 col-form-label">{% trans "Details" %}</label>
|
||||
<div class="col-sm-6">
|
||||
<input type="text" name="details" class="form-control" placeholder="Details" value="{{ compute.details }}">
|
||||
<input type="text" name="details" class="form-control" placeholder="{% trans "Details" %}" value="{{ compute.details }}">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -211,7 +211,7 @@
|
|||
<div class="form-group row">
|
||||
<label class="col-sm-4 col-form-label">{% trans "Details" %}</label>
|
||||
<div class="col-sm-6">
|
||||
<input type="text" name="details" class="form-control" placeholder="Details" value="{{ compute.details }}">
|
||||
<input type="text" name="details" class="form-control" placeholder="{% trans 'Details' %}" value="{{ compute.details }}">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
<div class="form-group row">
|
||||
<label class="col-sm-3 col-form-label">{% trans "Name" %}</label>
|
||||
<div class="col-sm-6">
|
||||
<input type="text" name="label" class="form-control" placeholder="Micro" maxlength="20"
|
||||
<input type="text" name="label" class="form-control" placeholder="{% trans "Micro" %}" maxlength="20"
|
||||
required pattern="[a-zA-Z0-9]+">
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
@import 'dev/scss/wvc-theme/flatly/variables';
|
||||
@import 'dev/scss/bootstrap-overrides.scss';
|
||||
@import 'dev/scss/wvc-theme/flatly/bootswatch';
|
||||
@import 'dev/scss//wvc-theme/flatly/variables';
|
||||
@import 'dev/scss//bootstrap-overrides.scss';
|
||||
@import 'dev/scss//wvc-theme/flatly/bootswatch';
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
{% endif %}
|
||||
{% if all_host_vms or all_user_vms %}
|
||||
<div class="float-right search">
|
||||
<input id="filter" class="form-control" type="text" placeholder="Search">
|
||||
<input id="filter" class="form-control" type="text" placeholder="{% trans 'Search' %}">
|
||||
</div>
|
||||
{% endif %}
|
||||
<h2 class="page-header">{% trans "Instances" %}</h2>
|
||||
|
|
|
@ -1682,7 +1682,7 @@
|
|||
<div class="ml-3 form-row">
|
||||
<div class="custom-control custom-switch">
|
||||
<input class="custom-control-input" type="checkbox" name="delete_nvram" value="true" id="delete_nvram" checked>
|
||||
<label class="custom-control-label font-weight-bold" for="delete_nvram" {% trans "Remove Instance's NVRAM" %}</label>
|
||||
<label class="custom-control-label font-weight-bold" for="delete_nvram">{% trans "Remove Instance's NVRAM" %}</label>
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
{% endif %}
|
||||
{% if all_host_vms or all_user_vms %}
|
||||
<div class="float-right search">
|
||||
<input id="filter" class="form-control" type="text" placeholder="Search">
|
||||
<input id="filter" class="form-control" type="text" placeholder="{% trans 'Search' %}">
|
||||
</div>
|
||||
{% endif %}
|
||||
<h2 class="page-header">{{ compute.name }}</h2>
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-06-10 08:01+0000\n"
|
||||
"POT-Creation-Date: 2020-06-10 12:05+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -38,6 +38,10 @@ msgstr ""
|
|||
msgid "Flavor name is already use"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/models.py:33
|
||||
msgid "-1 for unlimited. Any integer value"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/models.py:85
|
||||
msgid "Can change password"
|
||||
msgstr ""
|
||||
|
@ -210,6 +214,15 @@ msgstr ""
|
|||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/templates/accounts-list.html:11
|
||||
#: admin/templates/admin/group_list.html:13
|
||||
#: admin/templates/admin/user_list.html:14
|
||||
#: instances/templates/allinstances.html:17
|
||||
#: instances/templates/instances.html:19 nwfilters/templates/nwfilters.html:11
|
||||
#: storages/templates/storage.html:89
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/templates/accounts-list.html:25 accounts/templates/accounts.html:21
|
||||
#: admin/templates/admin/user_list.html:25
|
||||
msgid "You don't have any user"
|
||||
|
@ -366,6 +379,10 @@ msgstr ""
|
|||
msgid "Add New User"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/templates/create_user_block.html:20
|
||||
msgid "john"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/templates/create_user_block.html:32
|
||||
#: create/templates/create_instance_w1.html:93
|
||||
#: create/templates/create_instance_w2.html:275
|
||||
|
@ -534,11 +551,6 @@ msgstr ""
|
|||
msgid "Create New"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/admin/group_list.html:13
|
||||
#: admin/templates/admin/user_list.html:14
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/admin/group_list.html:24
|
||||
msgid "You don't have any groups"
|
||||
msgstr ""
|
||||
|
@ -548,6 +560,7 @@ msgid "Group Name"
|
|||
msgstr ""
|
||||
|
||||
#: admin/templates/admin/group_list.html:33
|
||||
#: admin/templates/admin/user_list.html:38
|
||||
#: instances/templates/allinstances.html:60
|
||||
#: instances/templates/allinstances_index_grouped.html:11
|
||||
#: instances/templates/allinstances_index_nongrouped.html:10
|
||||
|
@ -599,6 +612,214 @@ msgstr ""
|
|||
msgid "Update User"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:10
|
||||
msgid "Theme"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:10
|
||||
msgid "Bootstrap CSS & Bootswatch Theme"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:11
|
||||
msgid "Theme SASS Path"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:11
|
||||
msgid "Bootstrap SASS & Bootswatch SASS Directory"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:12
|
||||
msgid "All Instances View Style"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:12
|
||||
msgid "All instances list style"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:13
|
||||
msgid "Logs per Page"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:13
|
||||
msgid "Pagination for logs"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:14
|
||||
msgid "Multiple Owner for VM"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:14
|
||||
msgid "Allow to have multiple owner for instance"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:15
|
||||
msgid "Quota Debug"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:15
|
||||
msgid "Debug for user quotas"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:16
|
||||
msgid "Disk Format"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:16
|
||||
msgid "Instance disk format"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:17
|
||||
msgid "Disk Bus"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:17
|
||||
msgid "Instance disk bus type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:18
|
||||
msgid "Disk SCSI Controller"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:18
|
||||
msgid "SCSI controller type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:19
|
||||
msgid "Disk Cache"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:19
|
||||
msgid "Disk volume cache type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:20
|
||||
msgid "Disk IO Type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:20
|
||||
msgid "Volume io modes"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:21
|
||||
msgid "Disk Detect Zeroes"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:21
|
||||
msgid "Volume detect zeroes mode"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:22
|
||||
msgid "Disk Discard"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:22
|
||||
msgid "Volume discard mode"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:23
|
||||
msgid "Disk Owner UID"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:23
|
||||
msgid "Owner UID: up to os, 0=root, 107=qemu or libvirt-bin(for ubuntu)"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:24
|
||||
msgid "Disk Owner GID"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:24
|
||||
msgid "Owner GID: up to os, 0=root, 107=qemu or libvirt-bin(for ubuntu)"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:25
|
||||
msgid "VM CPU Mode"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:25
|
||||
msgid "Cpu modes"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:26
|
||||
msgid "VM Machine Type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:26
|
||||
msgid "Chipset/Machine type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:27
|
||||
msgid "VM Firmware Type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:27
|
||||
msgid "Firmware type for x86_64"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:28
|
||||
msgid "VM Architecture Type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:28
|
||||
msgid "Architecture type: x86_64, i686, etc"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:29
|
||||
msgid "VM Console Type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:29
|
||||
msgid "Default console type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:30
|
||||
msgid "VM Clone Name Prefix"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:30
|
||||
msgid "Prefix for cloned instance name"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:31
|
||||
msgid "VM Clone Auto Name"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:31
|
||||
msgid "Generated name for cloned instance"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:32
|
||||
msgid "VM Clone Auto Migrate"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:32
|
||||
msgid "Auto migrate instance after clone"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:33
|
||||
msgid "VM Bottom Bar"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:33
|
||||
msgid "Bottom navbar for instance details"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:34
|
||||
msgid "Show Access Root Pass"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:34
|
||||
msgid "Show access root password"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:35
|
||||
msgid "Show Access SSH Keys"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:35
|
||||
msgid "Show access ssh keys"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/templates/appsettings.html:3
|
||||
#: appsettings/templates/appsettings.html:8
|
||||
msgid "Edit Settings"
|
||||
|
@ -682,8 +903,10 @@ msgid "Not Connected"
|
|||
msgstr ""
|
||||
|
||||
#: computes/templates/computes.html:46 computes/templates/computes.html:91
|
||||
#: computes/templates/computes.html:134 computes/templates/computes.html:182
|
||||
#: computes/templates/computes.html:212 computes/templates/overview.html:92
|
||||
#: computes/templates/computes.html:93 computes/templates/computes.html:134
|
||||
#: computes/templates/computes.html:136 computes/templates/computes.html:182
|
||||
#: computes/templates/computes.html:184 computes/templates/computes.html:212
|
||||
#: computes/templates/computes.html:214 computes/templates/overview.html:92
|
||||
#: instances/templates/instance.html:758 instances/templates/instance.html:840
|
||||
msgid "Details"
|
||||
msgstr ""
|
||||
|
@ -973,6 +1196,10 @@ msgstr ""
|
|||
msgid "Add New Flavor"
|
||||
msgstr ""
|
||||
|
||||
#: create/templates/create_flav_block.html:21
|
||||
msgid "Micro"
|
||||
msgstr ""
|
||||
|
||||
#: create/templates/create_flav_block.html:26
|
||||
#: create/templates/create_instance_w2.html:82
|
||||
#: create/templates/create_instance_w2.html:327
|
||||
|
@ -2727,10 +2954,22 @@ msgstr ""
|
|||
msgid "Outbound"
|
||||
msgstr ""
|
||||
|
||||
#: networks/templates/add_network_qos.html:29
|
||||
#: networks/templates/add_network_qos.html:36
|
||||
#: networks/templates/add_network_qos.html:43
|
||||
msgid "kilobytes"
|
||||
msgstr ""
|
||||
|
||||
#: networks/templates/create_net_block.html:12
|
||||
msgid "Add New Network"
|
||||
msgstr ""
|
||||
|
||||
#: networks/templates/create_net_block.html:20
|
||||
#: storages/templates/create_stg_block.html:44
|
||||
#: storages/templates/create_stg_block.html:73
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#: networks/templates/create_net_block.html:24
|
||||
msgid "Type forwarding"
|
||||
msgstr ""
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-06-10 08:01+0000\n"
|
||||
"POT-Creation-Date: 2020-06-10 12:05+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -38,6 +38,10 @@ msgstr ""
|
|||
msgid "Flavor name is already use"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/models.py:33
|
||||
msgid "-1 for unlimited. Any integer value"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/models.py:85
|
||||
msgid "Can change password"
|
||||
msgstr ""
|
||||
|
@ -210,6 +214,15 @@ msgstr ""
|
|||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/templates/accounts-list.html:11
|
||||
#: admin/templates/admin/group_list.html:13
|
||||
#: admin/templates/admin/user_list.html:14
|
||||
#: instances/templates/allinstances.html:17
|
||||
#: instances/templates/instances.html:19 nwfilters/templates/nwfilters.html:11
|
||||
#: storages/templates/storage.html:89
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/templates/accounts-list.html:25 accounts/templates/accounts.html:21
|
||||
#: admin/templates/admin/user_list.html:25
|
||||
msgid "You don't have any user"
|
||||
|
@ -366,6 +379,10 @@ msgstr ""
|
|||
msgid "Add New User"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/templates/create_user_block.html:20
|
||||
msgid "john"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/templates/create_user_block.html:32
|
||||
#: create/templates/create_instance_w1.html:93
|
||||
#: create/templates/create_instance_w2.html:275
|
||||
|
@ -534,11 +551,6 @@ msgstr ""
|
|||
msgid "Create New"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/admin/group_list.html:13
|
||||
#: admin/templates/admin/user_list.html:14
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/admin/group_list.html:24
|
||||
msgid "You don't have any groups"
|
||||
msgstr ""
|
||||
|
@ -548,6 +560,7 @@ msgid "Group Name"
|
|||
msgstr ""
|
||||
|
||||
#: admin/templates/admin/group_list.html:33
|
||||
#: admin/templates/admin/user_list.html:38
|
||||
#: instances/templates/allinstances.html:60
|
||||
#: instances/templates/allinstances_index_grouped.html:11
|
||||
#: instances/templates/allinstances_index_nongrouped.html:10
|
||||
|
@ -599,6 +612,214 @@ msgstr ""
|
|||
msgid "Update User"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:10
|
||||
msgid "Theme"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:10
|
||||
msgid "Bootstrap CSS & Bootswatch Theme"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:11
|
||||
msgid "Theme SASS Path"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:11
|
||||
msgid "Bootstrap SASS & Bootswatch SASS Directory"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:12
|
||||
msgid "All Instances View Style"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:12
|
||||
msgid "All instances list style"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:13
|
||||
msgid "Logs per Page"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:13
|
||||
msgid "Pagination for logs"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:14
|
||||
msgid "Multiple Owner for VM"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:14
|
||||
msgid "Allow to have multiple owner for instance"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:15
|
||||
msgid "Quota Debug"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:15
|
||||
msgid "Debug for user quotas"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:16
|
||||
msgid "Disk Format"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:16
|
||||
msgid "Instance disk format"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:17
|
||||
msgid "Disk Bus"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:17
|
||||
msgid "Instance disk bus type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:18
|
||||
msgid "Disk SCSI Controller"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:18
|
||||
msgid "SCSI controller type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:19
|
||||
msgid "Disk Cache"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:19
|
||||
msgid "Disk volume cache type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:20
|
||||
msgid "Disk IO Type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:20
|
||||
msgid "Volume io modes"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:21
|
||||
msgid "Disk Detect Zeroes"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:21
|
||||
msgid "Volume detect zeroes mode"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:22
|
||||
msgid "Disk Discard"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:22
|
||||
msgid "Volume discard mode"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:23
|
||||
msgid "Disk Owner UID"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:23
|
||||
msgid "Owner UID: up to os, 0=root, 107=qemu or libvirt-bin(for ubuntu)"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:24
|
||||
msgid "Disk Owner GID"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:24
|
||||
msgid "Owner GID: up to os, 0=root, 107=qemu or libvirt-bin(for ubuntu)"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:25
|
||||
msgid "VM CPU Mode"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:25
|
||||
msgid "Cpu modes"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:26
|
||||
msgid "VM Machine Type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:26
|
||||
msgid "Chipset/Machine type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:27
|
||||
msgid "VM Firmware Type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:27
|
||||
msgid "Firmware type for x86_64"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:28
|
||||
msgid "VM Architecture Type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:28
|
||||
msgid "Architecture type: x86_64, i686, etc"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:29
|
||||
msgid "VM Console Type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:29
|
||||
msgid "Default console type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:30
|
||||
msgid "VM Clone Name Prefix"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:30
|
||||
msgid "Prefix for cloned instance name"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:31
|
||||
msgid "VM Clone Auto Name"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:31
|
||||
msgid "Generated name for cloned instance"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:32
|
||||
msgid "VM Clone Auto Migrate"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:32
|
||||
msgid "Auto migrate instance after clone"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:33
|
||||
msgid "VM Bottom Bar"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:33
|
||||
msgid "Bottom navbar for instance details"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:34
|
||||
msgid "Show Access Root Pass"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:34
|
||||
msgid "Show access root password"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:35
|
||||
msgid "Show Access SSH Keys"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:35
|
||||
msgid "Show access ssh keys"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/templates/appsettings.html:3
|
||||
#: appsettings/templates/appsettings.html:8
|
||||
msgid "Edit Settings"
|
||||
|
@ -682,8 +903,10 @@ msgid "Not Connected"
|
|||
msgstr ""
|
||||
|
||||
#: computes/templates/computes.html:46 computes/templates/computes.html:91
|
||||
#: computes/templates/computes.html:134 computes/templates/computes.html:182
|
||||
#: computes/templates/computes.html:212 computes/templates/overview.html:92
|
||||
#: computes/templates/computes.html:93 computes/templates/computes.html:134
|
||||
#: computes/templates/computes.html:136 computes/templates/computes.html:182
|
||||
#: computes/templates/computes.html:184 computes/templates/computes.html:212
|
||||
#: computes/templates/computes.html:214 computes/templates/overview.html:92
|
||||
#: instances/templates/instance.html:758 instances/templates/instance.html:840
|
||||
msgid "Details"
|
||||
msgstr ""
|
||||
|
@ -973,6 +1196,10 @@ msgstr ""
|
|||
msgid "Add New Flavor"
|
||||
msgstr ""
|
||||
|
||||
#: create/templates/create_flav_block.html:21
|
||||
msgid "Micro"
|
||||
msgstr ""
|
||||
|
||||
#: create/templates/create_flav_block.html:26
|
||||
#: create/templates/create_instance_w2.html:82
|
||||
#: create/templates/create_instance_w2.html:327
|
||||
|
@ -2727,10 +2954,22 @@ msgstr ""
|
|||
msgid "Outbound"
|
||||
msgstr ""
|
||||
|
||||
#: networks/templates/add_network_qos.html:29
|
||||
#: networks/templates/add_network_qos.html:36
|
||||
#: networks/templates/add_network_qos.html:43
|
||||
msgid "kilobytes"
|
||||
msgstr ""
|
||||
|
||||
#: networks/templates/create_net_block.html:12
|
||||
msgid "Add New Network"
|
||||
msgstr ""
|
||||
|
||||
#: networks/templates/create_net_block.html:20
|
||||
#: storages/templates/create_stg_block.html:44
|
||||
#: storages/templates/create_stg_block.html:73
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#: networks/templates/create_net_block.html:24
|
||||
msgid "Type forwarding"
|
||||
msgstr ""
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-06-10 08:00+0000\n"
|
||||
"POT-Creation-Date: 2020-06-10 12:05+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -38,6 +38,10 @@ msgstr ""
|
|||
msgid "Flavor name is already use"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/models.py:33
|
||||
msgid "-1 for unlimited. Any integer value"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/models.py:85
|
||||
msgid "Can change password"
|
||||
msgstr ""
|
||||
|
@ -210,6 +214,15 @@ msgstr ""
|
|||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/templates/accounts-list.html:11
|
||||
#: admin/templates/admin/group_list.html:13
|
||||
#: admin/templates/admin/user_list.html:14
|
||||
#: instances/templates/allinstances.html:17
|
||||
#: instances/templates/instances.html:19 nwfilters/templates/nwfilters.html:11
|
||||
#: storages/templates/storage.html:89
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/templates/accounts-list.html:25 accounts/templates/accounts.html:21
|
||||
#: admin/templates/admin/user_list.html:25
|
||||
msgid "You don't have any user"
|
||||
|
@ -366,6 +379,10 @@ msgstr ""
|
|||
msgid "Add New User"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/templates/create_user_block.html:20
|
||||
msgid "john"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/templates/create_user_block.html:32
|
||||
#: create/templates/create_instance_w1.html:93
|
||||
#: create/templates/create_instance_w2.html:275
|
||||
|
@ -534,11 +551,6 @@ msgstr ""
|
|||
msgid "Create New"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/admin/group_list.html:13
|
||||
#: admin/templates/admin/user_list.html:14
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/admin/group_list.html:24
|
||||
msgid "You don't have any groups"
|
||||
msgstr ""
|
||||
|
@ -548,6 +560,7 @@ msgid "Group Name"
|
|||
msgstr ""
|
||||
|
||||
#: admin/templates/admin/group_list.html:33
|
||||
#: admin/templates/admin/user_list.html:38
|
||||
#: instances/templates/allinstances.html:60
|
||||
#: instances/templates/allinstances_index_grouped.html:11
|
||||
#: instances/templates/allinstances_index_nongrouped.html:10
|
||||
|
@ -599,6 +612,214 @@ msgstr ""
|
|||
msgid "Update User"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:10
|
||||
msgid "Theme"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:10
|
||||
msgid "Bootstrap CSS & Bootswatch Theme"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:11
|
||||
msgid "Theme SASS Path"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:11
|
||||
msgid "Bootstrap SASS & Bootswatch SASS Directory"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:12
|
||||
msgid "All Instances View Style"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:12
|
||||
msgid "All instances list style"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:13
|
||||
msgid "Logs per Page"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:13
|
||||
msgid "Pagination for logs"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:14
|
||||
msgid "Multiple Owner for VM"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:14
|
||||
msgid "Allow to have multiple owner for instance"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:15
|
||||
msgid "Quota Debug"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:15
|
||||
msgid "Debug for user quotas"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:16
|
||||
msgid "Disk Format"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:16
|
||||
msgid "Instance disk format"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:17
|
||||
msgid "Disk Bus"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:17
|
||||
msgid "Instance disk bus type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:18
|
||||
msgid "Disk SCSI Controller"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:18
|
||||
msgid "SCSI controller type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:19
|
||||
msgid "Disk Cache"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:19
|
||||
msgid "Disk volume cache type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:20
|
||||
msgid "Disk IO Type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:20
|
||||
msgid "Volume io modes"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:21
|
||||
msgid "Disk Detect Zeroes"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:21
|
||||
msgid "Volume detect zeroes mode"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:22
|
||||
msgid "Disk Discard"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:22
|
||||
msgid "Volume discard mode"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:23
|
||||
msgid "Disk Owner UID"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:23
|
||||
msgid "Owner UID: up to os, 0=root, 107=qemu or libvirt-bin(for ubuntu)"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:24
|
||||
msgid "Disk Owner GID"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:24
|
||||
msgid "Owner GID: up to os, 0=root, 107=qemu or libvirt-bin(for ubuntu)"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:25
|
||||
msgid "VM CPU Mode"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:25
|
||||
msgid "Cpu modes"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:26
|
||||
msgid "VM Machine Type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:26
|
||||
msgid "Chipset/Machine type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:27
|
||||
msgid "VM Firmware Type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:27
|
||||
msgid "Firmware type for x86_64"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:28
|
||||
msgid "VM Architecture Type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:28
|
||||
msgid "Architecture type: x86_64, i686, etc"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:29
|
||||
msgid "VM Console Type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:29
|
||||
msgid "Default console type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:30
|
||||
msgid "VM Clone Name Prefix"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:30
|
||||
msgid "Prefix for cloned instance name"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:31
|
||||
msgid "VM Clone Auto Name"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:31
|
||||
msgid "Generated name for cloned instance"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:32
|
||||
msgid "VM Clone Auto Migrate"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:32
|
||||
msgid "Auto migrate instance after clone"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:33
|
||||
msgid "VM Bottom Bar"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:33
|
||||
msgid "Bottom navbar for instance details"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:34
|
||||
msgid "Show Access Root Pass"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:34
|
||||
msgid "Show access root password"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:35
|
||||
msgid "Show Access SSH Keys"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:35
|
||||
msgid "Show access ssh keys"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/templates/appsettings.html:3
|
||||
#: appsettings/templates/appsettings.html:8
|
||||
msgid "Edit Settings"
|
||||
|
@ -682,8 +903,10 @@ msgid "Not Connected"
|
|||
msgstr ""
|
||||
|
||||
#: computes/templates/computes.html:46 computes/templates/computes.html:91
|
||||
#: computes/templates/computes.html:134 computes/templates/computes.html:182
|
||||
#: computes/templates/computes.html:212 computes/templates/overview.html:92
|
||||
#: computes/templates/computes.html:93 computes/templates/computes.html:134
|
||||
#: computes/templates/computes.html:136 computes/templates/computes.html:182
|
||||
#: computes/templates/computes.html:184 computes/templates/computes.html:212
|
||||
#: computes/templates/computes.html:214 computes/templates/overview.html:92
|
||||
#: instances/templates/instance.html:758 instances/templates/instance.html:840
|
||||
msgid "Details"
|
||||
msgstr ""
|
||||
|
@ -973,6 +1196,10 @@ msgstr ""
|
|||
msgid "Add New Flavor"
|
||||
msgstr ""
|
||||
|
||||
#: create/templates/create_flav_block.html:21
|
||||
msgid "Micro"
|
||||
msgstr ""
|
||||
|
||||
#: create/templates/create_flav_block.html:26
|
||||
#: create/templates/create_instance_w2.html:82
|
||||
#: create/templates/create_instance_w2.html:327
|
||||
|
@ -2727,10 +2954,22 @@ msgstr ""
|
|||
msgid "Outbound"
|
||||
msgstr ""
|
||||
|
||||
#: networks/templates/add_network_qos.html:29
|
||||
#: networks/templates/add_network_qos.html:36
|
||||
#: networks/templates/add_network_qos.html:43
|
||||
msgid "kilobytes"
|
||||
msgstr ""
|
||||
|
||||
#: networks/templates/create_net_block.html:12
|
||||
msgid "Add New Network"
|
||||
msgstr ""
|
||||
|
||||
#: networks/templates/create_net_block.html:20
|
||||
#: storages/templates/create_stg_block.html:44
|
||||
#: storages/templates/create_stg_block.html:73
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#: networks/templates/create_net_block.html:24
|
||||
msgid "Type forwarding"
|
||||
msgstr ""
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-06-10 08:01+0000\n"
|
||||
"POT-Creation-Date: 2020-06-10 12:05+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -38,6 +38,10 @@ msgstr ""
|
|||
msgid "Flavor name is already use"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/models.py:33
|
||||
msgid "-1 for unlimited. Any integer value"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/models.py:85
|
||||
msgid "Can change password"
|
||||
msgstr ""
|
||||
|
@ -210,6 +214,15 @@ msgstr ""
|
|||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/templates/accounts-list.html:11
|
||||
#: admin/templates/admin/group_list.html:13
|
||||
#: admin/templates/admin/user_list.html:14
|
||||
#: instances/templates/allinstances.html:17
|
||||
#: instances/templates/instances.html:19 nwfilters/templates/nwfilters.html:11
|
||||
#: storages/templates/storage.html:89
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/templates/accounts-list.html:25 accounts/templates/accounts.html:21
|
||||
#: admin/templates/admin/user_list.html:25
|
||||
msgid "You don't have any user"
|
||||
|
@ -366,6 +379,10 @@ msgstr ""
|
|||
msgid "Add New User"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/templates/create_user_block.html:20
|
||||
msgid "john"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/templates/create_user_block.html:32
|
||||
#: create/templates/create_instance_w1.html:93
|
||||
#: create/templates/create_instance_w2.html:275
|
||||
|
@ -534,11 +551,6 @@ msgstr ""
|
|||
msgid "Create New"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/admin/group_list.html:13
|
||||
#: admin/templates/admin/user_list.html:14
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/admin/group_list.html:24
|
||||
msgid "You don't have any groups"
|
||||
msgstr ""
|
||||
|
@ -548,6 +560,7 @@ msgid "Group Name"
|
|||
msgstr ""
|
||||
|
||||
#: admin/templates/admin/group_list.html:33
|
||||
#: admin/templates/admin/user_list.html:38
|
||||
#: instances/templates/allinstances.html:60
|
||||
#: instances/templates/allinstances_index_grouped.html:11
|
||||
#: instances/templates/allinstances_index_nongrouped.html:10
|
||||
|
@ -599,6 +612,214 @@ msgstr ""
|
|||
msgid "Update User"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:10
|
||||
msgid "Theme"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:10
|
||||
msgid "Bootstrap CSS & Bootswatch Theme"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:11
|
||||
msgid "Theme SASS Path"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:11
|
||||
msgid "Bootstrap SASS & Bootswatch SASS Directory"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:12
|
||||
msgid "All Instances View Style"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:12
|
||||
msgid "All instances list style"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:13
|
||||
msgid "Logs per Page"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:13
|
||||
msgid "Pagination for logs"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:14
|
||||
msgid "Multiple Owner for VM"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:14
|
||||
msgid "Allow to have multiple owner for instance"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:15
|
||||
msgid "Quota Debug"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:15
|
||||
msgid "Debug for user quotas"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:16
|
||||
msgid "Disk Format"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:16
|
||||
msgid "Instance disk format"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:17
|
||||
msgid "Disk Bus"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:17
|
||||
msgid "Instance disk bus type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:18
|
||||
msgid "Disk SCSI Controller"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:18
|
||||
msgid "SCSI controller type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:19
|
||||
msgid "Disk Cache"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:19
|
||||
msgid "Disk volume cache type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:20
|
||||
msgid "Disk IO Type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:20
|
||||
msgid "Volume io modes"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:21
|
||||
msgid "Disk Detect Zeroes"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:21
|
||||
msgid "Volume detect zeroes mode"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:22
|
||||
msgid "Disk Discard"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:22
|
||||
msgid "Volume discard mode"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:23
|
||||
msgid "Disk Owner UID"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:23
|
||||
msgid "Owner UID: up to os, 0=root, 107=qemu or libvirt-bin(for ubuntu)"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:24
|
||||
msgid "Disk Owner GID"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:24
|
||||
msgid "Owner GID: up to os, 0=root, 107=qemu or libvirt-bin(for ubuntu)"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:25
|
||||
msgid "VM CPU Mode"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:25
|
||||
msgid "Cpu modes"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:26
|
||||
msgid "VM Machine Type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:26
|
||||
msgid "Chipset/Machine type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:27
|
||||
msgid "VM Firmware Type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:27
|
||||
msgid "Firmware type for x86_64"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:28
|
||||
msgid "VM Architecture Type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:28
|
||||
msgid "Architecture type: x86_64, i686, etc"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:29
|
||||
msgid "VM Console Type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:29
|
||||
msgid "Default console type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:30
|
||||
msgid "VM Clone Name Prefix"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:30
|
||||
msgid "Prefix for cloned instance name"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:31
|
||||
msgid "VM Clone Auto Name"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:31
|
||||
msgid "Generated name for cloned instance"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:32
|
||||
msgid "VM Clone Auto Migrate"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:32
|
||||
msgid "Auto migrate instance after clone"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:33
|
||||
msgid "VM Bottom Bar"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:33
|
||||
msgid "Bottom navbar for instance details"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:34
|
||||
msgid "Show Access Root Pass"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:34
|
||||
msgid "Show access root password"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:35
|
||||
msgid "Show Access SSH Keys"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:35
|
||||
msgid "Show access ssh keys"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/templates/appsettings.html:3
|
||||
#: appsettings/templates/appsettings.html:8
|
||||
msgid "Edit Settings"
|
||||
|
@ -682,8 +903,10 @@ msgid "Not Connected"
|
|||
msgstr ""
|
||||
|
||||
#: computes/templates/computes.html:46 computes/templates/computes.html:91
|
||||
#: computes/templates/computes.html:134 computes/templates/computes.html:182
|
||||
#: computes/templates/computes.html:212 computes/templates/overview.html:92
|
||||
#: computes/templates/computes.html:93 computes/templates/computes.html:134
|
||||
#: computes/templates/computes.html:136 computes/templates/computes.html:182
|
||||
#: computes/templates/computes.html:184 computes/templates/computes.html:212
|
||||
#: computes/templates/computes.html:214 computes/templates/overview.html:92
|
||||
#: instances/templates/instance.html:758 instances/templates/instance.html:840
|
||||
msgid "Details"
|
||||
msgstr ""
|
||||
|
@ -973,6 +1196,10 @@ msgstr ""
|
|||
msgid "Add New Flavor"
|
||||
msgstr ""
|
||||
|
||||
#: create/templates/create_flav_block.html:21
|
||||
msgid "Micro"
|
||||
msgstr ""
|
||||
|
||||
#: create/templates/create_flav_block.html:26
|
||||
#: create/templates/create_instance_w2.html:82
|
||||
#: create/templates/create_instance_w2.html:327
|
||||
|
@ -2727,10 +2954,22 @@ msgstr ""
|
|||
msgid "Outbound"
|
||||
msgstr ""
|
||||
|
||||
#: networks/templates/add_network_qos.html:29
|
||||
#: networks/templates/add_network_qos.html:36
|
||||
#: networks/templates/add_network_qos.html:43
|
||||
msgid "kilobytes"
|
||||
msgstr ""
|
||||
|
||||
#: networks/templates/create_net_block.html:12
|
||||
msgid "Add New Network"
|
||||
msgstr ""
|
||||
|
||||
#: networks/templates/create_net_block.html:20
|
||||
#: storages/templates/create_stg_block.html:44
|
||||
#: storages/templates/create_stg_block.html:73
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#: networks/templates/create_net_block.html:24
|
||||
msgid "Type forwarding"
|
||||
msgstr ""
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-06-10 08:01+0000\n"
|
||||
"POT-Creation-Date: 2020-06-10 12:05+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -38,6 +38,10 @@ msgstr ""
|
|||
msgid "Flavor name is already use"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/models.py:33
|
||||
msgid "-1 for unlimited. Any integer value"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/models.py:85
|
||||
msgid "Can change password"
|
||||
msgstr ""
|
||||
|
@ -210,6 +214,15 @@ msgstr ""
|
|||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/templates/accounts-list.html:11
|
||||
#: admin/templates/admin/group_list.html:13
|
||||
#: admin/templates/admin/user_list.html:14
|
||||
#: instances/templates/allinstances.html:17
|
||||
#: instances/templates/instances.html:19 nwfilters/templates/nwfilters.html:11
|
||||
#: storages/templates/storage.html:89
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/templates/accounts-list.html:25 accounts/templates/accounts.html:21
|
||||
#: admin/templates/admin/user_list.html:25
|
||||
msgid "You don't have any user"
|
||||
|
@ -366,6 +379,10 @@ msgstr ""
|
|||
msgid "Add New User"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/templates/create_user_block.html:20
|
||||
msgid "john"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/templates/create_user_block.html:32
|
||||
#: create/templates/create_instance_w1.html:93
|
||||
#: create/templates/create_instance_w2.html:275
|
||||
|
@ -534,11 +551,6 @@ msgstr ""
|
|||
msgid "Create New"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/admin/group_list.html:13
|
||||
#: admin/templates/admin/user_list.html:14
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/admin/group_list.html:24
|
||||
msgid "You don't have any groups"
|
||||
msgstr ""
|
||||
|
@ -548,6 +560,7 @@ msgid "Group Name"
|
|||
msgstr ""
|
||||
|
||||
#: admin/templates/admin/group_list.html:33
|
||||
#: admin/templates/admin/user_list.html:38
|
||||
#: instances/templates/allinstances.html:60
|
||||
#: instances/templates/allinstances_index_grouped.html:11
|
||||
#: instances/templates/allinstances_index_nongrouped.html:10
|
||||
|
@ -599,6 +612,214 @@ msgstr ""
|
|||
msgid "Update User"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:10
|
||||
msgid "Theme"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:10
|
||||
msgid "Bootstrap CSS & Bootswatch Theme"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:11
|
||||
msgid "Theme SASS Path"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:11
|
||||
msgid "Bootstrap SASS & Bootswatch SASS Directory"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:12
|
||||
msgid "All Instances View Style"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:12
|
||||
msgid "All instances list style"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:13
|
||||
msgid "Logs per Page"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:13
|
||||
msgid "Pagination for logs"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:14
|
||||
msgid "Multiple Owner for VM"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:14
|
||||
msgid "Allow to have multiple owner for instance"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:15
|
||||
msgid "Quota Debug"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:15
|
||||
msgid "Debug for user quotas"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:16
|
||||
msgid "Disk Format"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:16
|
||||
msgid "Instance disk format"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:17
|
||||
msgid "Disk Bus"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:17
|
||||
msgid "Instance disk bus type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:18
|
||||
msgid "Disk SCSI Controller"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:18
|
||||
msgid "SCSI controller type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:19
|
||||
msgid "Disk Cache"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:19
|
||||
msgid "Disk volume cache type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:20
|
||||
msgid "Disk IO Type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:20
|
||||
msgid "Volume io modes"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:21
|
||||
msgid "Disk Detect Zeroes"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:21
|
||||
msgid "Volume detect zeroes mode"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:22
|
||||
msgid "Disk Discard"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:22
|
||||
msgid "Volume discard mode"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:23
|
||||
msgid "Disk Owner UID"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:23
|
||||
msgid "Owner UID: up to os, 0=root, 107=qemu or libvirt-bin(for ubuntu)"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:24
|
||||
msgid "Disk Owner GID"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:24
|
||||
msgid "Owner GID: up to os, 0=root, 107=qemu or libvirt-bin(for ubuntu)"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:25
|
||||
msgid "VM CPU Mode"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:25
|
||||
msgid "Cpu modes"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:26
|
||||
msgid "VM Machine Type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:26
|
||||
msgid "Chipset/Machine type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:27
|
||||
msgid "VM Firmware Type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:27
|
||||
msgid "Firmware type for x86_64"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:28
|
||||
msgid "VM Architecture Type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:28
|
||||
msgid "Architecture type: x86_64, i686, etc"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:29
|
||||
msgid "VM Console Type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:29
|
||||
msgid "Default console type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:30
|
||||
msgid "VM Clone Name Prefix"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:30
|
||||
msgid "Prefix for cloned instance name"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:31
|
||||
msgid "VM Clone Auto Name"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:31
|
||||
msgid "Generated name for cloned instance"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:32
|
||||
msgid "VM Clone Auto Migrate"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:32
|
||||
msgid "Auto migrate instance after clone"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:33
|
||||
msgid "VM Bottom Bar"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:33
|
||||
msgid "Bottom navbar for instance details"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:34
|
||||
msgid "Show Access Root Pass"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:34
|
||||
msgid "Show access root password"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:35
|
||||
msgid "Show Access SSH Keys"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:35
|
||||
msgid "Show access ssh keys"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/templates/appsettings.html:3
|
||||
#: appsettings/templates/appsettings.html:8
|
||||
msgid "Edit Settings"
|
||||
|
@ -682,8 +903,10 @@ msgid "Not Connected"
|
|||
msgstr ""
|
||||
|
||||
#: computes/templates/computes.html:46 computes/templates/computes.html:91
|
||||
#: computes/templates/computes.html:134 computes/templates/computes.html:182
|
||||
#: computes/templates/computes.html:212 computes/templates/overview.html:92
|
||||
#: computes/templates/computes.html:93 computes/templates/computes.html:134
|
||||
#: computes/templates/computes.html:136 computes/templates/computes.html:182
|
||||
#: computes/templates/computes.html:184 computes/templates/computes.html:212
|
||||
#: computes/templates/computes.html:214 computes/templates/overview.html:92
|
||||
#: instances/templates/instance.html:758 instances/templates/instance.html:840
|
||||
msgid "Details"
|
||||
msgstr ""
|
||||
|
@ -973,6 +1196,10 @@ msgstr ""
|
|||
msgid "Add New Flavor"
|
||||
msgstr ""
|
||||
|
||||
#: create/templates/create_flav_block.html:21
|
||||
msgid "Micro"
|
||||
msgstr ""
|
||||
|
||||
#: create/templates/create_flav_block.html:26
|
||||
#: create/templates/create_instance_w2.html:82
|
||||
#: create/templates/create_instance_w2.html:327
|
||||
|
@ -2727,10 +2954,22 @@ msgstr ""
|
|||
msgid "Outbound"
|
||||
msgstr ""
|
||||
|
||||
#: networks/templates/add_network_qos.html:29
|
||||
#: networks/templates/add_network_qos.html:36
|
||||
#: networks/templates/add_network_qos.html:43
|
||||
msgid "kilobytes"
|
||||
msgstr ""
|
||||
|
||||
#: networks/templates/create_net_block.html:12
|
||||
msgid "Add New Network"
|
||||
msgstr ""
|
||||
|
||||
#: networks/templates/create_net_block.html:20
|
||||
#: storages/templates/create_stg_block.html:44
|
||||
#: storages/templates/create_stg_block.html:73
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#: networks/templates/create_net_block.html:24
|
||||
msgid "Type forwarding"
|
||||
msgstr ""
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-06-10 08:01+0000\n"
|
||||
"POT-Creation-Date: 2020-06-10 12:05+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -40,6 +40,10 @@ msgstr ""
|
|||
msgid "Flavor name is already use"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/models.py:33
|
||||
msgid "-1 for unlimited. Any integer value"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/models.py:85
|
||||
msgid "Can change password"
|
||||
msgstr ""
|
||||
|
@ -212,6 +216,15 @@ msgstr ""
|
|||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/templates/accounts-list.html:11
|
||||
#: admin/templates/admin/group_list.html:13
|
||||
#: admin/templates/admin/user_list.html:14
|
||||
#: instances/templates/allinstances.html:17
|
||||
#: instances/templates/instances.html:19 nwfilters/templates/nwfilters.html:11
|
||||
#: storages/templates/storage.html:89
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/templates/accounts-list.html:25 accounts/templates/accounts.html:21
|
||||
#: admin/templates/admin/user_list.html:25
|
||||
msgid "You don't have any user"
|
||||
|
@ -368,6 +381,10 @@ msgstr ""
|
|||
msgid "Add New User"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/templates/create_user_block.html:20
|
||||
msgid "john"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/templates/create_user_block.html:32
|
||||
#: create/templates/create_instance_w1.html:93
|
||||
#: create/templates/create_instance_w2.html:275
|
||||
|
@ -536,11 +553,6 @@ msgstr ""
|
|||
msgid "Create New"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/admin/group_list.html:13
|
||||
#: admin/templates/admin/user_list.html:14
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/admin/group_list.html:24
|
||||
msgid "You don't have any groups"
|
||||
msgstr ""
|
||||
|
@ -550,6 +562,7 @@ msgid "Group Name"
|
|||
msgstr ""
|
||||
|
||||
#: admin/templates/admin/group_list.html:33
|
||||
#: admin/templates/admin/user_list.html:38
|
||||
#: instances/templates/allinstances.html:60
|
||||
#: instances/templates/allinstances_index_grouped.html:11
|
||||
#: instances/templates/allinstances_index_nongrouped.html:10
|
||||
|
@ -601,6 +614,214 @@ msgstr ""
|
|||
msgid "Update User"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:10
|
||||
msgid "Theme"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:10
|
||||
msgid "Bootstrap CSS & Bootswatch Theme"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:11
|
||||
msgid "Theme SASS Path"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:11
|
||||
msgid "Bootstrap SASS & Bootswatch SASS Directory"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:12
|
||||
msgid "All Instances View Style"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:12
|
||||
msgid "All instances list style"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:13
|
||||
msgid "Logs per Page"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:13
|
||||
msgid "Pagination for logs"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:14
|
||||
msgid "Multiple Owner for VM"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:14
|
||||
msgid "Allow to have multiple owner for instance"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:15
|
||||
msgid "Quota Debug"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:15
|
||||
msgid "Debug for user quotas"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:16
|
||||
msgid "Disk Format"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:16
|
||||
msgid "Instance disk format"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:17
|
||||
msgid "Disk Bus"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:17
|
||||
msgid "Instance disk bus type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:18
|
||||
msgid "Disk SCSI Controller"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:18
|
||||
msgid "SCSI controller type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:19
|
||||
msgid "Disk Cache"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:19
|
||||
msgid "Disk volume cache type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:20
|
||||
msgid "Disk IO Type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:20
|
||||
msgid "Volume io modes"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:21
|
||||
msgid "Disk Detect Zeroes"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:21
|
||||
msgid "Volume detect zeroes mode"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:22
|
||||
msgid "Disk Discard"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:22
|
||||
msgid "Volume discard mode"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:23
|
||||
msgid "Disk Owner UID"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:23
|
||||
msgid "Owner UID: up to os, 0=root, 107=qemu or libvirt-bin(for ubuntu)"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:24
|
||||
msgid "Disk Owner GID"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:24
|
||||
msgid "Owner GID: up to os, 0=root, 107=qemu or libvirt-bin(for ubuntu)"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:25
|
||||
msgid "VM CPU Mode"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:25
|
||||
msgid "Cpu modes"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:26
|
||||
msgid "VM Machine Type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:26
|
||||
msgid "Chipset/Machine type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:27
|
||||
msgid "VM Firmware Type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:27
|
||||
msgid "Firmware type for x86_64"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:28
|
||||
msgid "VM Architecture Type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:28
|
||||
msgid "Architecture type: x86_64, i686, etc"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:29
|
||||
msgid "VM Console Type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:29
|
||||
msgid "Default console type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:30
|
||||
msgid "VM Clone Name Prefix"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:30
|
||||
msgid "Prefix for cloned instance name"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:31
|
||||
msgid "VM Clone Auto Name"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:31
|
||||
msgid "Generated name for cloned instance"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:32
|
||||
msgid "VM Clone Auto Migrate"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:32
|
||||
msgid "Auto migrate instance after clone"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:33
|
||||
msgid "VM Bottom Bar"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:33
|
||||
msgid "Bottom navbar for instance details"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:34
|
||||
msgid "Show Access Root Pass"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:34
|
||||
msgid "Show access root password"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:35
|
||||
msgid "Show Access SSH Keys"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:35
|
||||
msgid "Show access ssh keys"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/templates/appsettings.html:3
|
||||
#: appsettings/templates/appsettings.html:8
|
||||
msgid "Edit Settings"
|
||||
|
@ -684,8 +905,10 @@ msgid "Not Connected"
|
|||
msgstr ""
|
||||
|
||||
#: computes/templates/computes.html:46 computes/templates/computes.html:91
|
||||
#: computes/templates/computes.html:134 computes/templates/computes.html:182
|
||||
#: computes/templates/computes.html:212 computes/templates/overview.html:92
|
||||
#: computes/templates/computes.html:93 computes/templates/computes.html:134
|
||||
#: computes/templates/computes.html:136 computes/templates/computes.html:182
|
||||
#: computes/templates/computes.html:184 computes/templates/computes.html:212
|
||||
#: computes/templates/computes.html:214 computes/templates/overview.html:92
|
||||
#: instances/templates/instance.html:758 instances/templates/instance.html:840
|
||||
msgid "Details"
|
||||
msgstr ""
|
||||
|
@ -975,6 +1198,10 @@ msgstr ""
|
|||
msgid "Add New Flavor"
|
||||
msgstr ""
|
||||
|
||||
#: create/templates/create_flav_block.html:21
|
||||
msgid "Micro"
|
||||
msgstr ""
|
||||
|
||||
#: create/templates/create_flav_block.html:26
|
||||
#: create/templates/create_instance_w2.html:82
|
||||
#: create/templates/create_instance_w2.html:327
|
||||
|
@ -2729,10 +2956,22 @@ msgstr ""
|
|||
msgid "Outbound"
|
||||
msgstr ""
|
||||
|
||||
#: networks/templates/add_network_qos.html:29
|
||||
#: networks/templates/add_network_qos.html:36
|
||||
#: networks/templates/add_network_qos.html:43
|
||||
msgid "kilobytes"
|
||||
msgstr ""
|
||||
|
||||
#: networks/templates/create_net_block.html:12
|
||||
msgid "Add New Network"
|
||||
msgstr ""
|
||||
|
||||
#: networks/templates/create_net_block.html:20
|
||||
#: storages/templates/create_stg_block.html:44
|
||||
#: storages/templates/create_stg_block.html:73
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#: networks/templates/create_net_block.html:24
|
||||
msgid "Type forwarding"
|
||||
msgstr ""
|
||||
|
|
Binary file not shown.
|
@ -11,7 +11,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-06-10 08:01+0000\n"
|
||||
"POT-Creation-Date: 2020-06-10 12:05+0000\n"
|
||||
"PO-Revision-Date: 2020-06-09 12:00+0000\n"
|
||||
"Last-Translator: catborise <muhammetalisag@gmail.com>, 2020\n"
|
||||
"Language-Team: Turkish (https://www.transifex.com/catborise/teams/110663/tr/)\n"
|
||||
|
@ -41,6 +41,10 @@ msgstr ""
|
|||
msgid "Flavor name is already use"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/models.py:33
|
||||
msgid "-1 for unlimited. Any integer value"
|
||||
msgstr "Herhangi bir değer. Sınırsız için -1."
|
||||
|
||||
#: accounts/models.py:85
|
||||
msgid "Can change password"
|
||||
msgstr "Parola değiştirebilir"
|
||||
|
@ -137,7 +141,7 @@ msgstr "İmtiyazları düzenle"
|
|||
#: accounts/templates/account.html:91 accounts/templates/account.html:100
|
||||
#: accounts/templates/account.html:109
|
||||
msgid "False"
|
||||
msgstr ""
|
||||
msgstr "Yanlış"
|
||||
|
||||
#: accounts/templates/account.html:116
|
||||
#: accounts/templates/accounts-list.html:145
|
||||
|
@ -218,10 +222,19 @@ msgstr "Emin misiniz?"
|
|||
msgid "Users"
|
||||
msgstr "Kullanıcılar"
|
||||
|
||||
#: accounts/templates/accounts-list.html:11
|
||||
#: admin/templates/admin/group_list.html:13
|
||||
#: admin/templates/admin/user_list.html:14
|
||||
#: instances/templates/allinstances.html:17
|
||||
#: instances/templates/instances.html:19 nwfilters/templates/nwfilters.html:11
|
||||
#: storages/templates/storage.html:89
|
||||
msgid "Search"
|
||||
msgstr "Ara"
|
||||
|
||||
#: accounts/templates/accounts-list.html:25
|
||||
#: accounts/templates/accounts.html:21 admin/templates/admin/user_list.html:25
|
||||
msgid "You don't have any user"
|
||||
msgstr "Hiç kullanınız yok"
|
||||
msgstr "Hiç kullanıcınız yok"
|
||||
|
||||
#: accounts/templates/accounts-list.html:33 accounts/templates/profile.html:27
|
||||
#: admin/templates/admin/user_list.html:33 computes/templates/computes.html:79
|
||||
|
@ -350,7 +363,7 @@ msgstr "Sanal makineleri klonlayabilir"
|
|||
#: accounts/templates/accounts-list.html:107
|
||||
#: accounts/templates/accounts.html:100
|
||||
msgid "Max instances"
|
||||
msgstr "Maksimum sanal makine sayısı"
|
||||
msgstr "Maksimum sanal makine"
|
||||
|
||||
#: accounts/templates/accounts-list.html:113
|
||||
#: accounts/templates/accounts.html:106
|
||||
|
@ -383,6 +396,10 @@ msgstr "Engeli Kaldır"
|
|||
msgid "Add New User"
|
||||
msgstr "Yeni Kullanıc Ekle"
|
||||
|
||||
#: accounts/templates/create_user_block.html:20
|
||||
msgid "john"
|
||||
msgstr "ali"
|
||||
|
||||
#: accounts/templates/create_user_block.html:32
|
||||
#: create/templates/create_instance_w1.html:93
|
||||
#: create/templates/create_instance_w2.html:275
|
||||
|
@ -551,11 +568,6 @@ msgstr "Kaydet"
|
|||
msgid "Create New"
|
||||
msgstr "Yeni Oluştur"
|
||||
|
||||
#: admin/templates/admin/group_list.html:13
|
||||
#: admin/templates/admin/user_list.html:14
|
||||
msgid "Search"
|
||||
msgstr "Ara"
|
||||
|
||||
#: admin/templates/admin/group_list.html:24
|
||||
msgid "You don't have any groups"
|
||||
msgstr "Hiç grubunuz yok"
|
||||
|
@ -565,6 +577,7 @@ msgid "Group Name"
|
|||
msgstr "Grup Adı"
|
||||
|
||||
#: admin/templates/admin/group_list.html:33
|
||||
#: admin/templates/admin/user_list.html:38
|
||||
#: instances/templates/allinstances.html:60
|
||||
#: instances/templates/allinstances_index_grouped.html:11
|
||||
#: instances/templates/allinstances_index_nongrouped.html:10
|
||||
|
@ -582,7 +595,7 @@ msgstr "Loglar"
|
|||
|
||||
#: admin/templates/admin/logs.html:21
|
||||
msgid "You don't have any Logs"
|
||||
msgstr "Hiç Logunuz yok"
|
||||
msgstr "Hiç Log kaydınız yok"
|
||||
|
||||
#: admin/templates/admin/logs.html:31 instances/templates/instance.html:555
|
||||
#: instances/templates/instance.html:1641
|
||||
|
@ -617,6 +630,214 @@ msgstr "Kullanıcı Oluştur"
|
|||
msgid "Update User"
|
||||
msgstr "Kullanıcıyı Güncelle"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:10
|
||||
msgid "Theme"
|
||||
msgstr "Tema"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:10
|
||||
msgid "Bootstrap CSS & Bootswatch Theme"
|
||||
msgstr "Bootstrap CSS & Bootswatch Teması"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:11
|
||||
msgid "Theme SASS Path"
|
||||
msgstr "Tema SASS Yolu"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:11
|
||||
msgid "Bootstrap SASS & Bootswatch SASS Directory"
|
||||
msgstr "Bootstrap SASS & Bootswatch Directory"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:12
|
||||
msgid "All Instances View Style"
|
||||
msgstr "Tüm Sanal Makine Listesi Görünümü"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:12
|
||||
msgid "All instances list style"
|
||||
msgstr "Tüm Sanal Makineler Listesi Görünüm Stili"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:13
|
||||
msgid "Logs per Page"
|
||||
msgstr "Herbir sayfa için Log sayısı"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:13
|
||||
msgid "Pagination for logs"
|
||||
msgstr "Loglar için sayfalama"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:14
|
||||
msgid "Multiple Owner for VM"
|
||||
msgstr "VM için çoklu sahiplik"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:14
|
||||
msgid "Allow to have multiple owner for instance"
|
||||
msgstr "Bir sanal makine için çoklu sahip atanmasına izin verir"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:15
|
||||
msgid "Quota Debug"
|
||||
msgstr "Kota Hata Ayıklama"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:15
|
||||
msgid "Debug for user quotas"
|
||||
msgstr "Kullanıcı kotaları için hata ayıklama"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:16
|
||||
msgid "Disk Format"
|
||||
msgstr "Disk Biçemi"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:16
|
||||
msgid "Instance disk format"
|
||||
msgstr "Sanal Makine Disk Biçemi"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:17
|
||||
msgid "Disk Bus"
|
||||
msgstr "Disk Veriyolu"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:17
|
||||
msgid "Instance disk bus type"
|
||||
msgstr "Sanal makine diski veriyolu tipi"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:18
|
||||
msgid "Disk SCSI Controller"
|
||||
msgstr "Disk SCSI Denetleyicisi"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:18
|
||||
msgid "SCSI controller type"
|
||||
msgstr "SCSI denetleyicisi tipi"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:19
|
||||
msgid "Disk Cache"
|
||||
msgstr "Disk Ön Belleği"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:19
|
||||
msgid "Disk volume cache type"
|
||||
msgstr "Disk birimi ön bellek tipi"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:20
|
||||
msgid "Disk IO Type"
|
||||
msgstr "Disk IO Tipi"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:20
|
||||
msgid "Volume io modes"
|
||||
msgstr "Birim IO modları"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:21
|
||||
msgid "Disk Detect Zeroes"
|
||||
msgstr "Disk Sıfır Yakalama"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:21
|
||||
msgid "Volume detect zeroes mode"
|
||||
msgstr "Disk birimi sıfır yakalama modu"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:22
|
||||
msgid "Disk Discard"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:22
|
||||
msgid "Volume discard mode"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:23
|
||||
msgid "Disk Owner UID"
|
||||
msgstr "Disk sahip UIDsi"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:23
|
||||
msgid "Owner UID: up to os, 0=root, 107=qemu or libvirt-bin(for ubuntu)"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:24
|
||||
msgid "Disk Owner GID"
|
||||
msgstr "Disk sahibi GID"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:24
|
||||
msgid "Owner GID: up to os, 0=root, 107=qemu or libvirt-bin(for ubuntu)"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:25
|
||||
msgid "VM CPU Mode"
|
||||
msgstr "VM CPU Modu"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:25
|
||||
msgid "Cpu modes"
|
||||
msgstr "CPU Modları"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:26
|
||||
msgid "VM Machine Type"
|
||||
msgstr "VM Makine Tipi"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:26
|
||||
msgid "Chipset/Machine type"
|
||||
msgstr "Yonga/Makine Tipi"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:27
|
||||
msgid "VM Firmware Type"
|
||||
msgstr "VM Yonga Tipi"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:27
|
||||
msgid "Firmware type for x86_64"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:28
|
||||
msgid "VM Architecture Type"
|
||||
msgstr "VM Mimari Tipi"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:28
|
||||
msgid "Architecture type: x86_64, i686, etc"
|
||||
msgstr "Mimari Tipler: x86_64, i688, vs"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:29
|
||||
msgid "VM Console Type"
|
||||
msgstr "VM Konsol Tipi"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:29
|
||||
msgid "Default console type"
|
||||
msgstr "Varsayılan konsol tipi"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:30
|
||||
msgid "VM Clone Name Prefix"
|
||||
msgstr "VM Klon Adı Ön Eki"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:30
|
||||
msgid "Prefix for cloned instance name"
|
||||
msgstr "Klonlanmış sanal makineler için ön ek"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:31
|
||||
msgid "VM Clone Auto Name"
|
||||
msgstr "VM Klon Otomatik Ad"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:31
|
||||
msgid "Generated name for cloned instance"
|
||||
msgstr "Klonamış Sanal Makine için Oluşturala isim"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:32
|
||||
msgid "VM Clone Auto Migrate"
|
||||
msgstr "VM Klonu Otomatik Taşı"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:32
|
||||
msgid "Auto migrate instance after clone"
|
||||
msgstr "Klondan sonra sanal makineyi otomatik taşı"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:33
|
||||
msgid "VM Bottom Bar"
|
||||
msgstr "VM Alt Kısayol Çubuğu"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:33
|
||||
msgid "Bottom navbar for instance details"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:34
|
||||
msgid "Show Access Root Pass"
|
||||
msgstr "Root Erişim Parolasını Göster"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:34
|
||||
msgid "Show access root password"
|
||||
msgstr "Kök erişim parolasını göster"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:35
|
||||
msgid "Show Access SSH Keys"
|
||||
msgstr "SSH Erişim Anahtarlarını Göster"
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:35
|
||||
msgid "Show access ssh keys"
|
||||
msgstr "SSH Erişim Anahtarlarını Göster"
|
||||
|
||||
#: appsettings/templates/appsettings.html:3
|
||||
#: appsettings/templates/appsettings.html:8
|
||||
msgid "Edit Settings"
|
||||
|
@ -699,8 +920,10 @@ msgid "Not Connected"
|
|||
msgstr "Bağlı değil"
|
||||
|
||||
#: computes/templates/computes.html:46 computes/templates/computes.html:91
|
||||
#: computes/templates/computes.html:134 computes/templates/computes.html:182
|
||||
#: computes/templates/computes.html:212 computes/templates/overview.html:92
|
||||
#: computes/templates/computes.html:93 computes/templates/computes.html:134
|
||||
#: computes/templates/computes.html:136 computes/templates/computes.html:182
|
||||
#: computes/templates/computes.html:184 computes/templates/computes.html:212
|
||||
#: computes/templates/computes.html:214 computes/templates/overview.html:92
|
||||
#: instances/templates/instance.html:758 instances/templates/instance.html:840
|
||||
msgid "Details"
|
||||
msgstr "Detaylar"
|
||||
|
@ -732,7 +955,7 @@ msgstr ""
|
|||
|
||||
#: computes/templates/computes.html:241
|
||||
msgid "Hypervisor doesn't have any Computes"
|
||||
msgstr "Hipervizör hiç bir Hesaplayıcıya sahip değil"
|
||||
msgstr "Hipervizör hiçbir Hesaplayıcıya sahip değil"
|
||||
|
||||
#: computes/templates/computes/form.html:6
|
||||
msgid "Add Compute"
|
||||
|
@ -813,7 +1036,7 @@ msgstr "Ağlar"
|
|||
#: nwfilters/templates/nwfilters.html:33 secrets/templates/secrets.html:29
|
||||
#: storages/templates/storage.html:29 storages/templates/storages.html:29
|
||||
msgid "Interfaces"
|
||||
msgstr "Arayüzler"
|
||||
msgstr "Arabirimler"
|
||||
|
||||
#: computes/templates/overview.html:28 instances/templates/instances.html:45
|
||||
#: interfaces/templates/interface.html:26
|
||||
|
@ -886,7 +1109,7 @@ msgstr "Mimari"
|
|||
|
||||
#: computes/templates/overview.html:86
|
||||
msgid "Logical CPUs"
|
||||
msgstr "Mantıksal MİBs"
|
||||
msgstr "Mantıksal CPUlar"
|
||||
|
||||
#: computes/templates/overview.html:88
|
||||
msgid "Processor"
|
||||
|
@ -994,6 +1217,10 @@ msgstr "Sanal makine adı 20 karakterden fazla olamaz"
|
|||
msgid "Add New Flavor"
|
||||
msgstr ""
|
||||
|
||||
#: create/templates/create_flav_block.html:21
|
||||
msgid "Micro"
|
||||
msgstr "Mikro"
|
||||
|
||||
#: create/templates/create_flav_block.html:26
|
||||
#: create/templates/create_instance_w2.html:82
|
||||
#: create/templates/create_instance_w2.html:327
|
||||
|
@ -1384,7 +1611,7 @@ msgstr "Kapalı"
|
|||
#: instances/templates/instances.html:87 instances/views.py:699
|
||||
#: instances/views.py:1239
|
||||
msgid "Suspend"
|
||||
msgstr "Duraklatılmış"
|
||||
msgstr "Duraklat"
|
||||
|
||||
#: instances/templates/allinstances_index_grouped.html:6
|
||||
#: instances/templates/allinstances_index_nongrouped.html:5
|
||||
|
@ -1425,7 +1652,7 @@ msgstr "Lütfen seçin"
|
|||
#: instances/templates/create_inst_block.html:38
|
||||
#: instances/templates/create_inst_block.html:42
|
||||
msgid "Choose"
|
||||
msgstr "Seçin"
|
||||
msgstr "Seç"
|
||||
|
||||
#: instances/templates/edit_instance_volume.html:3
|
||||
msgid "Edit Volume"
|
||||
|
@ -1473,7 +1700,7 @@ msgstr ""
|
|||
|
||||
#: instances/templates/edit_instance_volume.html:108
|
||||
msgid "Detect zeroes"
|
||||
msgstr ""
|
||||
msgstr "Sıfırları yakala"
|
||||
|
||||
#: instances/templates/instance.html:26
|
||||
msgid "Guest Agent Enabled & Connected"
|
||||
|
@ -1525,7 +1752,7 @@ msgstr "İstatistikler"
|
|||
#: instances/templates/instance.html:1689
|
||||
#: instances/templates/instance.html:1693 instances/views.py:421
|
||||
msgid "Destroy"
|
||||
msgstr "Yoket"
|
||||
msgstr "Sil"
|
||||
|
||||
#: instances/templates/instance.html:127 instances/templates/instance.html:176
|
||||
#: instances/templates/instance_actions.html:18
|
||||
|
@ -1781,7 +2008,7 @@ msgstr "Seçenekler"
|
|||
#: instances/templates/instance.html:666 networks/templates/network.html:59
|
||||
#: storages/templates/storage.html:71
|
||||
msgid "Autostart"
|
||||
msgstr "Oto başlat"
|
||||
msgstr "Otomatik başlat"
|
||||
|
||||
#: instances/templates/instance.html:670
|
||||
msgid "Autostart your instance when host server is power on "
|
||||
|
@ -1852,7 +2079,7 @@ msgstr "Ayır"
|
|||
|
||||
#: instances/templates/instance.html:812
|
||||
msgid "There is not any CD-ROM device."
|
||||
msgstr "Hiç bir CD-ROM aygıtı mevcut değil."
|
||||
msgstr "Hiçbir CD-ROM aygıtı mevcut değil."
|
||||
|
||||
#: instances/templates/instance.html:817
|
||||
msgid "Instance Volume"
|
||||
|
@ -1922,7 +2149,7 @@ msgstr "Ağ Kaynağı"
|
|||
#: interfaces/templates/interface.html:8
|
||||
#: interfaces/templates/interface.html:40
|
||||
msgid "Interface"
|
||||
msgstr "Arayüz"
|
||||
msgstr "Arabirim"
|
||||
|
||||
#: instances/templates/instance.html:980
|
||||
#: instances/templates/instance.html:1019
|
||||
|
@ -1992,6 +2219,7 @@ msgstr "QoS Sil"
|
|||
#: instances/templates/instance.html:1093
|
||||
msgid "For migration both host servers must have equal settings and OS type"
|
||||
msgstr ""
|
||||
"Taşıma için iki sunucu da eşlenik ayarlara ve OS tipine sahip olmalıdır"
|
||||
|
||||
#: instances/templates/instance.html:1096
|
||||
msgid "Original host"
|
||||
|
@ -2040,6 +2268,8 @@ msgstr "Sıkıştırılmış"
|
|||
#: instances/templates/instance.html:1180
|
||||
msgid "If you need to edit XML please Power Off the instance"
|
||||
msgstr ""
|
||||
"XML üzerinden ayarları değiştirmek istiyorsanız sanal makineyi "
|
||||
"kapatmalısınız"
|
||||
|
||||
#: instances/templates/instance.html:1201
|
||||
msgid "Instance owners"
|
||||
|
@ -2070,7 +2300,7 @@ msgstr "Tip"
|
|||
#: instances/templates/instance.html:1329
|
||||
#: instances/templates/instance.html:1493
|
||||
msgid "please choose"
|
||||
msgstr "lütfen seçin"
|
||||
msgstr "lütfen seçiniz"
|
||||
|
||||
#: instances/templates/instance.html:1244
|
||||
#: instances/templates/instance.html:1246
|
||||
|
@ -2228,7 +2458,7 @@ msgstr "Disk I/O aygıtı"
|
|||
|
||||
#: instances/templates/instance.html:1662
|
||||
msgid "Destroy Instance"
|
||||
msgstr "Sanal makineyi yok et"
|
||||
msgstr "Sanal makineyi sil"
|
||||
|
||||
#: instances/templates/instance.html:1669
|
||||
msgid "Delete storage for instance?"
|
||||
|
@ -2296,7 +2526,7 @@ msgstr ""
|
|||
|
||||
#: instances/views.py:483
|
||||
msgid "Resize CPU"
|
||||
msgstr ""
|
||||
msgstr "CPU Boyutlandır"
|
||||
|
||||
#: instances/views.py:501
|
||||
#, python-brace-format
|
||||
|
@ -2306,7 +2536,7 @@ msgstr ""
|
|||
|
||||
#: instances/views.py:507
|
||||
msgid "Resize Memory"
|
||||
msgstr ""
|
||||
msgstr "Bellek Boyutlandır"
|
||||
|
||||
#: instances/views.py:524
|
||||
#, python-brace-format
|
||||
|
@ -2316,7 +2546,7 @@ msgstr ""
|
|||
|
||||
#: instances/views.py:528
|
||||
msgid "Disk resize"
|
||||
msgstr "Diski yeniden boyutlandır"
|
||||
msgstr "Diski Boyutlandır"
|
||||
|
||||
#: instances/views.py:549
|
||||
#, python-brace-format
|
||||
|
@ -2382,7 +2612,7 @@ msgstr "Anlık görüntü geri dönüş başarılı:"
|
|||
|
||||
#: instances/views.py:693
|
||||
msgid "Revert snapshot"
|
||||
msgstr ""
|
||||
msgstr "Snapshota dön"
|
||||
|
||||
#: instances/views.py:716
|
||||
msgid "vCPU {} is enabled={}"
|
||||
|
@ -2604,7 +2834,7 @@ msgstr "Arabirim 10 karakterden fazla olamaz"
|
|||
|
||||
#: interfaces/templates/create_iface_block.html:12
|
||||
msgid "Create New Interface"
|
||||
msgstr "Yeni arayüz oluştur"
|
||||
msgstr "Yeni Arabirim Oluştur"
|
||||
|
||||
#: interfaces/templates/create_iface_block.html:24
|
||||
msgid "Start mode"
|
||||
|
@ -2636,11 +2866,11 @@ msgstr "STP"
|
|||
|
||||
#: interfaces/templates/create_iface_block.html:57
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
msgstr "açık"
|
||||
|
||||
#: interfaces/templates/create_iface_block.html:58
|
||||
msgid "off"
|
||||
msgstr ""
|
||||
msgstr "kapalı"
|
||||
|
||||
#: interfaces/templates/create_iface_block.html:63
|
||||
msgid "Delay"
|
||||
|
@ -2688,7 +2918,7 @@ msgstr "IPv6 Ağ Geçidi"
|
|||
|
||||
#: interfaces/templates/interface.html:48
|
||||
msgid "Interface Type"
|
||||
msgstr "Arayüz Tipi"
|
||||
msgstr "Arabirim Tipi"
|
||||
|
||||
#: interfaces/templates/interface.html:51
|
||||
msgid "Bridge Device"
|
||||
|
@ -2719,7 +2949,7 @@ msgstr "Hız"
|
|||
|
||||
#: interfaces/templates/interfaces.html:47
|
||||
msgid "Hypervisor doesn't have any Interfaces"
|
||||
msgstr "Hipervizör hiç bir arabirime sahip değil"
|
||||
msgstr "Hipervizör hiçbir arabirime sahip değil"
|
||||
|
||||
#: networks/forms.py:7 storages/forms.py:7
|
||||
msgid "No pool name has been entered"
|
||||
|
@ -2777,13 +3007,25 @@ msgstr "Gelen"
|
|||
msgid "Outbound"
|
||||
msgstr "Giden"
|
||||
|
||||
#: networks/templates/add_network_qos.html:29
|
||||
#: networks/templates/add_network_qos.html:36
|
||||
#: networks/templates/add_network_qos.html:43
|
||||
msgid "kilobytes"
|
||||
msgstr "kilobayt"
|
||||
|
||||
#: networks/templates/create_net_block.html:12
|
||||
msgid "Add New Network"
|
||||
msgstr "Yeni Ağ Ekle"
|
||||
|
||||
#: networks/templates/create_net_block.html:20
|
||||
#: storages/templates/create_stg_block.html:44
|
||||
#: storages/templates/create_stg_block.html:73
|
||||
msgid "default"
|
||||
msgstr "varsayılan"
|
||||
|
||||
#: networks/templates/create_net_block.html:24
|
||||
msgid "Type forwarding"
|
||||
msgstr "Tip yönlendirme"
|
||||
msgstr "Yönlendirme Tipi"
|
||||
|
||||
#: networks/templates/create_net_block.html:27
|
||||
#: networks/templates/network.html:98
|
||||
|
@ -2884,7 +3126,7 @@ msgstr "KAPALI"
|
|||
#: networks/templates/network.html:124 networks/templates/network.html:130
|
||||
#: networks/templates/network.html:236 networks/templates/network.html:242
|
||||
msgid "End"
|
||||
msgstr ""
|
||||
msgstr "Son"
|
||||
|
||||
#: networks/templates/network.html:138 networks/templates/network.html:251
|
||||
msgid "Edit DHCP Range"
|
||||
|
@ -2916,7 +3158,7 @@ msgstr "IPv6 Sabit Adresleri"
|
|||
|
||||
#: networks/templates/networks.html:50
|
||||
msgid "Hypervisor doesn't have any Network"
|
||||
msgstr "Hipervizör hiç bir Ağa sahip değil"
|
||||
msgstr "Hipervizör hiçbir Ağa sahip değil"
|
||||
|
||||
#: networks/templates/networks.html:65
|
||||
msgid "Forward"
|
||||
|
@ -3119,7 +3361,7 @@ msgstr "Hedef herhangi bir özel karakter içeremez"
|
|||
|
||||
#: storages/forms.py:48
|
||||
msgid "No device or path has been entered"
|
||||
msgstr ""
|
||||
msgstr "Aygıt ya da yol girilmedi"
|
||||
|
||||
#: storages/forms.py:50
|
||||
msgid "The disk source must not contain any special characters"
|
||||
|
@ -3259,7 +3501,7 @@ msgstr "Dönüştür"
|
|||
|
||||
#: storages/templates/storage.html:189
|
||||
msgid "Hypervisor doesn't have any Volumes"
|
||||
msgstr "Hipervizör hiç bir birime sahip değil"
|
||||
msgstr "Hipervizör hiçbir birime sahip değil"
|
||||
|
||||
#: storages/templates/storages.html:50
|
||||
msgid "Hypervisor doesn't have any Storages"
|
||||
|
@ -3671,7 +3913,7 @@ msgstr "Dosya yolu"
|
|||
#: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1735
|
||||
#, python-format
|
||||
msgid "'%(value)s' value must be a float."
|
||||
msgstr ""
|
||||
msgstr "'%(value)s' değeri kayan noktalı bir sayı olmalıdır."
|
||||
|
||||
#: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1737
|
||||
msgid "Floating point number"
|
||||
|
@ -3771,16 +4013,16 @@ msgstr "Bire-bir ilişki"
|
|||
#: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:1057
|
||||
#, python-format
|
||||
msgid "%(from)s-%(to)s relationship"
|
||||
msgstr ""
|
||||
msgstr "%(from)s'den %(to)s ye ilişki"
|
||||
|
||||
#: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:1058
|
||||
#, python-format
|
||||
msgid "%(from)s-%(to)s relationships"
|
||||
msgstr ""
|
||||
msgstr "%(from)s'den %(to)s ye ilişkiler"
|
||||
|
||||
#: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:1100
|
||||
msgid "Many-to-many relationship"
|
||||
msgstr ""
|
||||
msgstr "Çoktan-çoğa ilişki"
|
||||
|
||||
#. Translators: If found as last label character, these punctuation
|
||||
#. characters will prevent the default label_suffix to be appended to the
|
||||
|
@ -3850,6 +4092,8 @@ msgid ""
|
|||
"Upload a valid image. The file you uploaded was either not an image or a "
|
||||
"corrupted image."
|
||||
msgstr ""
|
||||
"Geçerli bir imaj yükleyin. Yüklediğiniz imaj ya geçersiz ya da bir bozulmuş "
|
||||
"imaj"
|
||||
|
||||
#: venv/lib/python3.6/site-packages/django/forms/fields.py:762
|
||||
#: venv/lib/python3.6/site-packages/django/forms/fields.py:852
|
||||
|
@ -3881,7 +4125,7 @@ msgstr ":"
|
|||
#: venv/lib/python3.6/site-packages/django/forms/forms.py:212
|
||||
#, python-format
|
||||
msgid "(Hidden field %(name)s) %(error)s"
|
||||
msgstr ""
|
||||
msgstr "(Gizli alan %(name)s) %(error)s"
|
||||
|
||||
#: venv/lib/python3.6/site-packages/django/forms/formsets.py:91
|
||||
msgid "ManagementForm data is missing or has been tampered with"
|
||||
|
@ -4460,7 +4704,7 @@ msgstr ""
|
|||
#: venv/lib/python3.6/site-packages/django/views/generic/list.py:72
|
||||
#, python-format
|
||||
msgid "Invalid page (%(page_number)s): %(message)s"
|
||||
msgstr ""
|
||||
msgstr "Geçersiz sayfa (%(page_number)s): %(message)s"
|
||||
|
||||
#: venv/lib/python3.6/site-packages/django/views/generic/list.py:154
|
||||
#, python-format
|
||||
|
@ -4504,6 +4748,10 @@ msgid ""
|
|||
"target=\"_blank\" rel=\"noopener\">DEBUG=True</a> is in your settings file "
|
||||
"and you have not configured any URLs."
|
||||
msgstr ""
|
||||
"Ayarlarınızı içeren dosyada <a "
|
||||
"href=\"https://docs.djangoproject.com/en/%(version)s/ref/settings/#debug\" "
|
||||
"target=\"_blank\" rel=\"noopener\">DEBUG=True</a> olduğu için bu sayfayı "
|
||||
"görüyorsunuz ve hiçbir URL ayarlamamışsınız."
|
||||
|
||||
#: venv/lib/python3.6/site-packages/django/views/templates/default_urlconf.html:383
|
||||
msgid "Django Documentation"
|
||||
|
@ -4515,11 +4763,11 @@ msgstr "Başlıklar, referanslar, & Nasıl yapılırlar"
|
|||
|
||||
#: venv/lib/python3.6/site-packages/django/views/templates/default_urlconf.html:395
|
||||
msgid "Tutorial: A Polling App"
|
||||
msgstr ""
|
||||
msgstr "Eğitsel: Bir Yoklama Uygulaması"
|
||||
|
||||
#: venv/lib/python3.6/site-packages/django/views/templates/default_urlconf.html:396
|
||||
msgid "Get started with Django"
|
||||
msgstr ""
|
||||
msgstr "Django ile Tanışın"
|
||||
|
||||
#: venv/lib/python3.6/site-packages/django/views/templates/default_urlconf.html:407
|
||||
msgid "Django Community"
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-06-10 08:01+0000\n"
|
||||
"POT-Creation-Date: 2020-06-10 12:05+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -41,6 +41,10 @@ msgstr ""
|
|||
msgid "Flavor name is already use"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/models.py:33
|
||||
msgid "-1 for unlimited. Any integer value"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/models.py:85
|
||||
msgid "Can change password"
|
||||
msgstr ""
|
||||
|
@ -213,6 +217,15 @@ msgstr ""
|
|||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/templates/accounts-list.html:11
|
||||
#: admin/templates/admin/group_list.html:13
|
||||
#: admin/templates/admin/user_list.html:14
|
||||
#: instances/templates/allinstances.html:17
|
||||
#: instances/templates/instances.html:19 nwfilters/templates/nwfilters.html:11
|
||||
#: storages/templates/storage.html:89
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/templates/accounts-list.html:25 accounts/templates/accounts.html:21
|
||||
#: admin/templates/admin/user_list.html:25
|
||||
msgid "You don't have any user"
|
||||
|
@ -369,6 +382,10 @@ msgstr ""
|
|||
msgid "Add New User"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/templates/create_user_block.html:20
|
||||
msgid "john"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/templates/create_user_block.html:32
|
||||
#: create/templates/create_instance_w1.html:93
|
||||
#: create/templates/create_instance_w2.html:275
|
||||
|
@ -537,11 +554,6 @@ msgstr ""
|
|||
msgid "Create New"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/admin/group_list.html:13
|
||||
#: admin/templates/admin/user_list.html:14
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/admin/group_list.html:24
|
||||
msgid "You don't have any groups"
|
||||
msgstr ""
|
||||
|
@ -551,6 +563,7 @@ msgid "Group Name"
|
|||
msgstr ""
|
||||
|
||||
#: admin/templates/admin/group_list.html:33
|
||||
#: admin/templates/admin/user_list.html:38
|
||||
#: instances/templates/allinstances.html:60
|
||||
#: instances/templates/allinstances_index_grouped.html:11
|
||||
#: instances/templates/allinstances_index_nongrouped.html:10
|
||||
|
@ -602,6 +615,214 @@ msgstr ""
|
|||
msgid "Update User"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:10
|
||||
msgid "Theme"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:10
|
||||
msgid "Bootstrap CSS & Bootswatch Theme"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:11
|
||||
msgid "Theme SASS Path"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:11
|
||||
msgid "Bootstrap SASS & Bootswatch SASS Directory"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:12
|
||||
msgid "All Instances View Style"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:12
|
||||
msgid "All instances list style"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:13
|
||||
msgid "Logs per Page"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:13
|
||||
msgid "Pagination for logs"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:14
|
||||
msgid "Multiple Owner for VM"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:14
|
||||
msgid "Allow to have multiple owner for instance"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:15
|
||||
msgid "Quota Debug"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:15
|
||||
msgid "Debug for user quotas"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:16
|
||||
msgid "Disk Format"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:16
|
||||
msgid "Instance disk format"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:17
|
||||
msgid "Disk Bus"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:17
|
||||
msgid "Instance disk bus type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:18
|
||||
msgid "Disk SCSI Controller"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:18
|
||||
msgid "SCSI controller type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:19
|
||||
msgid "Disk Cache"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:19
|
||||
msgid "Disk volume cache type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:20
|
||||
msgid "Disk IO Type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:20
|
||||
msgid "Volume io modes"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:21
|
||||
msgid "Disk Detect Zeroes"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:21
|
||||
msgid "Volume detect zeroes mode"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:22
|
||||
msgid "Disk Discard"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:22
|
||||
msgid "Volume discard mode"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:23
|
||||
msgid "Disk Owner UID"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:23
|
||||
msgid "Owner UID: up to os, 0=root, 107=qemu or libvirt-bin(for ubuntu)"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:24
|
||||
msgid "Disk Owner GID"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:24
|
||||
msgid "Owner GID: up to os, 0=root, 107=qemu or libvirt-bin(for ubuntu)"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:25
|
||||
msgid "VM CPU Mode"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:25
|
||||
msgid "Cpu modes"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:26
|
||||
msgid "VM Machine Type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:26
|
||||
msgid "Chipset/Machine type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:27
|
||||
msgid "VM Firmware Type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:27
|
||||
msgid "Firmware type for x86_64"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:28
|
||||
msgid "VM Architecture Type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:28
|
||||
msgid "Architecture type: x86_64, i686, etc"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:29
|
||||
msgid "VM Console Type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:29
|
||||
msgid "Default console type"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:30
|
||||
msgid "VM Clone Name Prefix"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:30
|
||||
msgid "Prefix for cloned instance name"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:31
|
||||
msgid "VM Clone Auto Name"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:31
|
||||
msgid "Generated name for cloned instance"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:32
|
||||
msgid "VM Clone Auto Migrate"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:32
|
||||
msgid "Auto migrate instance after clone"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:33
|
||||
msgid "VM Bottom Bar"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:33
|
||||
msgid "Bottom navbar for instance details"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:34
|
||||
msgid "Show Access Root Pass"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:34
|
||||
msgid "Show access root password"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:35
|
||||
msgid "Show Access SSH Keys"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/migrations/0002_auto_20200527_1603.py:35
|
||||
msgid "Show access ssh keys"
|
||||
msgstr ""
|
||||
|
||||
#: appsettings/templates/appsettings.html:3
|
||||
#: appsettings/templates/appsettings.html:8
|
||||
msgid "Edit Settings"
|
||||
|
@ -685,8 +906,10 @@ msgid "Not Connected"
|
|||
msgstr ""
|
||||
|
||||
#: computes/templates/computes.html:46 computes/templates/computes.html:91
|
||||
#: computes/templates/computes.html:134 computes/templates/computes.html:182
|
||||
#: computes/templates/computes.html:212 computes/templates/overview.html:92
|
||||
#: computes/templates/computes.html:93 computes/templates/computes.html:134
|
||||
#: computes/templates/computes.html:136 computes/templates/computes.html:182
|
||||
#: computes/templates/computes.html:184 computes/templates/computes.html:212
|
||||
#: computes/templates/computes.html:214 computes/templates/overview.html:92
|
||||
#: instances/templates/instance.html:758 instances/templates/instance.html:840
|
||||
msgid "Details"
|
||||
msgstr ""
|
||||
|
@ -976,6 +1199,10 @@ msgstr ""
|
|||
msgid "Add New Flavor"
|
||||
msgstr ""
|
||||
|
||||
#: create/templates/create_flav_block.html:21
|
||||
msgid "Micro"
|
||||
msgstr ""
|
||||
|
||||
#: create/templates/create_flav_block.html:26
|
||||
#: create/templates/create_instance_w2.html:82
|
||||
#: create/templates/create_instance_w2.html:327
|
||||
|
@ -2730,10 +2957,22 @@ msgstr ""
|
|||
msgid "Outbound"
|
||||
msgstr ""
|
||||
|
||||
#: networks/templates/add_network_qos.html:29
|
||||
#: networks/templates/add_network_qos.html:36
|
||||
#: networks/templates/add_network_qos.html:43
|
||||
msgid "kilobytes"
|
||||
msgstr ""
|
||||
|
||||
#: networks/templates/create_net_block.html:12
|
||||
msgid "Add New Network"
|
||||
msgstr ""
|
||||
|
||||
#: networks/templates/create_net_block.html:20
|
||||
#: storages/templates/create_stg_block.html:44
|
||||
#: storages/templates/create_stg_block.html:73
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#: networks/templates/create_net_block.html:24
|
||||
msgid "Type forwarding"
|
||||
msgstr ""
|
||||
|
|
|
@ -26,21 +26,21 @@
|
|||
<div class="form-group row">
|
||||
<label class="col-sm-4 col-form-label">{% trans "Average" %}:</label>
|
||||
<div class="col-sm-6">
|
||||
<input class="form-control" name="qos_average" placeholder="kilobytes"
|
||||
<input class="form-control" name="qos_average" placeholder="{% trans "kilobytes" %}"
|
||||
required pattern="[0-9]+"/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group row">
|
||||
<label class="col-sm-4 col-form-label">{% trans "Peak" %}:</label>
|
||||
<div class="col-sm-6">
|
||||
<input class="form-control" name="qos_peak" placeholder="kilobytes"
|
||||
<input class="form-control" name="qos_peak" placeholder="{% trans "kilobytes" %}"
|
||||
pattern="[0-9]+"/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group row">
|
||||
<label class="col-sm-4 col-form-label">{% trans "Burst" %}:</label>
|
||||
<div class="col-sm-6">
|
||||
<input class="form-control" name="qos_burst" placeholder="kilobytes"
|
||||
<input class="form-control" name="qos_burst" placeholder="{% trans "kilobytes" %}"
|
||||
pattern="[0-9]+"/>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
<div class="form-group row">
|
||||
<label class="col-sm-4 col-form-label">{% trans "Name" %}</label>
|
||||
<div class="col-sm-6">
|
||||
<input type="text" class="form-control" name="name" placeholder="default" required pattern="[a-zA-Z0-9_]+">
|
||||
<input type="text" class="form-control" name="name" placeholder="{% trans "default" %}" required pattern="[a-zA-Z0-9_]+">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group row">
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<div class="col-lg-12">
|
||||
{% include 'create_nwfilter_block.html' %}
|
||||
<div class="float-right search">
|
||||
<input id="filter" class="form-control" type="text" placeholder="Search">
|
||||
<input id="filter" class="form-control" type="text" placeholder="{% trans 'Search' %}">
|
||||
</div>
|
||||
<h2 class="page-header">{{ compute.name }} - {% trans "NWFilters" %}</h2>
|
||||
</div>
|
||||
|
|
|
@ -41,7 +41,7 @@
|
|||
<div class="form-group row">
|
||||
<label class="col-sm-3 col-form-label">{% trans "Name" %}</label>
|
||||
<div class="col-sm-6">
|
||||
<input type="text" class="form-control" name="name" placeholder="default" maxlength="20" required pattern="[a-zA-Z0-9\.\-_]+">
|
||||
<input type="text" class="form-control" name="name" placeholder="{% trans "default" %}" maxlength="20" required pattern="[a-zA-Z0-9\.\-_]+">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group row">
|
||||
|
@ -70,7 +70,7 @@
|
|||
<div class="form-group row">
|
||||
<label class="col-sm-3 col-form-label">{% trans "Name" %}</label>
|
||||
<div class="col-sm-6">
|
||||
<input type="text" class="form-control" name="name" placeholder="default" maxlength="20" required pattern="[a-zA-Z0-9\.\-_]+">
|
||||
<input type="text" class="form-control" name="name" placeholder="{% trans "default" %}" maxlength="20" required pattern="[a-zA-Z0-9\.\-_]+">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group row">
|
||||
|
|
|
@ -86,7 +86,7 @@
|
|||
<div class="row">
|
||||
<h5 class="page-header mr-auto">{% trans "Volumes" %}</h5>
|
||||
<div class="col-3 ">
|
||||
<input id="filter" class="form-control" type="text" placeholder="Search">
|
||||
<input id="filter" class="form-control" type="text" placeholder="{% trans 'Search' %}">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -42,6 +42,7 @@ INSTALLED_APPS = [
|
|||
MIDDLEWARE = [
|
||||
'django.middleware.security.SecurityMiddleware',
|
||||
'django.contrib.sessions.middleware.SessionMiddleware',
|
||||
'django.middleware.locale.LocaleMiddleware',
|
||||
'django.middleware.common.CommonMiddleware',
|
||||
'django.middleware.csrf.CsrfViewMiddleware',
|
||||
'django.contrib.auth.middleware.AuthenticationMiddleware',
|
||||
|
@ -49,7 +50,6 @@ MIDDLEWARE = [
|
|||
'django.contrib.auth.middleware.RemoteUserMiddleware',
|
||||
'django.contrib.messages.middleware.MessageMiddleware',
|
||||
'django.middleware.clickjacking.XFrameOptionsMiddleware',
|
||||
'django.middleware.locale.LocaleMiddleware',
|
||||
]
|
||||
|
||||
ROOT_URLCONF = 'webvirtcloud.urls'
|
||||
|
@ -111,6 +111,10 @@ STATICFILES_DIRS = [
|
|||
os.path.join(BASE_DIR, "static"),
|
||||
]
|
||||
|
||||
LOCALE_PATHS = [
|
||||
'locale/',
|
||||
]
|
||||
|
||||
LOGGING = {
|
||||
"version": 1,
|
||||
"disable_existing_loggers": False,
|
||||
|
|
Loading…
Reference in a new issue