From b7fc8a5fea90acb0d43e33d897db3658b23bcf30 Mon Sep 17 00:00:00 2001 From: catborise Date: Wed, 10 Jun 2020 15:16:58 +0300 Subject: [PATCH] Language change activation. Fix typos and add new translations --- accounts/models.py | 2 +- accounts/templates/accounts-list.html | 2 +- accounts/templates/create_user_block.html | 2 +- admin/templates/admin/user_list.html | 2 +- .../migrations/0002_auto_20200527_1603.py | 81 ++--- computes/templates/computes.html | 8 +- create/templates/create_flav_block.html | 2 +- dev/scss/wvc-main.scss | 6 +- instances/templates/allinstances.html | 2 +- instances/templates/instance.html | 2 +- instances/templates/instances.html | 2 +- locale/de/LC_MESSAGES/django.po | 255 ++++++++++++- locale/en/LC_MESSAGES/django.po | 255 ++++++++++++- locale/es/LC_MESSAGES/django.po | 255 ++++++++++++- locale/fr/LC_MESSAGES/django.po | 255 ++++++++++++- locale/nl/LC_MESSAGES/django.po | 255 ++++++++++++- locale/ru/LC_MESSAGES/django.po | 255 ++++++++++++- locale/tr/LC_MESSAGES/django.mo | Bin 49408 -> 54934 bytes locale/tr/LC_MESSAGES/django.po | 340 +++++++++++++++--- locale/uk/LC_MESSAGES/django.po | 255 ++++++++++++- networks/templates/add_network_qos.html | 6 +- networks/templates/create_net_block.html | 2 +- nwfilters/templates/nwfilters.html | 2 +- storages/templates/create_stg_block.html | 4 +- storages/templates/storage.html | 2 +- webvirtcloud/settings.py.template | 6 +- 26 files changed, 2078 insertions(+), 180 deletions(-) diff --git a/accounts/models.py b/accounts/models.py index 759455c..2510d7d 100644 --- a/accounts/models.py +++ b/accounts/models.py @@ -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), ]) diff --git a/accounts/templates/accounts-list.html b/accounts/templates/accounts-list.html index 9c77911..f34afd8 100644 --- a/accounts/templates/accounts-list.html +++ b/accounts/templates/accounts-list.html @@ -8,7 +8,7 @@
{% include 'create_user_block.html' %}
diff --git a/accounts/templates/create_user_block.html b/accounts/templates/create_user_block.html index 5042bfe..dafc071 100644 --- a/accounts/templates/create_user_block.html +++ b/accounts/templates/create_user_block.html @@ -17,7 +17,7 @@
- +
diff --git a/admin/templates/admin/user_list.html b/admin/templates/admin/user_list.html index 7c1f2a5..03863ef 100644 --- a/admin/templates/admin/user_list.html +++ b/admin/templates/admin/user_list.html @@ -35,7 +35,7 @@ {% trans "Staff" %} {% trans "Superuser" %} {% trans "Can Clone" %} - "" + {% trans "Actions" %} diff --git a/appsettings/migrations/0002_auto_20200527_1603.py b/appsettings/migrations/0002_auto_20200527_1603.py index 5a94432..2d698f7 100644 --- a/appsettings/migrations/0002_auto_20200527_1603.py +++ b/appsettings/migrations/0002_auto_20200527_1603.py @@ -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")), ]) diff --git a/computes/templates/computes.html b/computes/templates/computes.html index c22f9de..ed7a568 100644 --- a/computes/templates/computes.html +++ b/computes/templates/computes.html @@ -90,7 +90,7 @@
- +
@@ -181,7 +181,7 @@
- +
@@ -211,7 +211,7 @@
- +
diff --git a/create/templates/create_flav_block.html b/create/templates/create_flav_block.html index b619d30..47d3b58 100644 --- a/create/templates/create_flav_block.html +++ b/create/templates/create_flav_block.html @@ -18,7 +18,7 @@
-
diff --git a/dev/scss/wvc-main.scss b/dev/scss/wvc-main.scss index b85716f..41cf796 100644 --- a/dev/scss/wvc-main.scss +++ b/dev/scss/wvc-main.scss @@ -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'; diff --git a/instances/templates/allinstances.html b/instances/templates/allinstances.html index 3a80c44..8e6b342 100644 --- a/instances/templates/allinstances.html +++ b/instances/templates/allinstances.html @@ -14,7 +14,7 @@ {% endif %} {% if all_host_vms or all_user_vms %} {% endif %} diff --git a/instances/templates/instance.html b/instances/templates/instance.html index d67077c..9a9bcb8 100644 --- a/instances/templates/instance.html +++ b/instances/templates/instance.html @@ -1682,7 +1682,7 @@
-
{% endif %} diff --git a/instances/templates/instances.html b/instances/templates/instances.html index 20ebeae..0c1d604 100644 --- a/instances/templates/instances.html +++ b/instances/templates/instances.html @@ -16,7 +16,7 @@ {% endif %} {% if all_host_vms or all_user_vms %} {% endif %} diff --git a/locale/de/LC_MESSAGES/django.po b/locale/de/LC_MESSAGES/django.po index b4d694c..35a1b55 100644 --- a/locale/de/LC_MESSAGES/django.po +++ b/locale/de/LC_MESSAGES/django.po @@ -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 \n" "Language-Team: LANGUAGE \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 "" diff --git a/locale/en/LC_MESSAGES/django.po b/locale/en/LC_MESSAGES/django.po index b4d694c..35a1b55 100644 --- a/locale/en/LC_MESSAGES/django.po +++ b/locale/en/LC_MESSAGES/django.po @@ -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 \n" "Language-Team: LANGUAGE \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 "" diff --git a/locale/es/LC_MESSAGES/django.po b/locale/es/LC_MESSAGES/django.po index ecc4104..35a1b55 100644 --- a/locale/es/LC_MESSAGES/django.po +++ b/locale/es/LC_MESSAGES/django.po @@ -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 \n" "Language-Team: LANGUAGE \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 "" diff --git a/locale/fr/LC_MESSAGES/django.po b/locale/fr/LC_MESSAGES/django.po index 47d05eb..bcc82fb 100644 --- a/locale/fr/LC_MESSAGES/django.po +++ b/locale/fr/LC_MESSAGES/django.po @@ -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 \n" "Language-Team: LANGUAGE \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 "" diff --git a/locale/nl/LC_MESSAGES/django.po b/locale/nl/LC_MESSAGES/django.po index b4d694c..35a1b55 100644 --- a/locale/nl/LC_MESSAGES/django.po +++ b/locale/nl/LC_MESSAGES/django.po @@ -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 \n" "Language-Team: LANGUAGE \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 "" diff --git a/locale/ru/LC_MESSAGES/django.po b/locale/ru/LC_MESSAGES/django.po index 1177cf7..e29fe8d 100644 --- a/locale/ru/LC_MESSAGES/django.po +++ b/locale/ru/LC_MESSAGES/django.po @@ -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 \n" "Language-Team: LANGUAGE \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 "" diff --git a/locale/tr/LC_MESSAGES/django.mo b/locale/tr/LC_MESSAGES/django.mo index 3e40e525f8d43321292488800e03024fd9b374f6..e0953e722375bc2156bf3e81da0e2638a8de9ca7 100644 GIT binary patch literal 54934 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

EqGF8TSfgi%Tj=fjU3Cbenokgdc|Bue)B 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, 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 is in your settings file " "and you have not configured any URLs." msgstr "" +"Ayarlarınızı içeren dosyada DEBUG=True 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" diff --git a/locale/uk/LC_MESSAGES/django.po b/locale/uk/LC_MESSAGES/django.po index 46e8383..8dbc3bc 100644 --- a/locale/uk/LC_MESSAGES/django.po +++ b/locale/uk/LC_MESSAGES/django.po @@ -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 \n" "Language-Team: LANGUAGE \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 "" diff --git a/networks/templates/add_network_qos.html b/networks/templates/add_network_qos.html index 1397c7a..a4265b0 100644 --- a/networks/templates/add_network_qos.html +++ b/networks/templates/add_network_qos.html @@ -26,21 +26,21 @@

-
-
-
diff --git a/networks/templates/create_net_block.html b/networks/templates/create_net_block.html index 01e1a09..a40eeba 100644 --- a/networks/templates/create_net_block.html +++ b/networks/templates/create_net_block.html @@ -17,7 +17,7 @@
- +
diff --git a/nwfilters/templates/nwfilters.html b/nwfilters/templates/nwfilters.html index 675dc32..b1fb566 100644 --- a/nwfilters/templates/nwfilters.html +++ b/nwfilters/templates/nwfilters.html @@ -8,7 +8,7 @@
{% include 'create_nwfilter_block.html' %}
diff --git a/storages/templates/create_stg_block.html b/storages/templates/create_stg_block.html index 1a09452..65414a8 100644 --- a/storages/templates/create_stg_block.html +++ b/storages/templates/create_stg_block.html @@ -41,7 +41,7 @@
- +
@@ -70,7 +70,7 @@
- +
diff --git a/storages/templates/storage.html b/storages/templates/storage.html index 226087b..b0db398 100644 --- a/storages/templates/storage.html +++ b/storages/templates/storage.html @@ -86,7 +86,7 @@
- +
diff --git a/webvirtcloud/settings.py.template b/webvirtcloud/settings.py.template index dc23517..93a6f6f 100644 --- a/webvirtcloud/settings.py.template +++ b/webvirtcloud/settings.py.template @@ -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,