diff --git a/README.md b/README.md index 22cabd2..d2229ad 100644 --- a/README.md +++ b/README.md @@ -335,13 +335,13 @@ python manage.py test ### Screenshots Instance Detail: - + Instance List:
- - + + Other:
- - + + ### License diff --git a/accounts/templates/profile.html b/accounts/templates/profile.html index 54a8bd0..4d11564 100644 --- a/accounts/templates/profile.html +++ b/accounts/templates/profile.html @@ -18,7 +18,7 @@
{% if perms.accounts.change_password %} - {% icon 'lock' %} {% trans "Change Password" %} + {% icon 'lock' %} {% trans "Change Password" %} {% endif %}
{% csrf_token %}
diff --git a/admin/forms.py b/admin/forms.py index 5c658aa..6856d7b 100644 --- a/admin/forms.py +++ b/admin/forms.py @@ -1,5 +1,8 @@ from django import forms from django.contrib.auth.models import Group, User +from django.contrib.auth.forms import ReadOnlyPasswordHashField +from django.urls import reverse_lazy +from django.utils.text import format_lazy from django.utils.translation import ugettext_lazy as _ from accounts.models import UserAttributes @@ -68,6 +71,16 @@ class UserForm(forms.ModelForm): 'is_superuser', ] + def __init__(self, *args, **kwargs): + super(UserForm, self).__init__(*args, **kwargs) + password = ReadOnlyPasswordHashField(label=_("Password"), + help_text=format_lazy(_("""Raw passwords are not stored, so there is no way to see + this user's password, but you can change the password + using this form."""), + reverse_lazy('admin:user_update_password', args=[self.instance.id,])) + ) + self.fields['Password'] = password + class UserCreateForm(UserForm): password = forms.CharField(widget=forms.PasswordInput) diff --git a/admin/urls.py b/admin/urls.py index 5e934c0..205cbc0 100644 --- a/admin/urls.py +++ b/admin/urls.py @@ -1,5 +1,4 @@ from django.urls import path -from django.contrib.auth.views import PasswordChangeView, PasswordChangeDoneView from . import views @@ -10,6 +9,7 @@ urlpatterns = [ path('groups//delete/', views.group_delete, name='group_delete'), path('users/', views.user_list, name='user_list'), path('users/create/', views.user_create, name='user_create'), + path('users//update_password/', views.user_update_password, name='user_update_password'), path('users//update/', views.user_update, name='user_update'), path('users//delete/', views.user_delete, name='user_delete'), path('users//block/', views.user_block, name='user_block'), diff --git a/admin/views.py b/admin/views.py index 3a5f72e..2cd1e71 100644 --- a/admin/views.py +++ b/admin/views.py @@ -1,4 +1,7 @@ from django.conf import settings +from django.contrib import messages +from django.contrib.auth import update_session_auth_hash +from django.contrib.auth.forms import AdminPasswordChangeForm from django.contrib.auth.models import Group, User from django.core.paginator import Paginator from django.shortcuts import get_object_or_404, redirect, render @@ -133,6 +136,29 @@ def user_update(request, pk): }, ) +@superuser_only +def user_update_password(request, pk): + user = get_object_or_404(User, pk=pk) + if request.method == 'POST': + form = AdminPasswordChangeForm(user, request.POST) + if form.is_valid(): + user = form.save() + update_session_auth_hash(request, user) # Important! + messages.success(request, _('User password changed: {}'.format(user.username))) + return redirect('admin:user_list') + else: + messages.error(request, _('Wrong Data Provided')) + else: + form = AdminPasswordChangeForm(user) + + return render( + request, + 'accounts/change_password_form.html', + { + 'form': form, + 'user': user.username + } + ) @superuser_only def user_delete(request, pk): diff --git a/appsettings/templates/appsettings.html b/appsettings/templates/appsettings.html index e584136..26a3904 100644 --- a/appsettings/templates/appsettings.html +++ b/appsettings/templates/appsettings.html @@ -11,7 +11,6 @@ {% include 'errors_block.html' %} - {% include 'messages_block.html' %}
diff --git a/computes/forms.py b/computes/forms.py index 8bf6d07..5006766 100644 --- a/computes/forms.py +++ b/computes/forms.py @@ -12,6 +12,7 @@ class TcpComputeForm(forms.ModelForm): class Meta: model = Compute + widgets = {'password': forms.PasswordInput()} fields = '__all__' @@ -30,6 +31,7 @@ class TlsComputeForm(forms.ModelForm): class Meta: model = Compute + widgets = {'password': forms.PasswordInput()} fields = '__all__' diff --git a/computes/templates/computes/list.html b/computes/templates/computes/list.html index 18a2886..79b61fe 100644 --- a/computes/templates/computes/list.html +++ b/computes/templates/computes/list.html @@ -25,26 +25,26 @@
- - - - - + + + + + {% for compute in computes %} - - + - - - @@ -390,10 +391,10 @@ @@ -405,7 +406,7 @@ @@ -462,7 +463,11 @@ - + {% endfor %} diff --git a/instances/views.py b/instances/views.py index 5f0428c..a454e84 100644 --- a/instances/views.py +++ b/instances/views.py @@ -965,8 +965,8 @@ def set_qos(request, pk): else: messages.success( request, - _(f"{qos_dir.capitalize()} QoS is set. Network XML is changed.") + - _("Stop and start network to activate new config"), + _(f"{qos_dir.capitalize()} QoS is set. Network XML is changed. \ + Stop and start network to activate new config.") ) return redirect(request.META.get('HTTP_REFERER') + '#network') @@ -984,8 +984,8 @@ def unset_qos(request, pk): else: messages.success( request, - _(f"{qos_dir.capitalize()} QoS is deleted. Network XML is changed. ") + - _("Stop and start network to activate new config."), + _(f"{qos_dir.capitalize()} QoS is deleted. Network XML is changed. \ + Stop and start network to activate new config.") ) return redirect(request.META.get('HTTP_REFERER') + '#network') @@ -1409,7 +1409,7 @@ def create_instance(request, compute_id, arch, machine): console_pass=data["console_pass"], mac=data['mac'], qemu_ga=data['qemu_ga']) - create_instance = Instance(compute_id=compute_id, name=data['name']) + create_instance = Instance(compute_id=compute_id, name=data['name'], uuid=uuid) create_instance.save() msg = _("Instance is created") messages.success(request, msg) diff --git a/locale/de/LC_MESSAGES/django.po b/locale/de/LC_MESSAGES/django.po index b53a2ad..8572384 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-11 08:31+0000\n" +"POT-Creation-Date: 2020-07-20 09:29+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,228 +18,181 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: accounts/forms.py:10 -msgid "No username has been entered" +#: accounts/forms.py:24 +msgid "Instance owned by another user" msgstr "" -#: accounts/forms.py:13 -msgid "No password has been entered" +#: accounts/models.py:24 +#, python-format +msgid "Instance \"%(inst)s\" of user %(user)s" msgstr "" -#: accounts/forms.py:19 create/forms.py:23 -msgid "The flavor name must not contain any special characters" -msgstr "" - -#: accounts/forms.py:21 create/forms.py:25 -msgid "The flavor name must not exceed 20 characters" -msgstr "" - -#: accounts/forms.py:26 create/forms.py:30 -msgid "Flavor name is already use" +#: accounts/models.py:32 +msgid "key name" msgstr "" #: accounts/models.py:33 +msgid "public key" +msgstr "" + +#: accounts/models.py:42 +msgid "max instances" +msgstr "" + +#: accounts/models.py:44 accounts/models.py:51 accounts/models.py:57 +#: accounts/models.py:63 msgid "-1 for unlimited. Any integer value" msgstr "" -#: accounts/models.py:85 +#: accounts/models.py:49 +msgid "max CPUs" +msgstr "" + +#: accounts/models.py:55 +msgid "max memory" +msgstr "" + +#: accounts/models.py:61 +msgid "max disk size" +msgstr "" + +#: accounts/models.py:77 msgid "Can change password" msgstr "" -#: accounts/templates/account.html:3 admin/templates/admin/common/form.html:6 -#: admin/templates/admin/logs.html:32 admin/templates/admin/user_form.html:6 -#: instances/templates/add_instance_owner_block.html:18 -#: instances/templates/allinstances_index_grouped.html:7 -#: instances/templates/allinstances_index_nongrouped.html:6 -#: instances/templates/instance.html:1644 instances/templates/instances.html:71 -msgid "User" +#: accounts/templates/account.html:4 accounts/templates/account.html:12 +msgid "User Profile" msgstr "" -#: accounts/templates/account.html:23 accounts/templates/profile.html:98 -msgid "Key name" +#: accounts/templates/account.html:21 +#: computes/templates/computes/instances.html:5 +#: computes/templates/computes/instances.html:32 +#: computes/templates/overview.html:16 instances/templates/allinstances.html:5 +#: instances/templates/allinstances.html:9 +#: instances/templates/bottom_bar.html:17 +#: interfaces/templates/interface.html:14 +#: interfaces/templates/interfaces.html:17 networks/templates/network.html:16 +#: networks/templates/networks.html:20 nwfilters/templates/nwfilter.html:15 +#: nwfilters/templates/nwfilters.html:24 secrets/templates/secrets.html:20 +#: storages/templates/storage.html:20 storages/templates/storages.html:20 +#: templates/navbar.html:14 +msgid "Instances" msgstr "" -#: accounts/templates/account.html:24 accounts/templates/profile.html:104 -msgid "Public key" +#: accounts/templates/account.html:24 +msgid "Public Keys" msgstr "" -#: accounts/templates/account.html:47 accounts/templates/accounts-list.html:25 -#: accounts/templates/accounts.html:21 admin/templates/admin/group_list.html:24 -#: admin/templates/admin/logs.html:21 admin/templates/admin/user_list.html:25 -#: computes/templates/computes.html:241 -#: create/templates/create_instance_w2.html:70 -#: instances/templates/allinstances.html:33 -#: instances/templates/allinstances.html:49 -#: instances/templates/instances.html:61 -#: interfaces/templates/interfaces.html:47 networks/templates/networks.html:50 -#: nwfilters/templates/nwfilters.html:138 secrets/templates/secrets.html:50 -#: storages/templates/storage.html:189 storages/templates/storages.html:50 -msgid "Warning" -msgstr "" - -#: accounts/templates/account.html:47 -msgid "User doesn't have any Instance" -msgstr "" - -#: accounts/templates/account.html:56 -#: accounts/templates/create_user_inst_block.html:18 -#: admin/templates/admin/logs.html:33 instances/templates/instance.html:4 +#: accounts/templates/account.html:34 admin/templates/admin/logs.html:34 +#: instances/templates/instance.html:4 msgid "Instance" msgstr "" -#: accounts/templates/account.html:57 accounts/templates/account.html:88 +#: accounts/templates/account.html:35 msgid "VNC" msgstr "" -#: accounts/templates/account.html:58 accounts/templates/account.html:97 -#: instances/templates/instance.html:88 instances/templates/instance.html:412 -#: instances/templates/instance.html:414 instances/templates/instance.html:441 -#: instances/templates/instance.html:476 instances/templates/instance.html:480 -#: instances/templates/instance.html:497 instances/templates/instance.html:499 -#: instances/templates/instance.html:504 +#: accounts/templates/account.html:36 instances/templates/instance.html:87 +#: instances/templates/instances/resize_tab.html:56 +#: instances/templates/instances/resize_tab.html:58 +#: instances/templates/instances/resize_tab.html:85 +#: instances/templates/instances/resize_tab.html:121 +#: instances/templates/instances/resize_tab.html:125 +#: instances/templates/instances/resize_tab.html:151 +#: instances/templates/instances/resize_tab.html:153 +#: instances/templates/instances/resize_tab.html:158 msgid "Resize" msgstr "" -#: accounts/templates/account.html:59 accounts/templates/account.html:106 -#: accounts/templates/account.html:127 +#: accounts/templates/account.html:37 accounts/templates/account.html:55 #: accounts/templates/accounts-list.html:133 -#: accounts/templates/accounts.html:126 accounts/templates/profile.html:84 -#: admin/templates/admin/common/confirm_delete.html:6 -#: admin/templates/admin/common/confirm_delete.html:16 +#: accounts/templates/accounts.html:126 accounts/templates/profile.html:60 #: admin/templates/admin/common/list.html:22 #: admin/templates/admin/group_list.html:47 -#: admin/templates/admin/user_list.html:67 computes/templates/computes.html:98 -#: computes/templates/computes.html:142 computes/templates/computes.html:190 -#: computes/templates/computes.html:220 instances/templates/instance.html:873 -#: instances/templates/instance.html:880 interfaces/templates/interface.html:61 -#: networks/templates/network.html:53 nwfilters/templates/nwfilter.html:114 -#: nwfilters/templates/nwfilter.html:154 nwfilters/templates/nwfilters.html:123 -#: secrets/templates/secrets.html:77 storages/templates/storage.html:63 -#: storages/templates/storage.html:176 +#: admin/templates/admin/user_list.html:67 +#: computes/templates/computes/list.html:55 +#: instances/templates/instances/settings_tab.html:310 +#: instances/templates/instances/settings_tab.html:314 +#: interfaces/templates/interface.html:61 networks/templates/network.html:53 +#: nwfilters/templates/nwfilter.html:114 nwfilters/templates/nwfilter.html:154 +#: nwfilters/templates/nwfilters.html:123 secrets/templates/secrets.html:77 +#: storages/templates/storage.html:62 storages/templates/storage.html:175 +#: templates/common/confirm_delete.html:6 +#: templates/common/confirm_delete.html:16 #: venv/lib/python3.6/site-packages/django/forms/formsets.py:375 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:394 msgid "Delete" msgstr "" -#: accounts/templates/account.html:60 -#: create/templates/create_instance_w2.html:85 -#: instances/templates/instance.html:556 instances/templates/instance.html:831 +#: accounts/templates/account.html:38 +#: instances/templates/create_instance_w2.html:86 +#: instances/templates/instances/settings_tab.html:239 +#: instances/templates/instances/snapshots_tab.html:49 #: nwfilters/templates/nwfilter.html:104 nwfilters/templates/nwfilter.html:138 #: nwfilters/templates/nwfilters.html:60 secrets/templates/secrets.html:62 -#: storages/templates/storage.html:102 +#: storages/templates/storage.html:101 msgid "Action" msgstr "" -#: accounts/templates/account.html:81 -msgid "Edit privilegies for" +#: accounts/templates/account.html:50 +msgid "edit" msgstr "" -#: accounts/templates/account.html:91 accounts/templates/account.html:100 -#: accounts/templates/account.html:109 -msgid "False" +#: accounts/templates/account.html:68 accounts/templates/profile.html:74 +msgid "Key name" msgstr "" -#: accounts/templates/account.html:116 -#: accounts/templates/accounts-list.html:145 -#: accounts/templates/accounts.html:138 -#: accounts/templates/create_user_block.html:31 -#: accounts/templates/create_user_inst_block.html:29 -#: computes/templates/computes.html:101 computes/templates/computes.html:145 -#: computes/templates/computes.html:193 computes/templates/computes.html:223 -#: create/templates/create_flav_block.html:51 -#: create/templates/create_instance_w2.html:273 -#: instances/templates/add_instance_network_block.html:49 -#: instances/templates/add_instance_owner_block.html:29 -#: instances/templates/add_instance_volume.html:89 -#: instances/templates/add_instance_volume.html:144 -#: instances/templates/create_inst_block.html:34 -#: instances/templates/edit_instance_volume.html:123 -#: instances/templates/instance.html:993 -#: interfaces/templates/create_iface_block.html:135 -#: networks/templates/add_network_qos.html:50 -#: networks/templates/create_net_block.html:84 -#: networks/templates/modify_ipv4_fixed_address.html:44 -#: networks/templates/modify_ipv6_fixed_address.html:44 -#: nwfilters/templates/add_nwf_rule.html:25 -#: nwfilters/templates/create_nwfilter_block.html:23 -#: nwfilters/templates/nwfilters.html:83 nwfilters/templates/nwfilters.html:111 -#: secrets/templates/create_secret_block.html:54 -#: secrets/templates/secrets.html:102 -#: storages/templates/create_stg_block.html:55 -#: storages/templates/create_stg_block.html:84 -#: storages/templates/create_stg_block.html:140 -#: storages/templates/create_stg_block.html:202 -#: storages/templates/create_stg_block.html:230 -#: storages/templates/create_stg_vol_block.html:27 -#: storages/templates/create_stg_vol_block.html:81 -#: storages/templates/storage.html:156 -msgid "Close" -msgstr "" - -#: accounts/templates/account.html:117 accounts/templates/accounts-list.html:45 -#: accounts/templates/accounts-list.html:148 -#: accounts/templates/accounts.html:36 accounts/templates/accounts.html:141 -#: admin/templates/admin/common/list.html:16 -#: admin/templates/admin/group_list.html:44 -#: admin/templates/admin/user_list.html:61 computes/templates/computes.html:33 -#: networks/templates/network.html:85 nwfilters/templates/nwfilter.html:62 -#: secrets/templates/secrets.html:74 -msgid "Edit" -msgstr "" - -#: accounts/templates/account.html:127 accounts/templates/profile.html:84 -#: create/templates/create_instance_w2.html:291 -#: instances/templates/instance.html:581 instances/templates/instance.html:1004 -#: instances/templates/instance.html:1074 -#: instances/templates/instance.html:1079 -#: interfaces/templates/interface.html:61 -#: interfaces/templates/interface.html:63 networks/templates/network.html:53 -#: networks/templates/network.html:55 networks/templates/network.html:65 -#: networks/templates/network.html:139 networks/templates/network.html:192 -#: networks/templates/network.html:197 networks/templates/network.html:252 -#: networks/templates/network.html:301 networks/templates/network.html:306 -#: networks/templates/network.html:356 networks/templates/network.html:361 -#: nwfilters/templates/nwfilter.html:114 nwfilters/templates/nwfilter.html:154 -#: nwfilters/templates/nwfilters.html:123 secrets/templates/secrets.html:77 -#: storages/templates/storage.html:64 storages/templates/storage.html:67 -#: storages/templates/storage.html:79 storages/templates/storage.html:176 -msgid "Are you sure?" +#: accounts/templates/account.html:69 accounts/templates/profile.html:80 +msgid "Public key" msgstr "" #: accounts/templates/accounts-list.html:4 #: accounts/templates/accounts-list.html:13 accounts/templates/accounts.html:3 #: accounts/templates/accounts.html:9 admin/templates/admin/group_list.html:5 #: admin/templates/admin/user_list.html:6 -#: admin/templates/admin/user_list.html:16 admin/views.py:83 -#: instances/templates/instance.html:657 templates/navbar.html:29 +#: admin/templates/admin/user_list.html:16 admin/views.py:84 +#: instances/templates/instances/settings_tab.html:63 templates/navbar.html:29 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 +#: computes/templates/computes/instances.html:18 +#: instances/templates/allinstances.html:16 +#: nwfilters/templates/nwfilters.html:11 storages/templates/storage.html:88 +#: templates/search_block.html:3 msgid "Search" msgstr "" +#: accounts/templates/accounts-list.html:25 accounts/templates/accounts.html:21 +#: admin/templates/admin/group_list.html:24 admin/templates/admin/logs.html:22 +#: admin/templates/admin/user_list.html:25 +#: computes/templates/computes/instances.html:57 +#: computes/templates/computes/list.html:21 +#: instances/templates/create_instance_w2.html:71 +#: interfaces/templates/interfaces.html:47 networks/templates/networks.html:50 +#: nwfilters/templates/nwfilters.html:138 secrets/templates/secrets.html:50 +#: storages/templates/storage.html:188 storages/templates/storages.html:50 +msgid "Warning" +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" msgstr "" -#: accounts/templates/accounts-list.html:33 accounts/templates/profile.html:27 -#: admin/templates/admin/user_list.html:33 computes/templates/computes.html:79 -#: computes/templates/computes.html:127 computes/templates/computes.html:170 +#: accounts/templates/accounts-list.html:33 accounts/templates/profile.html:31 +#: admin/templates/admin/user_list.html:33 msgid "Username" msgstr "" #: accounts/templates/accounts-list.html:34 accounts/templates/accounts.html:44 -#: admin/templates/admin/user_list.html:34 computes/templates/computes.html:40 -#: instances/templates/allinstances.html:57 -#: instances/templates/allinstances_index_grouped.html:8 -#: instances/templates/allinstances_index_nongrouped.html:7 -#: instances/templates/instances.html:72 +#: admin/templates/admin/user_list.html:34 +#: computes/templates/computes/instances.html:68 +#: computes/templates/computes/list.html:30 +#: instances/templates/allinstances_index_grouped.html:9 +#: instances/templates/allinstances_index_nongrouped.html:9 msgid "Status" msgstr "" @@ -254,22 +207,33 @@ msgid "Superuser" msgstr "" #: accounts/templates/accounts-list.html:37 -#: instances/templates/instance.html:631 instances/templates/instance.html:1444 -#: instances/templates/instance.html:1446 -#: instances/templates/instance_actions.html:7 +#: instances/templates/instance_actions.html:6 +#: instances/templates/instances/settings_tab.html:37 +#: instances/templates/instances/settings_tab.html:783 +#: instances/templates/instances/settings_tab.html:785 #: nwfilters/templates/nwfilters.html:112 -#: nwfilters/templates/nwfilters.html:118 storages/templates/storage.html:157 -#: storages/templates/storage.html:164 +#: nwfilters/templates/nwfilters.html:118 storages/templates/storage.html:156 +#: storages/templates/storage.html:163 msgid "Clone" msgstr "" +#: accounts/templates/accounts-list.html:45 +#: accounts/templates/accounts-list.html:148 +#: accounts/templates/accounts.html:36 accounts/templates/accounts.html:141 +#: admin/templates/admin/common/list.html:16 +#: admin/templates/admin/group_list.html:44 +#: admin/templates/admin/user_list.html:61 +#: computes/templates/computes/list.html:54 networks/templates/network.html:85 +#: nwfilters/templates/nwfilter.html:62 secrets/templates/secrets.html:74 +msgid "Edit" +msgstr "" + #: accounts/templates/accounts-list.html:51 accounts/templates/accounts.html:48 #: admin/templates/admin/user_list.html:50 -#: instances/templates/allinstances.html:68 -#: instances/templates/allinstances_index_grouped.html:26 -#: instances/templates/allinstances_index_grouped.html:56 -#: instances/templates/allinstances_index_nongrouped.html:20 -#: instances/templates/instance.html:17 instances/templates/instances.html:85 +#: computes/templates/computes/instances.html:94 +#: instances/templates/allinstances_index_grouped.html:57 +#: instances/templates/allinstances_index_nongrouped.html:40 +#: instances/templates/instance.html:17 msgid "Active" msgstr "" @@ -284,22 +248,21 @@ msgstr "" #: accounts/templates/accounts-list.html:76 accounts/templates/accounts.html:69 #: accounts/templates/create_user_block.html:18 -#: computes/templates/computes.html:172 -#: create/templates/create_flav_block.html:19 -#: create/templates/create_instance_w2.html:81 -#: create/templates/create_instance_w2.html:107 -#: create/templates/create_instance_w2.html:110 -#: create/templates/create_instance_w2.html:309 -#: create/templates/create_instance_w2.html:311 -#: create/templates/create_instance_w2.html:522 -#: create/templates/create_instance_w2.html:524 +#: computes/templates/computes/instances.html:66 +#: computes/templates/computes/list.html:29 #: instances/templates/add_instance_volume.html:40 #: instances/templates/add_instance_volume.html:42 -#: instances/templates/allinstances.html:56 -#: instances/templates/allinstances_index_grouped.html:6 +#: instances/templates/allinstances_index_grouped.html:7 #: instances/templates/allinstances_index_nongrouped.html:5 -#: instances/templates/instance.html:554 instances/templates/instance.html:906 -#: instances/templates/instances.html:70 +#: instances/templates/create_instance_w2.html:82 +#: instances/templates/create_instance_w2.html:108 +#: instances/templates/create_instance_w2.html:111 +#: instances/templates/create_instance_w2.html:310 +#: instances/templates/create_instance_w2.html:312 +#: instances/templates/create_instance_w2.html:523 +#: instances/templates/create_instance_w2.html:525 +#: instances/templates/instances/settings_tab.html:340 +#: instances/templates/instances/snapshots_tab.html:47 #: interfaces/templates/create_iface_block.html:18 #: interfaces/templates/interface.html:76 #: networks/templates/create_net_block.html:18 @@ -314,21 +277,18 @@ msgstr "" #: storages/templates/create_stg_block.html:100 #: storages/templates/create_stg_block.html:165 #: storages/templates/create_stg_block.html:214 -#: storages/templates/create_stg_vol_block.html:20 -#: storages/templates/create_stg_vol_block.html:51 -#: storages/templates/create_stg_vol_block.html:53 -#: storages/templates/storage.html:98 storages/templates/storage.html:126 -#: storages/templates/storage.html:128 +#: storages/templates/create_stg_vol_block.html:21 +#: storages/templates/storage.html:97 storages/templates/storage.html:125 +#: storages/templates/storage.html:127 msgid "Name" msgstr "" #: accounts/templates/accounts-list.html:83 accounts/templates/accounts.html:76 #: accounts/templates/create_user_block.html:24 -#: accounts/templates/login.html:19 computes/templates/computes.html:85 -#: computes/templates/computes.html:176 -#: console/templates/console-spice-full.html:200 -#: instances/templates/instance.html:1293 -#: instances/templates/instance.html:1300 +#: accounts/templates/login.html:19 +#: console/templates/console-spice-full.html:201 +#: console/templates/console-spice-lite.html:58 +#: console/templates/console-spice-lite.html:99 msgid "Password" msgstr "" @@ -341,7 +301,7 @@ msgid "Is superuser" msgstr "" #: accounts/templates/accounts-list.html:101 -#: accounts/templates/accounts.html:94 instances/models.py:25 +#: accounts/templates/accounts.html:94 msgid "Can clone instances" msgstr "" @@ -375,6 +335,63 @@ msgstr "" msgid "Unblock" msgstr "" +#: accounts/templates/accounts-list.html:145 +#: accounts/templates/accounts.html:138 +#: accounts/templates/create_user_block.html:31 +#: instances/templates/add_instance_network_block.html:49 +#: instances/templates/add_instance_owner_block.html:30 +#: instances/templates/add_instance_volume.html:89 +#: instances/templates/add_instance_volume.html:144 +#: instances/templates/create_flav_block.html:25 +#: instances/templates/create_inst_block.html:34 +#: instances/templates/create_instance_w2.html:274 +#: instances/templates/edit_instance_volume.html:123 +#: instances/templates/instances/settings_tab.html:427 +#: interfaces/templates/create_iface_block.html:135 +#: networks/templates/add_network_qos.html:50 +#: networks/templates/create_net_block.html:84 +#: networks/templates/modify_ipv4_fixed_address.html:44 +#: networks/templates/modify_ipv6_fixed_address.html:44 +#: nwfilters/templates/add_nwf_rule.html:25 +#: nwfilters/templates/create_nwfilter_block.html:23 +#: nwfilters/templates/nwfilters.html:83 nwfilters/templates/nwfilters.html:111 +#: secrets/templates/create_secret_block.html:54 +#: secrets/templates/secrets.html:102 +#: storages/templates/create_stg_block.html:55 +#: storages/templates/create_stg_block.html:84 +#: storages/templates/create_stg_block.html:140 +#: storages/templates/create_stg_block.html:202 +#: storages/templates/create_stg_block.html:230 +#: storages/templates/create_stg_vol_block.html:28 +#: storages/templates/create_stg_vol_block.html:56 +#: storages/templates/storage.html:155 +msgid "Close" +msgstr "" + +#: accounts/templates/accounts/change_password_form.html:7 +#: accounts/templates/accounts/change_password_form.html:12 +#: accounts/templates/profile.html:21 +msgid "Change Password" +msgstr "" + +#: accounts/templates/accounts/change_password_form.html:22 +#: admin/templates/admin/user_form.html:22 +#: computes/templates/computes/form.html:21 +#: templates/common/confirm_delete.html:14 templates/common/form.html:20 +msgid "Cancel" +msgstr "" + +#: accounts/templates/accounts/change_password_form.html:24 +#: accounts/templates/profile.html:44 +#: instances/templates/instances/settings_tab.html:633 +#: instances/templates/instances/settings_tab.html:637 +#: instances/templates/instances/settings_tab.html:819 +#: instances/templates/instances/settings_tab.html:821 +#: venv/lib/python3.6/site-packages/django/forms/widgets.py:397 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:379 +msgid "Change" +msgstr "" + #: accounts/templates/create_user_block.html:13 msgid "Add New User" msgstr "" @@ -384,13 +401,13 @@ msgid "john" msgstr "" #: accounts/templates/create_user_block.html:32 -#: create/templates/create_instance_w1.html:93 -#: create/templates/create_instance_w2.html:275 -#: create/templates/create_instance_w2.html:277 -#: create/templates/create_instance_w2.html:504 -#: create/templates/create_instance_w2.html:508 -#: create/templates/create_instance_w2.html:717 -#: create/templates/create_instance_w2.html:721 +#: instances/templates/create_instance_w1.html:95 +#: instances/templates/create_instance_w2.html:276 +#: instances/templates/create_instance_w2.html:278 +#: instances/templates/create_instance_w2.html:505 +#: instances/templates/create_instance_w2.html:509 +#: instances/templates/create_instance_w2.html:718 +#: instances/templates/create_instance_w2.html:722 #: interfaces/templates/create_iface_block.html:138 #: networks/templates/create_net_block.html:85 #: networks/templates/modify_ipv4_fixed_address.html:45 @@ -403,29 +420,10 @@ msgstr "" #: storages/templates/create_stg_block.html:148 #: storages/templates/create_stg_block.html:205 #: storages/templates/create_stg_block.html:233 -#: storages/templates/create_stg_vol_block.html:82 +#: storages/templates/create_stg_vol_block.html:57 msgid "Create" msgstr "" -#: accounts/templates/create_user_inst_block.html:12 -msgid "Add Instance for User" -msgstr "" - -#: accounts/templates/create_user_inst_block.html:18 -#: console/templates/console-spice-full.html:198 -#: instances/templates/allinstances_index_nongrouped.html:6 -msgid "Host" -msgstr "" - -#: accounts/templates/create_user_inst_block.html:30 -#: accounts/templates/profile.html:111 -#: create/templates/create_flav_block.html:54 -#: instances/templates/add_instance_network_block.html:50 -#: instances/templates/add_instance_owner_block.html:30 -#: nwfilters/templates/add_nwf_rule.html:26 -msgid "Add" -msgstr "" - #: accounts/templates/login.html:3 accounts/templates/logout.html:4 msgid "WebVirtCloud" msgstr "" @@ -439,7 +437,7 @@ msgstr "" msgid "Incorrect username or password." msgstr "" -#: accounts/templates/login.html:18 accounts/templates/profile.html:21 +#: accounts/templates/login.html:18 accounts/templates/profile.html:25 msgid "Login" msgstr "" @@ -451,72 +449,86 @@ msgstr "" msgid "Successful log out" msgstr "" -#: accounts/templates/profile.html:4 accounts/templates/profile.html:9 +#: accounts/templates/profile.html:5 accounts/templates/profile.html:10 #: templates/navbar.html:45 msgid "Profile" msgstr "" -#: accounts/templates/profile.html:18 +#: accounts/templates/profile.html:19 msgid "Edit Profile" msgstr "" -#: accounts/templates/profile.html:33 +#: accounts/templates/profile.html:37 msgid "Email" msgstr "" -#: accounts/templates/profile.html:40 accounts/templates/profile.html:67 -#: computes/templates/computes.html:104 computes/templates/computes.html:148 -#: computes/templates/computes.html:196 computes/templates/computes.html:225 -#: instances/templates/instance.html:1190 -#: instances/templates/instance.html:1194 -#: instances/templates/instance.html:1480 -#: instances/templates/instance.html:1482 -#: venv/lib/python3.6/site-packages/django/forms/widgets.py:397 -msgid "Change" -msgstr "" - -#: accounts/templates/profile.html:45 -msgid "Edit Password" -msgstr "" - #: accounts/templates/profile.html:48 -msgid "Old" -msgstr "" - -#: accounts/templates/profile.html:54 -msgid "New" -msgstr "" - -#: accounts/templates/profile.html:60 -msgid "Retry" -msgstr "" - -#: accounts/templates/profile.html:72 instances/templates/instance.html:266 +#: instances/templates/instances/access_tab.html:23 msgid "SSH Keys" msgstr "" -#: accounts/templates/profile.html:100 +#: accounts/templates/profile.html:60 +#: instances/templates/create_instance_w2.html:292 +#: instances/templates/instances/settings_tab.html:438 +#: instances/templates/instances/settings_tab.html:510 +#: instances/templates/instances/settings_tab.html:520 +#: instances/templates/instances/snapshots_tab.html:75 +#: interfaces/templates/interface.html:61 +#: interfaces/templates/interface.html:63 networks/templates/network.html:53 +#: networks/templates/network.html:55 networks/templates/network.html:65 +#: networks/templates/network.html:139 networks/templates/network.html:192 +#: networks/templates/network.html:197 networks/templates/network.html:252 +#: networks/templates/network.html:301 networks/templates/network.html:306 +#: networks/templates/network.html:356 networks/templates/network.html:361 +#: nwfilters/templates/nwfilter.html:114 nwfilters/templates/nwfilter.html:154 +#: nwfilters/templates/nwfilters.html:123 secrets/templates/secrets.html:77 +#: storages/templates/storage.html:63 storages/templates/storage.html:66 +#: storages/templates/storage.html:78 storages/templates/storage.html:175 +msgid "Are you sure?" +msgstr "" + +#: accounts/templates/profile.html:76 msgid "Enter Name" msgstr "" -#: accounts/templates/profile.html:106 +#: accounts/templates/profile.html:82 msgid "Enter Public Key" msgstr "" -#: accounts/views.py:52 +#: accounts/templates/profile.html:87 +#: instances/templates/add_instance_network_block.html:50 +#: instances/templates/add_instance_owner_block.html:31 +#: instances/templates/create_flav_block.html:28 +#: nwfilters/templates/add_nwf_rule.html:26 +msgid "Add" +msgstr "" + +#: accounts/views.py:39 msgid "Key name already exist" msgstr "" -#: accounts/views.py:55 +#: accounts/views.py:42 msgid "Public key already exist" msgstr "" -#: accounts/views.py:58 +#: accounts/views.py:45 msgid "Invalid characters in public key" msgstr "" -#: accounts/views.py:112 -msgid "Instance already added" +#: accounts/views.py:77 +msgid "Password Changed" +msgstr "" + +#: accounts/views.py:80 +msgid "Wrong Data Provided" +msgstr "" + +#: accounts/views.py:100 +msgid "Create User Instance" +msgstr "" + +#: accounts/views.py:118 +msgid "Update User Instance" msgstr "" #: admin/forms.py:46 @@ -528,25 +540,6 @@ msgstr "" msgid "Groups" msgstr "" -#: admin/templates/admin/common/confirm_delete.html:12 -msgid "Are you sure you want to delete" -msgstr "" - -#: admin/templates/admin/common/confirm_delete.html:14 -#: admin/templates/admin/common/form.html:22 -#: admin/templates/admin/user_form.html:22 -#: computes/templates/computes/form.html:22 -msgid "Cancel" -msgstr "" - -#: admin/templates/admin/common/form.html:24 -#: admin/templates/admin/user_form.html:24 -#: computes/templates/computes/form.html:24 -#: instances/templates/edit_instance_volume.html:124 -#: networks/templates/add_network_qos.html:51 -msgid "Save" -msgstr "" - #: admin/templates/admin/common/list.html:9 msgid "Create New" msgstr "" @@ -561,33 +554,53 @@ 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 -#: instances/templates/instance.html:909 instances/templates/instance.html:1051 -#: instances/templates/instances.html:75 networks/templates/network.html:178 -#: networks/templates/network.html:287 networks/templates/network.html:335 +#: computes/templates/computes/instances.html:71 +#: computes/templates/computes/list.html:32 +#: instances/templates/allinstances_index_grouped.html:12 +#: instances/templates/allinstances_index_nongrouped.html:12 +#: instances/templates/instances/settings_tab.html:343 +#: instances/templates/instances/settings_tab.html:486 +#: networks/templates/network.html:178 networks/templates/network.html:287 +#: networks/templates/network.html:335 msgid "Actions" msgstr "" -#: admin/templates/admin/logs.html:3 admin/templates/admin/logs.html:8 -#: instances/templates/instance.html:1577 templates/navbar.html:31 +#: admin/templates/admin/logs.html:4 admin/templates/admin/logs.html:9 +#: instances/templates/instances/stats_tab.html:13 templates/navbar.html:31 msgid "Logs" msgstr "" -#: admin/templates/admin/logs.html:21 +#: admin/templates/admin/logs.html:22 msgid "You don't have any Logs" msgstr "" -#: admin/templates/admin/logs.html:31 instances/templates/instance.html:555 -#: instances/templates/instance.html:1643 +#: admin/templates/admin/logs.html:32 +#: instances/templates/instances/snapshots_tab.html:48 +#: instances/templates/instances/stats_tab.html:83 msgid "Date" msgstr "" -#: admin/templates/admin/logs.html:34 instances/templates/instance.html:1645 +#: admin/templates/admin/logs.html:33 admin/templates/admin/user_form.html:6 +#: computes/templates/computes/instances.html:67 +#: instances/templates/add_instance_owner_block.html:18 +#: instances/templates/allinstances_index_grouped.html:8 +#: instances/templates/allinstances_index_nongrouped.html:7 +#: instances/templates/instances/stats_tab.html:84 +msgid "User" +msgstr "" + +#: admin/templates/admin/logs.html:35 +#: instances/templates/instances/stats_tab.html:85 msgid "Message" msgstr "" +#: admin/templates/admin/user_form.html:24 +#: computes/templates/computes/form.html:23 +#: instances/templates/edit_instance_volume.html:124 +#: networks/templates/add_network_qos.html:51 templates/common/form.html:22 +msgid "Save" +msgstr "" + #: admin/templates/admin/user_list.html:37 msgid "Can Clone" msgstr "" @@ -596,19 +609,19 @@ msgstr "" msgid "View Profile" msgstr "" -#: admin/views.py:38 +#: admin/views.py:39 msgid "Create Group" msgstr "" -#: admin/views.py:56 +#: admin/views.py:57 msgid "Update Group" msgstr "" -#: admin/views.py:108 +#: admin/views.py:110 msgid "Create User" msgstr "" -#: admin/views.py:130 +#: admin/views.py:132 msgid "Update User" msgstr "" @@ -820,24 +833,76 @@ msgstr "" msgid "Show access ssh keys" msgstr "" +#: appsettings/migrations/0004_auto_20200716_0637.py:11 +msgid "Console Scale" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:11 +msgid "Allow console to scaling view" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:12 +msgid "Console View-Only" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:12 +msgid "Allow only view not modify" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:13 +msgid "Console Resize Session" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:13 +msgid "Allow to resize session for console" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:14 +msgid "Console Clip Viewport" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:14 +msgid "Clip console viewport" +msgstr "" + +#: appsettings/models.py:9 computes/models.py:11 instances/models.py:27 +msgid "name" +msgstr "" + +#: appsettings/models.py:10 +msgid "key" +msgstr "" + +#: appsettings/models.py:11 +msgid "value" +msgstr "" + +#: appsettings/models.py:12 +msgid "choices" +msgstr "" + +#: appsettings/models.py:13 +msgid "description" +msgstr "" + #: appsettings/templates/appsettings.html:3 #: appsettings/templates/appsettings.html:8 msgid "Edit Settings" msgstr "" -#: appsettings/templates/appsettings.html:18 +#: appsettings/templates/appsettings.html:17 msgid "App Settings" msgstr "" -#: appsettings/templates/appsettings.html:22 templates/navbar.html:43 +#: appsettings/templates/appsettings.html:21 templates/navbar.html:43 msgid "Language" msgstr "" -#: appsettings/templates/appsettings.html:55 +#: appsettings/templates/appsettings.html:54 msgid "After change please full refresh page with 'Ctrl + F5' " msgstr "" -#: appsettings/templates/appsettings.html:60 +#: appsettings/templates/appsettings.html:59 msgid "Other Settings" msgstr "" @@ -860,84 +925,20 @@ msgstr "" msgid "FQDN/IP" msgstr "" -#: computes/forms.py:47 -msgid "No hostname has been entered" +#: computes/models.py:12 +msgid "hostname" msgstr "" -#: computes/forms.py:48 -msgid "No IP / Domain name has been entered" +#: computes/models.py:13 +msgid "login" msgstr "" -#: computes/forms.py:49 -msgid "No login has been entered" +#: computes/models.py:14 +msgid "password" msgstr "" -#: computes/forms.py:57 -msgid "The name of the host must not contain any special characters" -msgstr "" - -#: computes/forms.py:59 -msgid "The name of the host must not exceed 20 characters" -msgstr "" - -#: computes/forms.py:67 computes/validators.py:16 -msgid "" -"Hostname must contain only numbers, or the domain name separated by \".\"" -msgstr "" - -#: computes/forms.py:69 computes/validators.py:18 -msgid "Wrong IP address" -msgstr "" - -#: computes/templates/computes.html:3 computes/templates/computes.html:9 -#: templates/navbar.html:18 -msgid "Computes" -msgstr "" - -#: computes/templates/computes.html:42 instances/templates/instance.html:1537 -msgid "Connected" -msgstr "" - -#: computes/templates/computes.html:44 -msgid "Not Connected" -msgstr "" - -#: computes/templates/computes.html:46 computes/templates/computes.html:91 -#: 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 "" - -#: computes/templates/computes.html:50 -msgid "No details available" -msgstr "" - -#: computes/templates/computes.html:59 -msgid "Edit connection" -msgstr "" - -#: computes/templates/computes.html:66 computes/templates/computes.html:114 -#: computes/templates/computes.html:157 computes/templates/computes.html:205 -msgid "Label" -msgstr "" - -#: computes/templates/computes.html:73 computes/templates/computes.html:121 -#: computes/templates/computes.html:164 -msgid "FQDN / IP" -msgstr "" - -#: computes/templates/computes.html:112 -msgid "" -"Need create ssh authorization key. If you have another SSH port on " -"your server, you can add IP:PORT like '192.168.1.1:2222'." -msgstr "" - -#: computes/templates/computes.html:241 -msgid "Hypervisor doesn't have any Computes" +#: computes/models.py:15 +msgid "details" msgstr "" #: computes/templates/computes/form.html:6 @@ -948,6 +949,137 @@ msgstr "" msgid "Create Compute" msgstr "" +#: computes/templates/computes/instances.html:29 +#: computes/templates/computes/list.html:50 +#: computes/templates/computes/list.html:52 computes/templates/overview.html:4 +#: computes/templates/overview.html:13 interfaces/templates/interface.html:11 +#: interfaces/templates/interfaces.html:14 networks/templates/network.html:13 +#: networks/templates/networks.html:17 nwfilters/templates/nwfilter.html:12 +#: nwfilters/templates/nwfilters.html:21 secrets/templates/secrets.html:17 +#: storages/templates/storage.html:17 storages/templates/storages.html:17 +msgid "Overview" +msgstr "" + +#: computes/templates/computes/instances.html:35 +#: computes/templates/overview.html:19 interfaces/templates/interface.html:17 +#: interfaces/templates/interfaces.html:20 networks/templates/network.html:19 +#: networks/templates/networks.html:23 nwfilters/templates/nwfilter.html:18 +#: nwfilters/templates/nwfilters.html:27 secrets/templates/secrets.html:23 +#: storages/templates/storage.html:23 storages/templates/storages.html:3 +#: storages/templates/storages.html:9 storages/templates/storages.html:23 +msgid "Storages" +msgstr "" + +#: computes/templates/computes/instances.html:38 +#: computes/templates/overview.html:22 interfaces/templates/interface.html:20 +#: interfaces/templates/interfaces.html:23 networks/templates/network.html:22 +#: networks/templates/networks.html:3 networks/templates/networks.html:9 +#: networks/templates/networks.html:26 nwfilters/templates/nwfilter.html:21 +#: nwfilters/templates/nwfilters.html:30 secrets/templates/secrets.html:26 +#: storages/templates/storage.html:26 storages/templates/storages.html:26 +msgid "Networks" +msgstr "" + +#: computes/templates/computes/instances.html:41 +#: computes/templates/overview.html:25 interfaces/templates/interface.html:23 +#: interfaces/templates/interfaces.html:4 +#: interfaces/templates/interfaces.html:26 networks/templates/network.html:25 +#: networks/templates/networks.html:29 nwfilters/templates/nwfilter.html:24 +#: nwfilters/templates/nwfilters.html:33 secrets/templates/secrets.html:29 +#: storages/templates/storage.html:29 storages/templates/storages.html:29 +msgid "Interfaces" +msgstr "" + +#: computes/templates/computes/instances.html:44 +#: computes/templates/overview.html:28 interfaces/templates/interface.html:26 +#: interfaces/templates/interfaces.html:29 networks/templates/network.html:28 +#: networks/templates/networks.html:32 nwfilters/templates/nwfilter.html:4 +#: nwfilters/templates/nwfilter.html:27 nwfilters/templates/nwfilters.html:4 +#: nwfilters/templates/nwfilters.html:13 nwfilters/templates/nwfilters.html:36 +#: secrets/templates/secrets.html:32 storages/templates/storage.html:32 +#: storages/templates/storages.html:32 +msgid "NWFilters" +msgstr "" + +#: computes/templates/computes/instances.html:47 +#: computes/templates/overview.html:31 interfaces/templates/interface.html:29 +#: interfaces/templates/interfaces.html:32 networks/templates/network.html:31 +#: networks/templates/networks.html:35 nwfilters/templates/nwfilter.html:30 +#: nwfilters/templates/nwfilters.html:39 secrets/templates/secrets.html:4 +#: secrets/templates/secrets.html:13 secrets/templates/secrets.html:35 +#: storages/templates/create_stg_block.html:124 +#: storages/templates/storage.html:35 storages/templates/storages.html:35 +msgid "Secrets" +msgstr "" + +#: computes/templates/computes/instances.html:58 +msgid "Hypervisor doesn't have any Instances" +msgstr "" + +#: computes/templates/computes/instances.html:66 +#: instances/templates/allinstances_index_grouped.html:7 +#: instances/templates/allinstances_index_nongrouped.html:5 +#: instances/templates/instances/settings_tab.html:777 +#: instances/templates/instances/settings_tab.html:800 +msgid "Description" +msgstr "" + +#: computes/templates/computes/instances.html:69 +#: instances/templates/allinstances_index_grouped.html:10 +#: instances/templates/allinstances_index_nongrouped.html:10 +#: instances/templates/create_instance_w2.html:83 +#: instances/templates/create_instance_w2.html:328 +#: instances/templates/create_instance_w2.html:541 +#: instances/templates/instance.html:40 instances/templates/instance.html:42 +msgid "VCPU" +msgstr "" + +#: computes/templates/computes/instances.html:70 +#: computes/templates/overview.html:82 +#: instances/templates/allinstances_index_grouped.html:11 +#: instances/templates/allinstances_index_nongrouped.html:11 +#: instances/templates/instances/resize_tab.html:13 +msgid "Memory" +msgstr "" + +#: computes/templates/computes/instances.html:96 +#: instances/templates/allinstances_index_grouped.html:58 +#: instances/templates/allinstances_index_nongrouped.html:42 +#: instances/templates/instance.html:14 +msgid "Off" +msgstr "" + +#: computes/templates/computes/instances.html:98 +#: instances/templates/allinstances_index_grouped.html:60 +#: instances/templates/allinstances_index_nongrouped.html:44 +msgid "Suspended" +msgstr "" + +#: computes/templates/computes/list.html:6 +#: computes/templates/computes/list.html:12 templates/navbar.html:18 +msgid "Computes" +msgstr "" + +#: computes/templates/computes/list.html:21 +msgid "You don't have any computes" +msgstr "" + +#: computes/templates/computes/list.html:31 computes/templates/overview.html:92 +#: instances/templates/instances/settings_tab.html:163 +#: instances/templates/instances/settings_tab.html:248 +msgid "Details" +msgstr "" + +#: computes/templates/computes/list.html:42 +#: instances/templates/allinstances_index_grouped.html:28 +#: instances/templates/instances/settings_tab.html:876 +msgid "Connected" +msgstr "" + +#: computes/templates/computes/list.html:42 +msgid "Not Connected" +msgstr "" + #: computes/templates/create_comp_block.html:5 msgid "TCP" msgstr "" @@ -968,79 +1100,6 @@ msgstr "" msgid "Add new host" msgstr "" -#: computes/templates/overview.html:4 computes/templates/overview.html:13 -#: instances/templates/instances.html:30 interfaces/templates/interface.html:11 -#: interfaces/templates/interfaces.html:14 networks/templates/network.html:13 -#: networks/templates/networks.html:17 nwfilters/templates/nwfilter.html:12 -#: nwfilters/templates/nwfilters.html:21 secrets/templates/secrets.html:17 -#: storages/templates/storage.html:17 storages/templates/storages.html:17 -msgid "Overview" -msgstr "" - -#: computes/templates/overview.html:16 instances/templates/allinstances.html:4 -#: instances/templates/allinstances.html:20 -#: instances/templates/bottom_bar.html:17 instances/templates/instances.html:4 -#: instances/templates/instances.html:33 interfaces/templates/interface.html:14 -#: interfaces/templates/interfaces.html:17 networks/templates/network.html:16 -#: networks/templates/networks.html:20 nwfilters/templates/nwfilter.html:15 -#: nwfilters/templates/nwfilters.html:24 secrets/templates/secrets.html:20 -#: storages/templates/storage.html:20 storages/templates/storages.html:20 -#: templates/navbar.html:14 -msgid "Instances" -msgstr "" - -#: computes/templates/overview.html:19 instances/templates/instances.html:36 -#: interfaces/templates/interface.html:17 -#: interfaces/templates/interfaces.html:20 networks/templates/network.html:19 -#: networks/templates/networks.html:23 nwfilters/templates/nwfilter.html:18 -#: nwfilters/templates/nwfilters.html:27 secrets/templates/secrets.html:23 -#: storages/templates/storage.html:23 storages/templates/storages.html:3 -#: storages/templates/storages.html:9 storages/templates/storages.html:23 -msgid "Storages" -msgstr "" - -#: computes/templates/overview.html:22 instances/templates/instances.html:39 -#: interfaces/templates/interface.html:20 -#: interfaces/templates/interfaces.html:23 networks/templates/network.html:22 -#: networks/templates/networks.html:3 networks/templates/networks.html:9 -#: networks/templates/networks.html:26 nwfilters/templates/nwfilter.html:21 -#: nwfilters/templates/nwfilters.html:30 secrets/templates/secrets.html:26 -#: storages/templates/storage.html:26 storages/templates/storages.html:26 -msgid "Networks" -msgstr "" - -#: computes/templates/overview.html:25 instances/templates/instances.html:42 -#: interfaces/templates/interface.html:23 -#: interfaces/templates/interfaces.html:4 -#: interfaces/templates/interfaces.html:26 networks/templates/network.html:25 -#: networks/templates/networks.html:29 nwfilters/templates/nwfilter.html:24 -#: nwfilters/templates/nwfilters.html:33 secrets/templates/secrets.html:29 -#: storages/templates/storage.html:29 storages/templates/storages.html:29 -msgid "Interfaces" -msgstr "" - -#: computes/templates/overview.html:28 instances/templates/instances.html:45 -#: interfaces/templates/interface.html:26 -#: interfaces/templates/interfaces.html:29 networks/templates/network.html:28 -#: networks/templates/networks.html:32 nwfilters/templates/nwfilter.html:4 -#: nwfilters/templates/nwfilter.html:27 nwfilters/templates/nwfilters.html:4 -#: nwfilters/templates/nwfilters.html:13 nwfilters/templates/nwfilters.html:36 -#: secrets/templates/secrets.html:32 storages/templates/storage.html:32 -#: storages/templates/storages.html:32 -msgid "NWFilters" -msgstr "" - -#: computes/templates/overview.html:31 instances/templates/instances.html:48 -#: interfaces/templates/interface.html:29 -#: interfaces/templates/interfaces.html:32 networks/templates/network.html:31 -#: networks/templates/networks.html:35 nwfilters/templates/nwfilter.html:30 -#: nwfilters/templates/nwfilters.html:39 secrets/templates/secrets.html:4 -#: secrets/templates/secrets.html:13 secrets/templates/secrets.html:35 -#: storages/templates/create_stg_block.html:124 -#: storages/templates/storage.html:35 storages/templates/storages.html:35 -msgid "Secrets" -msgstr "" - #: computes/templates/overview.html:42 msgid "Basic details" msgstr "" @@ -1074,16 +1133,9 @@ msgstr "" msgid "Libvirt" msgstr "" -#: computes/templates/overview.html:82 instances/templates/allinstances.html:59 -#: instances/templates/allinstances_index_grouped.html:10 -#: instances/templates/allinstances_index_nongrouped.html:9 -#: instances/templates/instance.html:369 instances/templates/instances.html:74 -msgid "Memory" -msgstr "" - #: computes/templates/overview.html:84 -#: create/templates/create_instance_w1.html:40 -#: create/templates/create_instance_w1.html:56 +#: instances/templates/create_instance_w1.html:42 +#: instances/templates/create_instance_w1.html:58 msgid "Architecture" msgstr "" @@ -1112,270 +1164,153 @@ msgstr "" msgid "RAM Utilization" msgstr "" +#: computes/validators.py:16 +msgid "" +"Hostname must contain only numbers, or the domain name separated by \".\"" +msgstr "" + +#: computes/validators.py:18 +msgid "Wrong IP address" +msgstr "" + #: computes/validators.py:24 msgid "The hostname must not contain any special characters" msgstr "" -#: console/templates/console-base.html:69 +#: console/templates/console-base.html:51 msgid "Send key(s)" msgstr "" -#: console/templates/console-base.html:89 +#: console/templates/console-base.html:71 msgid "Fullscreen" msgstr "" +#: console/templates/console-spice-full.html:56 +msgid "must set host and port" +msgstr "" + +#: console/templates/console-spice-full.html:83 +#: console/templates/console-spice-full.html:97 +#: console/templates/console-spice-lite.html:138 +#: console/templates/console-spice-lite.html:150 +msgid "disconnect" +msgstr "" + +#: console/templates/console-spice-full.html:114 +#: console/templates/console-spice-lite.html:167 +msgid "File API is not supported" +msgstr "" + +#: console/templates/console-spice-full.html:197 +#: instances/templates/allinstances_index_nongrouped.html:7 +msgid "Host" +msgstr "" + #: console/templates/console-spice-full.html:199 msgid "Port" msgstr "" -#: console/templates/console-spice-full.html:201 +#: console/templates/console-spice-full.html:207 msgid "Show console" msgstr "" -#: console/templates/console-spice-full.html:202 +#: console/templates/console-spice-full.html:209 #: interfaces/templates/interface.html:60 networks/templates/network.html:52 #: networks/templates/network.html:122 networks/templates/network.html:128 #: networks/templates/network.html:234 networks/templates/network.html:240 -#: storages/templates/storage.html:62 +#: storages/templates/storage.html:61 msgid "Start" msgstr "" -#: console/templates/console-vnc-full.html:83 +#: console/templates/console-spice-lite.html:109 +msgid "must specify host and port in URL" +msgstr "" + +#: console/templates/console-vnc-full.html:78 msgid "noVNC encountered an error" msgstr "" -#: console/templates/console-vnc-lite.html:297 +#: console/templates/console-vnc-lite.html:222 msgid "Loading" msgstr "" -#: create/forms.py:10 -msgid "No flavor name has been entered" -msgstr "" - -#: create/forms.py:13 create/forms.py:37 -msgid "No VCPU has been entered" -msgstr "" - -#: create/forms.py:15 -msgid "No HDD image has been entered" -msgstr "" - -#: create/forms.py:17 create/forms.py:40 -msgid "No RAM size has been entered" -msgstr "" - -#: create/forms.py:34 +#: instances/forms.py:37 msgid "No Virtual Machine name has been entered" msgstr "" -#: create/forms.py:41 +#: instances/forms.py:39 +msgid "No VCPU has been entered" +msgstr "" + +#: instances/forms.py:42 +msgid "No RAM size has been entered" +msgstr "" + +#: instances/forms.py:43 msgid "No Network pool has been choosen" msgstr "" -#: create/forms.py:46 +#: instances/forms.py:48 msgid "Please select HDD cache mode" msgstr "" -#: create/forms.py:53 +#: instances/forms.py:55 msgid "Please select a graphics type" msgstr "" -#: create/forms.py:54 +#: instances/forms.py:56 msgid "Please select a video driver" msgstr "" -#: create/forms.py:61 +#: instances/forms.py:63 msgid "The name of the virtual machine must not contain any special characters" msgstr "" -#: create/forms.py:63 +#: instances/forms.py:65 msgid "The name of the virtual machine must not exceed 20 characters" msgstr "" -#: create/templates/create_flav_block.html:13 -msgid "Add New Flavor" +#: instances/models.py:11 +msgid "label" msgstr "" -#: create/templates/create_flav_block.html:21 -msgid "Micro" +#: instances/models.py:12 +msgid "memory" msgstr "" -#: create/templates/create_flav_block.html:26 -#: create/templates/create_instance_w2.html:82 -#: create/templates/create_instance_w2.html:327 -#: create/templates/create_instance_w2.html:540 -#: instances/templates/allinstances.html:58 -#: instances/templates/allinstances_index_grouped.html:9 -#: instances/templates/allinstances_index_nongrouped.html:8 -#: instances/templates/instance.html:40 instances/templates/instance.html:42 -#: instances/templates/instances.html:73 -msgid "VCPU" +#: instances/models.py:13 +msgid "vcpu" msgstr "" -#: create/templates/create_flav_block.html:33 -#: create/templates/create_instance_w2.html:83 -#: create/templates/create_instance_w2.html:356 -#: create/templates/create_instance_w2.html:567 -#: instances/templates/instance.html:45 -msgid "RAM" +#: instances/models.py:14 +msgid "disk" msgstr "" -#: create/templates/create_flav_block.html:38 -#: create/templates/create_instance_w2.html:94 -#: create/templates/create_instance_w2.html:360 -#: create/templates/create_instance_w2.html:571 -#: instances/templates/allinstances.html:78 -#: instances/templates/instance.html:45 instances/templates/instance.html:450 -#: instances/templates/instance.html:463 -msgid "MB" +#: instances/models.py:28 +msgid "uuid" msgstr "" -#: create/templates/create_flav_block.html:41 -#: create/templates/create_instance_w2.html:84 -#: create/templates/create_instance_w2.html:371 -msgid "HDD" +#: instances/models.py:29 +msgid "is template" msgstr "" -#: create/templates/create_flav_block.html:46 -#: create/templates/create_instance_w2.html:95 -#: instances/templates/add_instance_volume.html:60 -#: storages/templates/create_stg_vol_block.html:71 -msgid "GB" +#: instances/models.py:30 +msgid "created" msgstr "" -#: create/templates/create_instance_w1.html:4 -#: create/templates/create_instance_w2.html:4 -msgid "Create new instance" +#: instances/models.py:215 +msgid "Can access console without password" msgstr "" -#: create/templates/create_instance_w1.html:4 -msgid "Select Type" +#: instances/templates/add_instance_network_block.html:12 +msgid "Add Instance Network" msgstr "" -#: create/templates/create_instance_w1.html:10 -#: create/templates/create_instance_w2.html:13 -msgid "New instance on" -msgstr "" - -#: create/templates/create_instance_w1.html:45 -#: instances/templates/instance.html:643 networks/templates/network.html:75 -#: nwfilters/templates/nwfilter.html:52 -msgid "XML" -msgstr "" - -#: create/templates/create_instance_w1.html:66 -msgid "Chipset" -msgstr "" - -#: create/templates/create_instance_w1.html:76 -msgid "Next" -msgstr "" - -#: create/templates/create_instance_w2.html:49 -msgid "Flavor" -msgstr "" - -#: create/templates/create_instance_w2.html:54 -msgid "Custom" -msgstr "" - -#: create/templates/create_instance_w2.html:59 -msgid "Template" -msgstr "" - -#: create/templates/create_instance_w2.html:70 -msgid "Hypervisor doesn't have any Flavors" -msgstr "" - -#: create/templates/create_instance_w2.html:75 -msgid "Create from flavor" -msgstr "" - -#: create/templates/create_instance_w2.html:101 -msgid "Create Virtual Machine" -msgstr "" - -#: create/templates/create_instance_w2.html:119 -#: create/templates/create_instance_w2.html:316 -#: create/templates/create_instance_w2.html:529 -msgid "Firmware" -msgstr "" - -#: create/templates/create_instance_w2.html:131 -#: create/templates/create_instance_w2.html:334 -#: create/templates/create_instance_w2.html:546 -msgid "VCPU Config" -msgstr "" - -#: create/templates/create_instance_w2.html:134 -#: create/templates/create_instance_w2.html:337 -#: create/templates/create_instance_w2.html:549 -msgid "no-mode" -msgstr "" - -#: create/templates/create_instance_w2.html:153 -#: create/templates/create_instance_w2.html:595 -#: instances/templates/add_instance_volume.html:30 -#: instances/templates/add_instance_volume.html:100 -#: instances/templates/instance.html:829 storages/templates/storage.html:4 -#: storages/templates/storage.html:14 -msgid "Storage" -msgstr "" - -#: create/templates/create_instance_w2.html:162 -#: create/templates/create_instance_w2.html:190 -#: create/templates/create_instance_w2.html:381 -#: create/templates/create_instance_w2.html:436 -#: create/templates/create_instance_w2.html:584 -#: create/templates/create_instance_w2.html:603 -#: create/templates/create_instance_w2.html:649 -#: instances/templates/add_instance_network_block.html:40 -#: instances/templates/add_instance_volume.html:117 -#: instances/templates/create_inst_block.html:25 -#: instances/templates/instance.html:329 instances/templates/instance.html:776 -#: instances/templates/instance.html:972 instances/templates/instance.html:1649 -#: interfaces/templates/interface.html:42 -#: interfaces/templates/interface.html:44 nwfilters/templates/nwfilter.html:81 -#: storages/templates/create_stg_block.html:132 -#: storages/templates/storage.html:49 storages/templates/storage.html:51 -#: storages/templates/storage.html:53 -msgid "None" -msgstr "" - -#: create/templates/create_instance_w2.html:168 -#: create/templates/create_instance_w2.html:392 -#: create/templates/create_instance_w2.html:609 -#: instances/templates/add_instance_network_block.html:24 -#: instances/templates/instance.html:624 instances/templates/instance.html:959 -#: networks/templates/network.html:4 networks/templates/network.html:9 -#: networks/templates/network.html:110 networks/templates/network.html:221 -msgid "Network" -msgstr "" - -#: create/templates/create_instance_w2.html:178 -#: create/templates/create_instance_w2.html:406 -#: create/templates/create_instance_w2.html:619 -#: instances/templates/edit_instance_volume.html:25 -msgid "Advanced" -msgstr "" - -#: create/templates/create_instance_w2.html:187 -#: create/templates/create_instance_w2.html:433 -#: create/templates/create_instance_w2.html:646 -#: instances/templates/add_instance_network_block.html:37 -#: instances/templates/instance.html:968 nwfilters/templates/nwfilter.html:9 -msgid "NWFilter" -msgstr "" - -#: create/templates/create_instance_w2.html:198 -#: create/templates/create_instance_w2.html:635 -msgid "HDD cache mode" -msgstr "" - -#: create/templates/create_instance_w2.html:209 #: instances/templates/add_instance_network_block.html:18 -#: instances/templates/instance.html:924 instances/templates/instance.html:947 -#: instances/templates/instance.html:1047 +#: instances/templates/create_instance_w2.html:210 +#: instances/templates/instances/settings_tab.html:358 +#: instances/templates/instances/settings_tab.html:381 +#: instances/templates/instances/settings_tab.html:482 #: interfaces/templates/interface.html:46 #: interfaces/templates/interface.html:75 #: interfaces/templates/interfaces.html:63 @@ -1384,116 +1319,46 @@ msgstr "" msgid "MAC" msgstr "" -#: create/templates/create_instance_w2.html:216 -#: create/templates/create_instance_w2.html:445 -#: create/templates/create_instance_w2.html:658 -msgid "Graphics" +#: instances/templates/add_instance_network_block.html:24 +#: instances/templates/create_instance_w2.html:169 +#: instances/templates/create_instance_w2.html:393 +#: instances/templates/create_instance_w2.html:610 +#: instances/templates/instances/settings_tab.html:30 +#: instances/templates/instances/settings_tab.html:393 +#: networks/templates/network.html:4 networks/templates/network.html:9 +#: networks/templates/network.html:110 networks/templates/network.html:221 +msgid "Network" msgstr "" -#: create/templates/create_instance_w2.html:227 -#: create/templates/create_instance_w2.html:456 -#: create/templates/create_instance_w2.html:669 -msgid "Video" +#: instances/templates/add_instance_network_block.html:37 +#: instances/templates/create_instance_w2.html:188 +#: instances/templates/create_instance_w2.html:434 +#: instances/templates/create_instance_w2.html:647 +#: instances/templates/instances/settings_tab.html:402 +#: nwfilters/templates/nwfilter.html:9 +msgid "NWFilter" msgstr "" -#: create/templates/create_instance_w2.html:241 -#: create/templates/create_instance_w2.html:470 -#: create/templates/create_instance_w2.html:683 -msgid "Console Access" -msgstr "" - -#: create/templates/create_instance_w2.html:251 -#: create/templates/create_instance_w2.html:253 -#: create/templates/create_instance_w2.html:480 -#: create/templates/create_instance_w2.html:482 -#: create/templates/create_instance_w2.html:693 -#: create/templates/create_instance_w2.html:695 -msgid "Console Password" -msgstr "" - -#: create/templates/create_instance_w2.html:257 -#: create/templates/create_instance_w2.html:486 -#: create/templates/create_instance_w2.html:699 -msgid "Guest Agent" -msgstr "" - -#: create/templates/create_instance_w2.html:264 -#: create/templates/create_instance_w2.html:493 -#: create/templates/create_instance_w2.html:706 -msgid "VirtIO" -msgstr "" - -#: create/templates/create_instance_w2.html:363 -msgid "Added Disks" -msgstr "" - -#: create/templates/create_instance_w2.html:376 -#: create/templates/create_instance_w2.html:579 -msgid "Select pool" -msgstr "" - -#: create/templates/create_instance_w2.html:415 -#: create/templates/create_instance_w2.html:628 -msgid "Disk Metadata" -msgstr "" - -#: create/templates/create_instance_w2.html:417 -#: create/templates/create_instance_w2.html:630 -msgid "Metadata preallocation" -msgstr "" - -#: create/templates/create_instance_w2.html:419 -#: create/templates/create_instance_w2.html:632 -#: venv/lib/python3.6/site-packages/django/db/models/fields/files.py:360 -msgid "Image" -msgstr "" - -#: create/templates/create_instance_w2.html:422 -msgid "HDD Cache Mode" -msgstr "" - -#: create/templates/create_instance_w2.html:574 -msgid "Template Disk" -msgstr "" - -#: create/views.py:52 create/views.py:164 -msgid "A virtual machine with this name already exists" -msgstr "" - -#: create/views.py:133 -msgid "You haven't defined any storage pools" -msgstr "" - -#: create/views.py:136 -msgid "You haven't defined any network pools" -msgstr "" - -#: create/views.py:167 -msgid "There is an instance with same name. Are you sure?" -msgstr "" - -#: create/views.py:171 -msgid "No Virtual Machine MAC has been entered" -msgstr "" - -#: create/views.py:204 -msgid "Image has already exist. Please check volumes or change instance name" -msgstr "" - -#: create/views.py:230 -msgid "First you need to create or select an image" -msgstr "" - -#: create/views.py:252 -msgid "Invalid cache mode" -msgstr "" - -#: create/views.py:290 -msgid "Instance is created" -msgstr "" - -#: instances/templates/add_instance_network_block.html:12 -msgid "Add Instance Network" +#: instances/templates/add_instance_network_block.html:40 +#: instances/templates/add_instance_volume.html:117 +#: instances/templates/create_inst_block.html:25 +#: instances/templates/create_instance_w2.html:163 +#: instances/templates/create_instance_w2.html:191 +#: instances/templates/create_instance_w2.html:382 +#: instances/templates/create_instance_w2.html:437 +#: instances/templates/create_instance_w2.html:585 +#: instances/templates/create_instance_w2.html:604 +#: instances/templates/create_instance_w2.html:650 +#: instances/templates/instances/access_tab.html:135 +#: instances/templates/instances/settings_tab.html:183 +#: instances/templates/instances/settings_tab.html:406 +#: instances/templates/instances/stats_tab.html:90 +#: interfaces/templates/interface.html:42 +#: interfaces/templates/interface.html:44 nwfilters/templates/nwfilter.html:81 +#: storages/templates/create_stg_block.html:132 +#: storages/templates/storage.html:48 storages/templates/storage.html:50 +#: storages/templates/storage.html:52 +msgid "None" msgstr "" #: instances/templates/add_instance_owner_block.html:12 @@ -1523,24 +1388,36 @@ msgstr "" msgid "Volume parameters" msgstr "" +#: instances/templates/add_instance_volume.html:30 +#: instances/templates/add_instance_volume.html:100 +#: instances/templates/create_instance_w2.html:154 +#: instances/templates/create_instance_w2.html:596 +#: instances/templates/instances/settings_tab.html:237 +#: storages/templates/storage.html:4 storages/templates/storage.html:14 +msgid "Storage" +msgstr "" + #: instances/templates/add_instance_volume.html:46 #: storages/templates/create_stg_block.html:183 -#: storages/templates/create_stg_vol_block.html:57 -#: storages/templates/storage.html:101 storages/templates/storage.html:139 +#: storages/templates/storage.html:100 storages/templates/storage.html:138 msgid "Format" msgstr "" #: instances/templates/add_instance_volume.html:56 -#: storages/templates/create_stg_vol_block.html:67 -#: storages/templates/storage.html:54 storages/templates/storage.html:100 +#: storages/templates/storage.html:53 storages/templates/storage.html:99 #: storages/templates/storages.html:66 msgid "Size" msgstr "" +#: instances/templates/add_instance_volume.html:60 +#: instances/templates/create_instance_w2.html:96 +msgid "GB" +msgstr "" + #: instances/templates/add_instance_volume.html:63 #: instances/templates/add_instance_volume.html:123 #: instances/templates/edit_instance_volume.html:53 -#: instances/templates/instance.html:763 +#: instances/templates/instances/settings_tab.html:168 msgid "Bus" msgstr "" @@ -1550,9 +1427,8 @@ msgid "Cache" msgstr "" #: instances/templates/add_instance_volume.html:83 -#: instances/templates/instance.html:1416 -#: storages/templates/create_stg_vol_block.html:74 -#: storages/templates/storage.html:149 +#: instances/templates/instances/settings_tab.html:755 +#: storages/templates/storage.html:148 msgid "Metadata" msgstr "" @@ -1564,55 +1440,23 @@ msgstr "" msgid "Volume" msgstr "" -#: instances/templates/allinstances.html:33 -#: instances/templates/allinstances.html:49 -msgid "You don't have any Instance" +#: instances/templates/allinstances.html:24 +msgid "Problem occurred with host" msgstr "" -#: instances/templates/allinstances.html:71 -#: instances/templates/allinstances_index_grouped.html:57 -#: instances/templates/allinstances_index_nongrouped.html:21 -#: instances/templates/instance.html:14 instances/templates/instances.html:86 -msgid "Off" -msgstr "" - -#: instances/templates/allinstances.html:74 -#: instances/templates/allinstances_index_grouped.html:58 -#: instances/templates/allinstances_index_nongrouped.html:22 -#: instances/templates/instance.html:20 instances/templates/instance.html:143 -#: instances/templates/instance.html:198 -#: instances/templates/instance_actions.html:15 -#: instances/templates/instance_actions.html:32 -#: instances/templates/instance_actions.html:49 -#: instances/templates/instances.html:87 instances/views.py:699 -#: instances/views.py:1239 -msgid "Suspend" -msgstr "" - -#: instances/templates/allinstances_index_grouped.html:6 -#: instances/templates/allinstances_index_nongrouped.html:5 -#: instances/templates/instance.html:1438 -#: instances/templates/instance.html:1461 instances/templates/instances.html:70 -msgid "Description" -msgstr "" - -#: instances/templates/allinstances_index_grouped.html:11 +#: instances/templates/allinstances_index_grouped.html:12 msgid "Mem Usage" msgstr "" -#: instances/templates/allinstances_index_grouped.html:27 -msgid "Not Active" -msgstr "" - -#: instances/templates/allinstances_index_grouped.html:28 -msgid "Connection Failed" -msgstr "" - #: instances/templates/bottom_bar.html:4 msgid "HOST" msgstr "" -#: instances/templates/create_inst_block.html:12 +#: instances/templates/create_flav_block.html:14 +msgid "Add New Flavor" +msgstr "" + +#: instances/templates/create_inst_block.html:11 msgid "Choose a compute for new instance" msgstr "" @@ -1629,6 +1473,183 @@ msgstr "" msgid "Choose" msgstr "" +#: instances/templates/create_instance_w1.html:4 +#: instances/templates/create_instance_w2.html:5 +msgid "Create new instance" +msgstr "" + +#: instances/templates/create_instance_w1.html:4 +msgid "Select Type" +msgstr "" + +#: instances/templates/create_instance_w1.html:11 +#: instances/templates/create_instance_w2.html:14 +#, python-format +msgid "New instance on %(host)s " +msgstr "" + +#: instances/templates/create_instance_w1.html:47 +#: instances/templates/instances/settings_tab.html:49 +#: networks/templates/network.html:75 nwfilters/templates/nwfilter.html:52 +msgid "XML" +msgstr "" + +#: instances/templates/create_instance_w1.html:68 +msgid "Chipset" +msgstr "" + +#: instances/templates/create_instance_w1.html:78 +msgid "Next" +msgstr "" + +#: instances/templates/create_instance_w2.html:50 +msgid "Flavor" +msgstr "" + +#: instances/templates/create_instance_w2.html:55 +msgid "Custom" +msgstr "" + +#: instances/templates/create_instance_w2.html:60 +msgid "Template" +msgstr "" + +#: instances/templates/create_instance_w2.html:71 +msgid "Hypervisor doesn't have any Flavors" +msgstr "" + +#: instances/templates/create_instance_w2.html:76 +msgid "Create from flavor" +msgstr "" + +#: instances/templates/create_instance_w2.html:84 +#: instances/templates/create_instance_w2.html:357 +#: instances/templates/create_instance_w2.html:568 +#: instances/templates/instance.html:45 +msgid "RAM" +msgstr "" + +#: instances/templates/create_instance_w2.html:85 +#: instances/templates/create_instance_w2.html:372 +msgid "HDD" +msgstr "" + +#: instances/templates/create_instance_w2.html:95 +#: instances/templates/create_instance_w2.html:361 +#: instances/templates/create_instance_w2.html:572 +#: instances/templates/instance.html:45 +#: instances/templates/instances/resize_tab.html:95 +#: instances/templates/instances/resize_tab.html:108 +msgid "MB" +msgstr "" + +#: instances/templates/create_instance_w2.html:102 +msgid "Create Virtual Machine" +msgstr "" + +#: instances/templates/create_instance_w2.html:120 +#: instances/templates/create_instance_w2.html:317 +#: instances/templates/create_instance_w2.html:530 +msgid "Firmware" +msgstr "" + +#: instances/templates/create_instance_w2.html:132 +#: instances/templates/create_instance_w2.html:335 +#: instances/templates/create_instance_w2.html:547 +msgid "VCPU Config" +msgstr "" + +#: instances/templates/create_instance_w2.html:135 +#: instances/templates/create_instance_w2.html:338 +#: instances/templates/create_instance_w2.html:550 +msgid "no-mode" +msgstr "" + +#: instances/templates/create_instance_w2.html:179 +#: instances/templates/create_instance_w2.html:407 +#: instances/templates/create_instance_w2.html:620 +#: instances/templates/edit_instance_volume.html:25 +msgid "Advanced" +msgstr "" + +#: instances/templates/create_instance_w2.html:199 +#: instances/templates/create_instance_w2.html:636 +msgid "HDD cache mode" +msgstr "" + +#: instances/templates/create_instance_w2.html:217 +#: instances/templates/create_instance_w2.html:446 +#: instances/templates/create_instance_w2.html:659 +msgid "Graphics" +msgstr "" + +#: instances/templates/create_instance_w2.html:228 +#: instances/templates/create_instance_w2.html:457 +#: instances/templates/create_instance_w2.html:670 +msgid "Video" +msgstr "" + +#: instances/templates/create_instance_w2.html:242 +#: instances/templates/create_instance_w2.html:471 +#: instances/templates/create_instance_w2.html:684 +msgid "Console Access" +msgstr "" + +#: instances/templates/create_instance_w2.html:252 +#: instances/templates/create_instance_w2.html:254 +#: instances/templates/create_instance_w2.html:481 +#: instances/templates/create_instance_w2.html:483 +#: instances/templates/create_instance_w2.html:694 +#: instances/templates/create_instance_w2.html:696 +msgid "Console Password" +msgstr "" + +#: instances/templates/create_instance_w2.html:258 +#: instances/templates/create_instance_w2.html:487 +#: instances/templates/create_instance_w2.html:700 +msgid "Guest Agent" +msgstr "" + +#: instances/templates/create_instance_w2.html:265 +#: instances/templates/create_instance_w2.html:494 +#: instances/templates/create_instance_w2.html:707 +msgid "VirtIO" +msgstr "" + +#: instances/templates/create_instance_w2.html:364 +msgid "Added Disks" +msgstr "" + +#: instances/templates/create_instance_w2.html:377 +#: instances/templates/create_instance_w2.html:580 +msgid "Select pool" +msgstr "" + +#: instances/templates/create_instance_w2.html:416 +#: instances/templates/create_instance_w2.html:629 +msgid "Disk Metadata" +msgstr "" + +#: instances/templates/create_instance_w2.html:418 +#: instances/templates/create_instance_w2.html:631 +msgid "Metadata preallocation" +msgstr "" + +#: instances/templates/create_instance_w2.html:420 +#: instances/templates/create_instance_w2.html:633 +#: venv/lib/python3.6/site-packages/django/db/models/fields/files.py:360 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/files.py:391 +msgid "Image" +msgstr "" + +#: instances/templates/create_instance_w2.html:423 +msgid "HDD Cache Mode" +msgstr "" + +#: instances/templates/create_instance_w2.html:575 +msgid "Template Disk" +msgstr "" + #: instances/templates/edit_instance_volume.html:3 msgid "Edit Volume" msgstr "" @@ -1677,6 +1698,15 @@ msgstr "" msgid "Detect zeroes" msgstr "" +#: instances/templates/instance.html:20 +#: instances/templates/instance_actions.html:14 +#: instances/templates/instance_actions.html:25 +#: instances/templates/instance_actions.html:37 +#: instances/templates/instances/power_tab.html:25 +#: instances/templates/instances/power_tab.html:82 instances/views.py:287 +msgid "Suspend" +msgstr "" + #: instances/templates/instance.html:26 msgid "Guest Agent Enabled & Connected" msgstr "" @@ -1689,8 +1719,9 @@ msgstr "" msgid "Guest Agent Not Enabled & Not Connected" msgstr "" -#: instances/templates/instance.html:48 instances/templates/instance.html:374 -#: instances/templates/instance.html:610 +#: instances/templates/instance.html:48 +#: instances/templates/instances/resize_tab.html:18 +#: instances/templates/instances/settings_tab.html:16 msgid "Disk" msgstr "" @@ -1702,808 +1733,820 @@ msgstr "" msgid "quota reached" msgstr "" -#: instances/templates/instance.html:76 +#: instances/templates/instance.html:75 msgid "Power" msgstr "" -#: instances/templates/instance.html:82 +#: instances/templates/instance.html:81 msgid "Access" msgstr "" -#: instances/templates/instance.html:95 +#: instances/templates/instance.html:94 msgid "Snapshot" msgstr "" -#: instances/templates/instance.html:102 templates/navbar.html:32 +#: instances/templates/instance.html:101 templates/navbar.html:32 msgid "Settings" msgstr "" -#: instances/templates/instance.html:108 +#: instances/templates/instance.html:107 msgid "Stats" msgstr "" -#: instances/templates/instance.html:114 instances/templates/instance.html:1674 -#: instances/templates/instance.html:1691 -#: instances/templates/instance.html:1695 instances/views.py:421 +#: instances/templates/instance.html:113 +#: instances/templates/instances/destroy_instance_form.html:40 +#: instances/templates/instances/destroy_tab.html:18 +#: instances/templates/instances/destroy_tab.html:20 +#: instances/templates/instances/destroy_tab.html:23 instances/views.py:329 msgid "Destroy" msgstr "" -#: instances/templates/instance.html:127 instances/templates/instance.html:176 -#: instances/templates/instance_actions.html:18 -#: instances/templates/instance_actions.html:52 instances/views.py:387 -#: instances/views.py:1199 -msgid "Power Off" -msgstr "" - -#: instances/templates/instance.html:132 instances/templates/instance.html:183 -#: instances/templates/instance_actions.html:21 -#: instances/templates/instance_actions.html:38 -#: instances/templates/instance_actions.html:55 instances/views.py:381 -#: instances/views.py:1211 -msgid "Power Cycle" -msgstr "" - -#: instances/templates/instance.html:137 instances/templates/instance.html:157 -#: instances/templates/instance.html:190 instances/templates/instance.html:216 -#: instances/templates/instance_actions.html:35 instances/views.py:393 -#: instances/views.py:1206 -msgid "Force Off" -msgstr "" - -#: instances/templates/instance.html:152 instances/templates/instance.html:209 -#: instances/templates/instance.html:224 -#: instances/templates/instance_actions.html:29 instances/views.py:705 -#: instances/views.py:1245 -msgid "Resume" -msgstr "" - -#: instances/templates/instance.html:165 instances/templates/instance.html:236 -#: instances/templates/instance.html:238 -#: instances/templates/instance_actions.html:11 -#: instances/templates/instance_actions.html:46 instances/views.py:374 -#: instances/views.py:1193 +#: instances/templates/instance_actions.html:10 +#: instances/templates/instance_actions.html:35 +#: instances/templates/instances/power_tab.html:47 +#: instances/templates/instances/power_tab.html:121 +#: instances/templates/instances/power_tab.html:123 instances/views.py:262 msgid "Power On" msgstr "" -#: instances/templates/instance.html:174 -msgid "This action sends an ACPI shutdown signal to the instance." +#: instances/templates/instance_actions.html:15 +#: instances/templates/instances/power_tab.html:9 +#: instances/templates/instances/power_tab.html:59 instances/views.py:278 +msgid "Power Off" msgstr "" -#: instances/templates/instance.html:181 -msgid "" -"This action forcibly powers off and start the instance and may cause data " -"corruption." +#: instances/templates/instance_actions.html:16 +#: instances/templates/instance_actions.html:29 +#: instances/templates/instances/power_tab.html:14 +#: instances/templates/instances/power_tab.html:66 instances/views.py:271 +msgid "Power Cycle" msgstr "" -#: instances/templates/instance.html:188 instances/templates/instance.html:214 -msgid "" -"This action forcibly powers off the instance and may cause data corruption." +#: instances/templates/instance_actions.html:17 +#: instances/templates/instance_actions.html:30 +msgid "VNC Console" msgstr "" -#: instances/templates/instance.html:196 -msgid "This action suspends the instance." +#: instances/templates/instance_actions.html:22 +#: instances/templates/instances/power_tab.html:34 +#: instances/templates/instances/power_tab.html:93 +#: instances/templates/instances/power_tab.html:108 instances/views.py:295 +msgid "Resume" msgstr "" -#: instances/templates/instance.html:207 -msgid "This action restore the instance after suspend." +#: instances/templates/instance_actions.html:26 +#: instances/templates/instances/power_tab.html:19 +#: instances/templates/instances/power_tab.html:39 +#: instances/templates/instances/power_tab.html:74 +#: instances/templates/instances/power_tab.html:100 instances/views.py:302 +msgid "Force Off" msgstr "" -#: instances/templates/instance.html:222 -msgid "Administrator blocked your instance." -msgstr "" - -#: instances/templates/instance.html:232 -msgid "Click on Power On button to start this instance." -msgstr "" - -#: instances/templates/instance.html:235 -msgid "Template instance cannot be started." -msgstr "" - -#: instances/templates/instance.html:253 instances/templates/instance.html:285 -#: instances/templates/instance.html:290 instances/templates/instance.html:291 -#: instances/templates/instance.html:295 instances/templates/instance.html:617 -#: instances/templates/instance_actions.html:58 +#: instances/templates/instance_actions.html:41 +#: instances/templates/instances/access_tab.html:9 +#: instances/templates/instances/access_tab.html:79 +#: instances/templates/instances/access_tab.html:87 +#: instances/templates/instances/access_tab.html:90 +#: instances/templates/instances/access_tab.html:94 +#: instances/templates/instances/settings_tab.html:23 msgid "Console" msgstr "" -#: instances/templates/instance.html:259 +#: instances/templates/instances/access_tab.html:16 msgid "Root Password" msgstr "" -#: instances/templates/instance.html:273 instances/templates/instance.html:349 +#: instances/templates/instances/access_tab.html:31 +#: instances/templates/instances/access_tab.html:156 msgid "VDI" msgstr "" -#: instances/templates/instance.html:281 +#: instances/templates/instances/access_tab.html:39 +#, python-format msgid "" -"This action opens a new window with a VNC connection to the console of the " -"instance." +" This action opens a new window with a %(type)s connection to the console of " +"the instance." msgstr "" -#: instances/templates/instance.html:287 +#: instances/templates/instances/access_tab.html:47 +msgid "Scale" +msgstr "" + +#: instances/templates/instances/access_tab.html:55 +msgid "View Only" +msgstr "" + +#: instances/templates/instances/access_tab.html:63 +msgid "Resize Session" +msgstr "" + +#: instances/templates/instances/access_tab.html:71 +msgid "View Clipboard" +msgstr "" + +#: instances/templates/instances/access_tab.html:82 msgid "Toggle Dropdown" msgstr "" -#: instances/templates/instance.html:290 instances/templates/instance.html:291 +#: instances/templates/instances/access_tab.html:86 +#: instances/templates/instances/access_tab.html:89 msgid "Console port" msgstr "" -#: instances/templates/instance.html:290 +#: instances/templates/instances/access_tab.html:87 msgid "Lite" msgstr "" -#: instances/templates/instance.html:291 +#: instances/templates/instances/access_tab.html:90 msgid "Full" msgstr "" -#: instances/templates/instance.html:301 +#: instances/templates/instances/access_tab.html:100 msgid "You need shut down your instance and enter a new root password." msgstr "" -#: instances/templates/instance.html:305 +#: instances/templates/instances/access_tab.html:107 msgid "Enter Password" msgstr "" -#: instances/templates/instance.html:309 instances/templates/instance.html:311 +#: instances/templates/instances/access_tab.html:112 +#: instances/templates/instances/access_tab.html:115 msgid "Reset Root Password" msgstr "" -#: instances/templates/instance.html:319 +#: instances/templates/instances/access_tab.html:123 msgid "You need shut down your instance and choose your public key." msgstr "" -#: instances/templates/instance.html:335 instances/templates/instance.html:337 +#: instances/templates/instances/access_tab.html:142 +#: instances/templates/instances/access_tab.html:144 msgid "Add Public Key" msgstr "" -#: instances/templates/instance.html:345 +#: instances/templates/instances/access_tab.html:152 msgid "" "This action opens a remote viewer with a connection to the console of the " "instance." msgstr "" -#: instances/templates/instance.html:364 +#: instances/templates/instances/destroy_instance_form.html:4 +msgid "Confirm Destroy" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:8 +msgid "Destroy instance" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:15 +msgid "Instance is suspended, cannot destroy!" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:19 +msgid "This action is irreversible!" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:26 +msgid "Remove Instance's data" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:34 +msgid "Remove Instance's NVRAM" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:46 +msgid "You cannot destroy instance!" +msgstr "" + +#: instances/templates/instances/destroy_tab.html:8 +msgid "Destroy Instance" +msgstr "" + +#: instances/templates/instances/destroy_tab.html:15 +msgid "This action starts remove instance process" +msgstr "" + +#: instances/templates/instances/power_tab.html:56 +msgid "This action sends an ACPI shutdown signal to the instance." +msgstr "" + +#: instances/templates/instances/power_tab.html:64 +msgid "" +"This action forcibly powers off and start the instance and may cause data " +"corruption." +msgstr "" + +#: instances/templates/instances/power_tab.html:71 +#: instances/templates/instances/power_tab.html:98 +msgid "" +"This action forcibly powers off the instance and may cause data corruption." +msgstr "" + +#: instances/templates/instances/power_tab.html:80 +msgid "This action suspends the instance." +msgstr "" + +#: instances/templates/instances/power_tab.html:91 +msgid "This action restore the instance after suspend." +msgstr "" + +#: instances/templates/instances/power_tab.html:106 +msgid "Administrator blocked your instance." +msgstr "" + +#: instances/templates/instances/power_tab.html:116 +msgid "Click on Power On button to start this instance." +msgstr "" + +#: instances/templates/instances/power_tab.html:120 +msgid "Template instance cannot be started." +msgstr "" + +#: instances/templates/instances/resize_tab.html:8 msgid "CPU" msgstr "" -#: instances/templates/instance.html:385 +#: instances/templates/instances/resize_tab.html:29 msgid "Logical host CPUs" msgstr "" -#: instances/templates/instance.html:387 instances/templates/instance.html:450 -#: instances/templates/instance.html:490 +#: instances/templates/instances/resize_tab.html:31 +#: instances/templates/instances/resize_tab.html:95 +#: instances/templates/instances/resize_tab.html:136 msgid "Current Allocation" msgstr "" -#: instances/templates/instance.html:401 instances/templates/instance.html:463 +#: instances/templates/instances/resize_tab.html:45 +#: instances/templates/instances/resize_tab.html:108 msgid "Maximum Allocation" msgstr "" -#: instances/templates/instance.html:419 +#: instances/templates/instances/resize_tab.html:63 msgid "Logical Instance Active/Maximum CPUs" msgstr "" -#: instances/templates/instance.html:427 instances/templates/instance.html:674 -#: instances/templates/instance.html:689 networks/templates/network.html:65 -#: storages/templates/storage.html:79 +#: instances/templates/instances/resize_tab.html:71 +#: instances/templates/instances/settings_tab.html:79 +#: instances/templates/instances/settings_tab.html:95 +#: networks/templates/network.html:65 storages/templates/storage.html:78 msgid "Disable" msgstr "" -#: instances/templates/instance.html:429 +#: instances/templates/instances/resize_tab.html:73 msgid "Constant" msgstr "" -#: instances/templates/instance.html:431 instances/templates/instance.html:672 -#: instances/templates/instance.html:687 networks/templates/network.html:63 -#: storages/templates/storage.html:76 +#: instances/templates/instances/resize_tab.html:75 +#: instances/templates/instances/settings_tab.html:77 +#: instances/templates/instances/settings_tab.html:91 +#: networks/templates/network.html:63 storages/templates/storage.html:75 msgid "Enable" msgstr "" -#: instances/templates/instance.html:440 instances/templates/instance.html:479 -#: instances/templates/instance.html:503 +#: instances/templates/instances/resize_tab.html:84 +#: instances/templates/instances/resize_tab.html:124 +#: instances/templates/instances/resize_tab.html:157 msgid "You don't have permission for resizing instance" msgstr "" -#: instances/templates/instance.html:448 +#: instances/templates/instances/resize_tab.html:93 msgid "Total host memory" msgstr "" -#: instances/templates/instance.html:458 instances/templates/instance.html:473 +#: instances/templates/instances/resize_tab.html:103 +#: instances/templates/instances/resize_tab.html:118 msgid "Custom value" msgstr "" -#: instances/templates/instance.html:487 +#: instances/templates/instances/resize_tab.html:133 msgid "Disk allocation (GB)" msgstr "" -#: instances/templates/instance.html:517 instances/templates/instance.html:538 -#: instances/templates/instance.html:540 -msgid "Take Snapshot" +#: instances/templates/instances/resize_tab.html:140 +#: instances/templates/instances/settings_tab.html:269 +msgid "Error getting disk info" msgstr "" -#: instances/templates/instance.html:522 -msgid "Manage Snapshots" -msgstr "" - -#: instances/templates/instance.html:530 -msgid "" -"This may take more than an hour, depending on how much content is on your " -"droplet and how large the disk is." -msgstr "" - -#: instances/templates/instance.html:534 -msgid "Enter Snapshot Name" -msgstr "" - -#: instances/templates/instance.html:545 -msgid "To take a snapshot please Power Off the instance." -msgstr "" - -#: instances/templates/instance.html:550 -msgid "Choose a snapshot for restore/delete" -msgstr "" - -#: instances/templates/instance.html:567 -msgid "Revert to this Snapshot" -msgstr "" - -#: instances/templates/instance.html:572 -msgid "To restore snapshots you need Power Off the instance." -msgstr "" - -#: instances/templates/instance.html:581 -msgid "Delete Snapshot" -msgstr "" - -#: instances/templates/instance.html:592 -msgid "You do not have any snapshots" -msgstr "" - -#: instances/templates/instance.html:605 +#: instances/templates/instances/settings_tab.html:11 msgid "Boot" msgstr "" -#: instances/templates/instance.html:638 instances/templates/instance.html:1174 -#: instances/templates/instance.html:1176 +#: instances/templates/instances/settings_tab.html:44 +#: instances/templates/instances/settings_tab.html:616 +#: instances/templates/instances/settings_tab.html:618 msgid "Migrate" msgstr "" -#: instances/templates/instance.html:650 +#: instances/templates/instances/settings_tab.html:56 msgid "Options" msgstr "" -#: instances/templates/instance.html:666 networks/templates/network.html:59 -#: storages/templates/storage.html:71 +#: instances/templates/instances/settings_tab.html:72 +#: networks/templates/network.html:59 storages/templates/storage.html:70 msgid "Autostart" msgstr "" -#: instances/templates/instance.html:670 +#: instances/templates/instances/settings_tab.html:75 msgid "Autostart your instance when host server is power on " msgstr "" -#: instances/templates/instance.html:680 +#: instances/templates/instances/settings_tab.html:84 msgid "Boot Order" msgstr "" -#: instances/templates/instance.html:685 +#: instances/templates/instances/settings_tab.html:88 msgid "Enable Boot Menu for your instance when it starts up " msgstr "" -#: instances/templates/instance.html:687 +#: instances/templates/instances/settings_tab.html:91 msgid "Show boot menu" msgstr "" -#: instances/templates/instance.html:689 +#: instances/templates/instances/settings_tab.html:95 msgid "Hide boot menu" msgstr "" -#: instances/templates/instance.html:693 +#: instances/templates/instances/settings_tab.html:100 msgid "Please shutdown instance to modify boot menu" msgstr "" -#: instances/templates/instance.html:724 +#: instances/templates/instances/settings_tab.html:130 msgid "up: move selected devices" msgstr "" -#: instances/templates/instance.html:727 +#: instances/templates/instances/settings_tab.html:133 msgid "down: move selected devices" msgstr "" -#: instances/templates/instance.html:733 instances/templates/instance.html:994 +#: instances/templates/instances/settings_tab.html:139 +#: instances/templates/instances/settings_tab.html:428 msgid "Apply" msgstr "" -#: instances/templates/instance.html:743 +#: instances/templates/instances/settings_tab.html:149 msgid "Instance Media" msgstr "" -#: instances/templates/instance.html:746 +#: instances/templates/instances/settings_tab.html:152 msgid "Add CD-ROM" msgstr "" -#: instances/templates/instance.html:764 instances/templates/instance.html:826 +#: instances/templates/instances/settings_tab.html:169 +#: instances/templates/instances/settings_tab.html:234 #: interfaces/templates/create_iface_block.html:34 #: networks/templates/network.html:46 networks/templates/networks.html:63 #: storages/templates/create_stg_block.html:77 msgid "Device" msgstr "" -#: instances/templates/instance.html:765 +#: instances/templates/instances/settings_tab.html:170 msgid "CD-ROM" msgstr "" -#: instances/templates/instance.html:781 instances/templates/instance.html:783 +#: instances/templates/instances/settings_tab.html:188 +#: instances/templates/instances/settings_tab.html:190 msgid "Mount" msgstr "" -#: instances/templates/instance.html:786 +#: instances/templates/instances/settings_tab.html:193 msgid "Detach CD-ROM (remove device)" msgstr "" -#: instances/templates/instance.html:800 instances/templates/instance.html:802 +#: instances/templates/instances/settings_tab.html:208 +#: instances/templates/instances/settings_tab.html:210 msgid "Unmount" msgstr "" -#: instances/templates/instance.html:812 +#: instances/templates/instances/settings_tab.html:220 msgid "There is not any CD-ROM device." msgstr "" -#: instances/templates/instance.html:817 +#: instances/templates/instances/settings_tab.html:225 msgid "Instance Volume" msgstr "" -#: instances/templates/instance.html:827 +#: instances/templates/instances/settings_tab.html:235 msgid "Used" msgstr "" -#: instances/templates/instance.html:828 +#: instances/templates/instances/settings_tab.html:236 msgid "Capacity" msgstr "" -#: instances/templates/instance.html:830 instances/templates/instance.html:928 +#: instances/templates/instances/settings_tab.html:238 +#: instances/templates/instances/settings_tab.html:362 msgid "Source" msgstr "" -#: instances/templates/instance.html:870 instances/templates/instance.html:877 +#: instances/templates/instances/settings_tab.html:294 +#: instances/templates/instances/settings_tab.html:298 msgid "Detach" msgstr "" -#: instances/templates/instance.html:870 +#: instances/templates/instances/settings_tab.html:294 msgid "Are you sure to detach volume?" msgstr "" -#: instances/templates/instance.html:873 -msgid "Are you sure to delete volume?" -msgstr "" - -#: instances/templates/instance.html:877 instances/templates/instance.html:880 +#: instances/templates/instances/settings_tab.html:298 +#: instances/templates/instances/settings_tab.html:314 msgid "Are you sure? This may lead data corruption!" msgstr "" -#: instances/templates/instance.html:896 +#: instances/templates/instances/settings_tab.html:310 +msgid "Are you sure to delete volume?" +msgstr "" + +#: instances/templates/instances/settings_tab.html:330 msgid "Add a network device" msgstr "" -#: instances/templates/instance.html:902 +#: instances/templates/instances/settings_tab.html:336 msgid "Network Devices" msgstr "" -#: instances/templates/instance.html:907 instances/templates/instance.html:908 +#: instances/templates/instances/settings_tab.html:341 +#: instances/templates/instances/settings_tab.html:342 msgid "Info" msgstr "" -#: instances/templates/instance.html:921 +#: instances/templates/instances/settings_tab.html:355 msgid "active" msgstr "" -#: instances/templates/instance.html:926 nwfilters/templates/nwfilter.html:78 +#: instances/templates/instances/settings_tab.html:360 +#: nwfilters/templates/nwfilter.html:78 msgid "Filter" msgstr "" -#: instances/templates/instance.html:933 +#: instances/templates/instances/settings_tab.html:367 msgid "Edit NIC" msgstr "" -#: instances/templates/instance.html:941 +#: instances/templates/instances/settings_tab.html:375 msgid "Edit Instance Network" msgstr "" -#: instances/templates/instance.html:954 +#: instances/templates/instances/settings_tab.html:388 msgid "Net Source" msgstr "" -#: instances/templates/instance.html:962 interfaces/templates/interface.html:3 -#: interfaces/templates/interface.html:8 interfaces/templates/interface.html:40 +#: instances/templates/instances/settings_tab.html:396 +#: interfaces/templates/interface.html:3 interfaces/templates/interface.html:8 +#: interfaces/templates/interface.html:40 msgid "Interface" msgstr "" -#: instances/templates/instance.html:980 instances/templates/instance.html:1019 +#: instances/templates/instances/settings_tab.html:414 +#: instances/templates/instances/settings_tab.html:453 msgid "Model" msgstr "" -#: instances/templates/instance.html:994 +#: instances/templates/instances/settings_tab.html:428 msgid "Apply network changes" msgstr "" -#: instances/templates/instance.html:1003 +#: instances/templates/instances/settings_tab.html:437 msgid "Delete Device" msgstr "" -#: instances/templates/instance.html:1011 +#: instances/templates/instances/settings_tab.html:445 #: interfaces/templates/create_iface_block.html:71 #: interfaces/templates/interface.html:42 msgid "IPv4" msgstr "" -#: instances/templates/instance.html:1015 +#: instances/templates/instances/settings_tab.html:449 #: interfaces/templates/create_iface_block.html:74 #: interfaces/templates/interface.html:44 msgid "IPv6" msgstr "" -#: instances/templates/instance.html:1021 +#: instances/templates/instances/settings_tab.html:455 msgid "QoS" msgstr "" -#: instances/templates/instance.html:1041 networks/templates/network.html:325 +#: instances/templates/instances/settings_tab.html:476 +#: networks/templates/network.html:325 msgid "QoS Configuration" msgstr "" -#: instances/templates/instance.html:1047 +#: instances/templates/instances/settings_tab.html:482 #: networks/templates/add_network_qos.html:18 #: networks/templates/network.html:331 nwfilters/templates/nwfilter.html:134 msgid "Direction" msgstr "" -#: instances/templates/instance.html:1048 +#: instances/templates/instances/settings_tab.html:483 #: networks/templates/add_network_qos.html:27 #: networks/templates/network.html:332 msgid "Average" msgstr "" -#: instances/templates/instance.html:1049 +#: instances/templates/instances/settings_tab.html:484 #: networks/templates/add_network_qos.html:34 #: networks/templates/network.html:333 msgid "Peak" msgstr "" -#: instances/templates/instance.html:1050 +#: instances/templates/instances/settings_tab.html:485 #: networks/templates/add_network_qos.html:41 #: networks/templates/network.html:334 msgid "Burst" msgstr "" -#: instances/templates/instance.html:1074 networks/templates/network.html:356 +#: instances/templates/instances/settings_tab.html:510 +#: networks/templates/network.html:356 msgid "Edit QoS" msgstr "" -#: instances/templates/instance.html:1079 networks/templates/network.html:361 +#: instances/templates/instances/settings_tab.html:520 +#: networks/templates/network.html:361 msgid "Delete QoS" msgstr "" -#: instances/templates/instance.html:1095 +#: instances/templates/instances/settings_tab.html:536 msgid "For migration both host servers must have equal settings and OS type" msgstr "" -#: instances/templates/instance.html:1098 +#: instances/templates/instances/settings_tab.html:540 msgid "Original host" msgstr "" -#: instances/templates/instance.html:1104 +#: instances/templates/instances/settings_tab.html:546 msgid "Host migration" msgstr "" -#: instances/templates/instance.html:1121 +#: instances/templates/instances/settings_tab.html:563 msgid "Live migration" msgstr "" -#: instances/templates/instance.html:1129 +#: instances/templates/instances/settings_tab.html:571 msgid "Unsafe migration" msgstr "" -#: instances/templates/instance.html:1137 +#: instances/templates/instances/settings_tab.html:579 msgid "Delete original" msgstr "" -#: instances/templates/instance.html:1145 +#: instances/templates/instances/settings_tab.html:587 msgid "Offline migration" msgstr "" -#: instances/templates/instance.html:1153 +#: instances/templates/instances/settings_tab.html:595 msgid "Post copy" msgstr "" -#: instances/templates/instance.html:1161 +#: instances/templates/instances/settings_tab.html:603 msgid "Forces CPU convergence during live migration" msgstr "" -#: instances/templates/instance.html:1161 +#: instances/templates/instances/settings_tab.html:603 msgid "Auto converge" msgstr "" -#: instances/templates/instance.html:1169 +#: instances/templates/instances/settings_tab.html:611 msgid "Compress instance memory for fast migration" msgstr "" -#: instances/templates/instance.html:1169 +#: instances/templates/instances/settings_tab.html:611 msgid "Compressed" msgstr "" -#: instances/templates/instance.html:1182 +#: instances/templates/instances/settings_tab.html:624 msgid "If you need to edit XML please Power Off the instance" msgstr "" -#: instances/templates/instance.html:1203 +#: instances/templates/instances/settings_tab.html:646 msgid "Instance owners" msgstr "" -#: instances/templates/instance.html:1216 -msgid "Delete Ownership" +#: instances/templates/instances/settings_tab.html:675 +msgid "To change console settings, shutdown the instance." msgstr "" -#: instances/templates/instance.html:1231 -msgid "To set console's type, shutdown the instance." +#: instances/templates/instances/settings_tab.html:681 +#: instances/templates/instances/settings_tab.html:683 +msgid "Update" msgstr "" -#: instances/templates/instance.html:1234 -#: interfaces/templates/create_iface_block.html:44 -#: interfaces/templates/interface.html:77 -#: interfaces/templates/interfaces.html:62 -#: storages/templates/create_stg_block.html:35 -#: storages/templates/create_stg_block.html:64 -#: storages/templates/create_stg_block.html:93 -#: storages/templates/create_stg_block.html:158 -#: storages/templates/storages.html:64 -msgid "Type" -msgstr "" - -#: instances/templates/instance.html:1238 -#: instances/templates/instance.html:1262 -#: instances/templates/instance.html:1331 -#: instances/templates/instance.html:1495 -msgid "please choose" -msgstr "" - -#: instances/templates/instance.html:1246 -#: instances/templates/instance.html:1248 -#: instances/templates/instance.html:1269 -#: instances/templates/instance.html:1271 -#: instances/templates/instance.html:1307 -#: instances/templates/instance.html:1309 -#: instances/templates/instance.html:1339 -#: instances/templates/instance.html:1341 -#: instances/templates/instance.html:1502 -#: instances/templates/instance.html:1504 -#: instances/templates/instance.html:1524 -#: instances/templates/instance.html:1526 -#: instances/templates/instance.html:1554 secrets/templates/secrets.html:103 -msgid "Set" -msgstr "" - -#: instances/templates/instance.html:1255 -msgid "To set console listen address, shutdown the instance." -msgstr "" - -#: instances/templates/instance.html:1258 -msgid "Listen on" -msgstr "" - -#: instances/templates/instance.html:1278 -msgid "To create console password, shutdown the instance." -msgstr "" - -#: instances/templates/instance.html:1284 -msgid "Generate" -msgstr "" - -#: instances/templates/instance.html:1288 -#: instances/templates/instance.html:1322 networks/templates/network.html:169 -#: networks/templates/network.html:279 -#: venv/lib/python3.6/site-packages/django/forms/widgets.py:395 -msgid "Clear" -msgstr "" - -#: instances/templates/instance.html:1304 networks/templates/network.html:161 -#: networks/templates/network.html:271 nwfilters/templates/nwfilters.html:88 -msgid "Show" -msgstr "" - -#: instances/templates/instance.html:1316 -msgid "To set console's keymap, shutdown the instance." -msgstr "" - -#: instances/templates/instance.html:1327 -msgid "Keymap" -msgstr "" - -#: instances/templates/instance.html:1353 +#: instances/templates/instances/settings_tab.html:692 msgid "Create a clone" msgstr "" -#: instances/templates/instance.html:1356 +#: instances/templates/instances/settings_tab.html:695 msgid "Clone Name" msgstr "" -#: instances/templates/instance.html:1363 -#: instances/templates/instance.html:1394 +#: instances/templates/instances/settings_tab.html:702 +#: instances/templates/instances/settings_tab.html:733 msgid "Guess" msgstr "" -#: instances/templates/instance.html:1382 +#: instances/templates/instances/settings_tab.html:721 msgid "Network devices" msgstr "" -#: instances/templates/instance.html:1392 +#: instances/templates/instances/settings_tab.html:731 msgid "Random" msgstr "" -#: instances/templates/instance.html:1407 +#: instances/templates/instances/settings_tab.html:746 msgid "Storage devices" msgstr "" -#: instances/templates/instance.html:1432 -#: instances/templates/instance.html:1455 +#: instances/templates/instances/settings_tab.html:771 +#: instances/templates/instances/settings_tab.html:794 msgid "Title" msgstr "" -#: instances/templates/instance.html:1452 +#: instances/templates/instances/settings_tab.html:791 msgid "To set instance template name description, shutdown the instance." msgstr "" -#: instances/templates/instance.html:1467 +#: instances/templates/instances/settings_tab.html:806 msgid "Is template" msgstr "" -#: instances/templates/instance.html:1488 +#: instances/templates/instances/settings_tab.html:827 msgid "To set instance video model, shutdown the instance." msgstr "" -#: instances/templates/instance.html:1491 +#: instances/templates/instances/settings_tab.html:830 msgid "Primary Video Model" msgstr "" -#: instances/templates/instance.html:1512 +#: instances/templates/instances/settings_tab.html:834 +msgid "please choose" +msgstr "" + +#: instances/templates/instances/settings_tab.html:841 +#: instances/templates/instances/settings_tab.html:843 +#: instances/templates/instances/settings_tab.html:863 +#: instances/templates/instances/settings_tab.html:865 +#: instances/templates/instances/settings_tab.html:893 +#: secrets/templates/secrets.html:103 +msgid "Set" +msgstr "" + +#: instances/templates/instances/settings_tab.html:851 msgid "To set instance vCPUs hotpluggable" msgstr "" -#: instances/templates/instance.html:1515 +#: instances/templates/instances/settings_tab.html:854 msgid "vCPU Hot Plug" msgstr "" -#: instances/templates/instance.html:1519 -#: instances/templates/instance.html:1550 +#: instances/templates/instances/settings_tab.html:858 +#: instances/templates/instances/settings_tab.html:889 msgid "Enabled" msgstr "" -#: instances/templates/instance.html:1520 -#: instances/templates/instance.html:1551 +#: instances/templates/instances/settings_tab.html:859 +#: instances/templates/instances/settings_tab.html:890 msgid "Disabled" msgstr "" -#: instances/templates/instance.html:1534 +#: instances/templates/instances/settings_tab.html:873 msgid "To Enable/Disable Qemu Guest Agent. Status" msgstr "" -#: instances/templates/instance.html:1539 +#: instances/templates/instances/settings_tab.html:878 msgid "Disconnected" msgstr "" -#: instances/templates/instance.html:1542 +#: instances/templates/instances/settings_tab.html:881 #: venv/lib/python3.6/site-packages/django/forms/widgets.py:709 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:703 msgid "Unknown" msgstr "" -#: instances/templates/instance.html:1546 +#: instances/templates/instances/settings_tab.html:885 msgid "Qemu Guest Agent" msgstr "" -#: instances/templates/instance.html:1572 +#: instances/templates/instances/snapshots_tab.html:9 +#: instances/templates/instances/snapshots_tab.html:31 +#: instances/templates/instances/snapshots_tab.html:33 +msgid "Take Snapshot" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:14 +msgid "Manage Snapshots" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:22 +msgid "" +"This may take more than an hour, depending on how much content is on your " +"droplet and how large the disk is." +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:27 +msgid "Enter Snapshot Name" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:38 +msgid "To take a snapshot please Power Off the instance." +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:43 +msgid "Choose a snapshot for restore/delete" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:61 +msgid "Revert to this Snapshot" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:66 +msgid "To restore snapshots you need Power Off the instance." +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:75 +msgid "Delete Snapshot" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:86 +msgid "You do not have any snapshots" +msgstr "" + +#: instances/templates/instances/stats_tab.html:8 msgid "Real Time" msgstr "" -#: instances/templates/instance.html:1586 +#: instances/templates/instances/stats_tab.html:23 msgid "CPU Usage" msgstr "" -#: instances/templates/instance.html:1598 +#: instances/templates/instances/stats_tab.html:36 msgid "Memory Usage" msgstr "" -#: instances/templates/instance.html:1611 +#: instances/templates/instances/stats_tab.html:50 msgid "Bandwidth Device" msgstr "" -#: instances/templates/instance.html:1625 +#: instances/templates/instances/stats_tab.html:65 msgid "Disk I/O device" msgstr "" -#: instances/templates/instance.html:1664 -msgid "Destroy Instance" -msgstr "" - -#: instances/templates/instance.html:1671 -msgid "Delete storage for instance?" -msgstr "" - -#: instances/templates/instance.html:1680 -msgid "Remove Instance's data" -msgstr "" - -#: instances/templates/instance.html:1687 -msgid "Remove Instance's NVRAM" -msgstr "" - -#: instances/templates/instance_actions.html:24 -#: instances/templates/instance_actions.html:41 -msgid "VNC Console" -msgstr "" - -#: instances/templates/instances.html:61 -msgid "Hypervisor doesn't have any Instances" -msgstr "" - -#: instances/views.py:224 +#: instances/utils.py:122 msgid "None available device name" msgstr "" -#: instances/views.py:260 +#: instances/utils.py:239 +msgid "Deleting due to multiple(Instance Name) records." +msgstr "" + +#: instances/utils.py:247 +msgid "Deleting due to multiple(UUID) records." +msgstr "" + +#: instances/views.py:259 +msgid "Templates cannot be started." +msgstr "" + +#: instances/views.py:362 #, python-brace-format msgid "Migrate to {new_compute.hostname}" msgstr "" -#: instances/views.py:340 -#, python-brace-format -msgid "Fixing UUID {uuid}" -msgstr "" - -#: instances/views.py:345 -msgid "Instance does not exist: Creating new instance" -msgstr "" - -#: instances/views.py:370 instances/views.py:1190 -msgid "Templates cannot be started." -msgstr "" - -#: instances/views.py:437 +#: instances/views.py:385 msgid "Reset root password" msgstr "" -#: instances/views.py:445 instances/views.py:467 +#: instances/views.py:391 instances/views.py:417 msgid "Please shutdown down your instance and then try again" msgstr "" -#: instances/views.py:459 +#: instances/views.py:409 #, python-brace-format msgid "Installed new SSH public key {publickey.keyname}" msgstr "" -#: instances/views.py:477 +#: instances/views.py:436 #, python-brace-format msgid "User {quota_msg} quota reached, cannot resize CPU of '{instance.name}'!" msgstr "" -#: instances/views.py:483 +#: instances/views.py:442 msgid "Resize CPU" msgstr "" -#: instances/views.py:501 +#: instances/views.py:470 #, python-brace-format msgid "" "User {quota_msg} quota reached, cannot resize memory of '{instance.name}'!" msgstr "" -#: instances/views.py:507 +#: instances/views.py:476 msgid "Resize Memory" msgstr "" -#: instances/views.py:524 +#: instances/views.py:506 #, python-brace-format msgid "" "User {quota_msg} quota reached, cannot resize disks of '{instance.name}'!" msgstr "" -#: instances/views.py:528 +#: instances/views.py:510 msgid "Disk resize" msgstr "" @@ -2512,259 +2555,289 @@ msgstr "" msgid "Attach new disk {name} ({format})" msgstr "" -#: instances/views.py:571 +#: instances/views.py:580 #, python-brace-format msgid "Attach Existing disk: {target_dev}" msgstr "" -#: instances/views.py:603 +#: instances/views.py:636 msgid "Volume changes are applied. But it will be activated after shutdown" msgstr "" -#: instances/views.py:606 +#: instances/views.py:638 msgid "Volume is changed successfully." msgstr "" -#: instances/views.py:607 +#: instances/views.py:639 #, python-brace-format msgid "Edit disk: {target_dev}" msgstr "" -#: instances/views.py:623 +#: instances/views.py:661 #, python-brace-format msgid "Delete disk: {dev}" msgstr "" -#: instances/views.py:628 -#, python-brace-format -msgid "The disk: {dev} is detached but not deleted. Error: {err}" -msgstr "" - -#: instances/views.py:638 +#: instances/views.py:677 #, python-brace-format msgid "Detach disk: {dev}" msgstr "" -#: instances/views.py:646 +#: instances/views.py:690 #, python-brace-format msgid "Add CD-ROM: {target}" msgstr "" -#: instances/views.py:653 +#: instances/views.py:703 #, python-brace-format msgid "Detach CD-ROM: {dev}" msgstr "" -#: instances/views.py:661 +#: instances/views.py:716 #, python-brace-format msgid "Mount media: {dev}" msgstr "" -#: instances/views.py:669 +#: instances/views.py:729 #, python-brace-format msgid "Umount media: {dev}" msgstr "" -#: instances/views.py:676 +#: instances/views.py:742 #, python-brace-format msgid "New snapshot : {name}" msgstr "" -#: instances/views.py:683 +#: instances/views.py:753 #, python-brace-format msgid "Delete snapshot : {snap_name}" msgstr "" -#: instances/views.py:690 +#: instances/views.py:764 msgid "Successful revert snapshot: " msgstr "" -#: instances/views.py:693 +#: instances/views.py:767 msgid "Revert snapshot" msgstr "" -#: instances/views.py:716 +#: instances/views.py:781 #, python-brace-format msgid "VCPU {id} is enabled={enabled}" msgstr "" -#: instances/views.py:723 +#: instances/views.py:792 #, python-brace-format msgid "VCPU Hot-plug is enabled={status}" msgstr "" -#: instances/views.py:734 +#: instances/views.py:803 msgid "Set autostart" msgstr "" -#: instances/views.py:740 +#: instances/views.py:812 msgid "Unset autostart" msgstr "" -#: instances/views.py:746 +#: instances/views.py:821 msgid "Enable boot menu" msgstr "" -#: instances/views.py:752 +#: instances/views.py:830 msgid "Disable boot menu" msgstr "" -#: instances/views.py:764 +#: instances/views.py:845 msgid "Set boot order" msgstr "" -#: instances/views.py:767 +#: instances/views.py:848 msgid "Boot menu changes applied. But it will be activated after shutdown" msgstr "" -#: instances/views.py:770 +#: instances/views.py:850 msgid "Boot order changed successfully." msgstr "" -#: instances/views.py:778 +#: instances/views.py:861 msgid "Edit XML" msgstr "" -#: instances/views.py:792 -msgid "Enter the console password or select Generate" +#: instances/views.py:875 +#, python-brace-format +msgid "Set Quest Agent {status}" msgstr "" -#: instances/views.py:796 +#: instances/views.py:885 +msgid "Set Video Model" +msgstr "" + +#: instances/views.py:894 +msgid "Change network" +msgstr "" + +#: instances/views.py:907 +msgid "Network Device Config is changed. Please shutdown instance to activate." +msgstr "" + +#: instances/views.py:915 +msgid "Add network" +msgstr "" + +#: instances/views.py:929 +msgid "Delete network" +msgstr "" + +#: instances/views.py:945 +#, python-brace-format +msgid "Set Link State: {state}" +msgstr "" + +#: instances/views.py:964 +msgid "{qos_dir.capitalize()} QoS is set" +msgstr "" + +#: instances/views.py:968 networks/views.py:216 +msgid "{qos_dir.capitalize()} QoS is set. Network XML is changed." +msgstr "" + +#: instances/views.py:969 networks/views.py:217 +msgid "Stop and start network to activate new config" +msgstr "" + +#: instances/views.py:983 networks/views.py:233 +msgid "{qos_dir.capitalize()} QoS is deleted" +msgstr "" + +#: instances/views.py:987 networks/views.py:230 +msgid "{qos_dir.capitalize()} QoS is deleted. Network XML is changed. " +msgstr "" + +#: instances/views.py:988 networks/views.py:231 +msgid "Stop and start network to activate new config." +msgstr "" + +#: instances/views.py:1004 +msgid "Only one owner is allowed and the one already added" +msgstr "" + +#: instances/views.py:1009 +#, python-format +msgid "Added owner %(user)s" +msgstr "" + +#: instances/views.py:1020 +#, python-brace-format +msgid "Deleted owner {userinstance_id}" +msgstr "" + +#: instances/views.py:1052 +msgid "User '{quota_msg}' quota reached, cannot create '{clone_data['name']}'!" +msgstr "" + +#: instances/views.py:1055 +msgid "Instance '{clone_data['name']}' already exists!" +msgstr "" + +#: instances/views.py:1058 +msgid "Instance name '{clone_data['name']}' contains invalid characters!" +msgstr "" + +#: instances/views.py:1061 +msgid "Instance MAC '{clone_data['clone-net-mac-0']}' invalid format!" +msgstr "" + +#: instances/views.py:1071 +#, python-brace-format +msgid "Clone of '{instance.name}'" +msgstr "" + +#: instances/views.py:1104 msgid "" "Error setting console password. You should check that your instance have an " "graphic device." msgstr "" -#: instances/views.py:800 +#: instances/views.py:1107 msgid "Set VNC password" msgstr "" -#: instances/views.py:811 +#: instances/views.py:1115 msgid "Set VNC keymap" msgstr "" -#: instances/views.py:817 +#: instances/views.py:1120 msgid "Set VNC type" msgstr "" -#: instances/views.py:821 -msgid "Console type not supported" -msgstr "" - -#: instances/views.py:828 +#: instances/views.py:1125 msgid "Set VNC listen address" msgstr "" -#: instances/views.py:840 -#, python-brace-format -msgid "Set Quest Agent {status}" -msgstr "" - -#: instances/views.py:847 -msgid "Set Video Model" -msgstr "" - -#: instances/views.py:872 -msgid "Change network" -msgstr "" - -#: instances/views.py:885 -msgid "Network Device Config is changed. Please shutdown instance to activate." -msgstr "" - -#: instances/views.py:890 -msgid "Add network" -msgstr "" - -#: instances/views.py:900 -msgid "Delete network" -msgstr "" - -#: instances/views.py:912 -#, python-brace-format -msgid "Set Link State: {state}" -msgstr "" - -#: instances/views.py:928 -msgid "{qos_dir.capitalize()} QoS is set" -msgstr "" - -#: instances/views.py:931 networks/views.py:216 -msgid "{qos_dir.capitalize()} QoS is set. Network XML is changed." -msgstr "" - -#: instances/views.py:932 networks/views.py:217 -msgid "Stop and start network to activate new config" -msgstr "" - -#: instances/views.py:943 networks/views.py:233 -msgid "{qos_dir.capitalize()} QoS is deleted" -msgstr "" - -#: instances/views.py:946 networks/views.py:230 -msgid "{qos_dir.capitalize()} QoS is deleted. Network XML is changed. " -msgstr "" - -#: instances/views.py:947 networks/views.py:231 -msgid "Stop and start network to activate new config." -msgstr "" - -#: instances/views.py:959 -msgid "Only one owner is allowed and the one already added" -msgstr "" - -#: instances/views.py:964 -#, python-brace-format -msgid "Added owner {user_id}" -msgstr "" - -#: instances/views.py:972 -#, python-brace-format -msgid "Deleted owner {userinstance_id}" -msgstr "" - -#: instances/views.py:1001 -msgid "User '{quota_msg}' quota reached, cannot create '{clone_data['name']}'!" -msgstr "" - -#: instances/views.py:1004 -msgid "Instance '{clone_data['name']}' already exists!" -msgstr "" - -#: instances/views.py:1007 -msgid "Instance name '{clone_data['name']}' contains invalid characters!" -msgstr "" - -#: instances/views.py:1011 -msgid "Instance MAC '{clone_data['clone-net-mac-0']}' invalid format!" -msgstr "" - -#: instances/views.py:1027 -#, python-brace-format -msgid "Clone of '{instance.name}'" -msgstr "" - -#: instances/views.py:1046 +#: instances/views.py:1148 msgid "Edit options" msgstr "" -#: instances/views.py:1103 -msgid "Deleting due to multiple(Instance Name) records." -msgstr "" - -#: instances/views.py:1111 -msgid "Deleting due to multiple(UUID) records." -msgstr "" - -#: instances/views.py:1160 -#, python-brace-format -msgid "Problem occurred with host: {comp.name} - {status}" -msgstr "" - -#: instances/views.py:1218 +#: instances/views.py:1162 msgid "Send console.vv file" msgstr "" +#: instances/views.py:1214 instances/views.py:1307 +msgid "A virtual machine with this name already exists" +msgstr "" + +#: instances/views.py:1288 +msgid "You haven't defined any storage pools" +msgstr "" + +#: instances/views.py:1291 +msgid "You haven't defined any network pools" +msgstr "" + +#: instances/views.py:1310 +msgid "There is an instance with same name. Are you sure?" +msgstr "" + +#: instances/views.py:1313 +msgid "No Virtual Machine MAC has been entered" +msgstr "" + +#: instances/views.py:1337 +msgid "Image has already exist. Please check volumes or change instance name" +msgstr "" + +#: instances/views.py:1358 +msgid "First you need to create or select an image" +msgstr "" + +#: instances/views.py:1377 +msgid "Invalid cache mode" +msgstr "" + +#: instances/views.py:1414 +msgid "Instance is created" +msgstr "" + +#: instances/views.py:1433 +msgid "Flavor Created" +msgstr "" + +#: instances/views.py:1441 +msgid "Create Flavor" +msgstr "" + +#: instances/views.py:1452 +msgid "Flavor Updated" +msgstr "" + +#: instances/views.py:1460 +msgid "Update Flavor" +msgstr "" + +#: instances/views.py:1470 +msgid "Flavor Deleted" +msgstr "" + #: interfaces/forms.py:25 msgid "The IPv4 address must not contain any special characters" msgstr "" @@ -2825,6 +2898,17 @@ msgstr "" msgid "hotplug" msgstr "" +#: interfaces/templates/create_iface_block.html:44 +#: interfaces/templates/interface.html:77 +#: interfaces/templates/interfaces.html:62 +#: storages/templates/create_stg_block.html:35 +#: storages/templates/create_stg_block.html:64 +#: storages/templates/create_stg_block.html:93 +#: storages/templates/create_stg_block.html:158 +#: storages/templates/storages.html:64 +msgid "Type" +msgstr "" + #: interfaces/templates/create_iface_block.html:47 msgid "bridge" msgstr "" @@ -2903,12 +2987,12 @@ msgstr "" #: interfaces/templates/interface.html:56 #: interfaces/templates/interface.html:79 networks/templates/network.html:48 -#: storages/templates/storage.html:58 +#: storages/templates/storage.html:57 msgid "State" msgstr "" #: interfaces/templates/interface.html:63 networks/templates/network.html:55 -#: storages/templates/storage.html:66 +#: storages/templates/storage.html:65 msgid "Stop" msgstr "" @@ -2924,6 +3008,22 @@ msgstr "" msgid "Hypervisor doesn't have any Interfaces" msgstr "" +#: logs/models.py:6 +msgid "user" +msgstr "" + +#: logs/models.py:7 +msgid "instance" +msgstr "" + +#: logs/models.py:8 +msgid "message" +msgstr "" + +#: logs/models.py:9 +msgid "date" +msgstr "" + #: networks/forms.py:7 storages/forms.py:7 msgid "No pool name has been entered" msgstr "" @@ -2936,11 +3036,11 @@ msgstr "" msgid "No IPv6 subnet has been entered" msgstr "" -#: networks/forms.py:24 storages/forms.py:25 +#: networks/forms.py:24 storages/forms.py:22 msgid "The pool name must not contain any special characters" msgstr "" -#: networks/forms.py:26 storages/forms.py:27 +#: networks/forms.py:26 storages/forms.py:24 msgid "The pool name must not exceed 20 characters" msgstr "" @@ -3109,6 +3209,17 @@ msgstr "" msgid "IPv4 Fixed Addresses" msgstr "" +#: networks/templates/network.html:161 networks/templates/network.html:271 +#: nwfilters/templates/nwfilters.html:88 +msgid "Show" +msgstr "" + +#: networks/templates/network.html:169 networks/templates/network.html:279 +#: venv/lib/python3.6/site-packages/django/forms/widgets.py:395 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:377 +msgid "Clear" +msgstr "" + #: networks/templates/network.html:192 networks/templates/network.html:301 msgid "Edit entry" msgstr "" @@ -3290,7 +3401,7 @@ msgid "Private" msgstr "" #: secrets/templates/create_secret_block.html:36 -#: storages/templates/storage.html:56 +#: storages/templates/storage.html:55 msgid "Usage" msgstr "" @@ -3315,27 +3426,27 @@ msgstr "" msgid "Value" msgstr "" -#: storages/forms.py:10 storages/forms.py:39 +#: storages/forms.py:9 storages/forms.py:36 msgid "No path has been entered" msgstr "" -#: storages/forms.py:36 +#: storages/forms.py:33 msgid "The target must not contain any special characters" msgstr "" -#: storages/forms.py:48 +#: storages/forms.py:45 msgid "No device or path has been entered" msgstr "" -#: storages/forms.py:50 +#: storages/forms.py:47 msgid "The disk source must not contain any special characters" msgstr "" -#: storages/forms.py:66 storages/forms.py:85 +#: storages/forms.py:61 storages/forms.py:76 msgid "The image name must not contain any special characters" msgstr "" -#: storages/forms.py:68 storages/forms.py:87 +#: storages/forms.py:78 msgid "The image name must not exceed 120 characters" msgstr "" @@ -3404,66 +3515,63 @@ msgstr "" msgid "Local Path" msgstr "" -#: storages/templates/create_stg_vol_block.html:14 +#: storages/templates/create_stg_vol_block.html:15 msgid "Upload ISO Image" msgstr "" -#: storages/templates/create_stg_vol_block.html:28 +#: storages/templates/create_stg_vol_block.html:29 msgid "Upload" msgstr "" -#: storages/templates/create_stg_vol_block.html:45 +#: storages/templates/create_stg_vol_block.html:46 msgid "Add New Volume" msgstr "" -#: storages/templates/create_stg_vol_block.html:60 -#: storages/templates/storage.html:144 -msgid "qcow2" -msgstr "" - -#: storages/templates/create_stg_vol_block.html:61 -#: storages/templates/storage.html:143 -msgid "qcow" -msgstr "" - -#: storages/templates/create_stg_vol_block.html:62 -#: storages/templates/storage.html:142 -msgid "raw" -msgstr "" - -#: storages/templates/storage.html:46 +#: storages/templates/storage.html:45 msgid "Pool name" msgstr "" -#: storages/templates/storage.html:48 +#: storages/templates/storage.html:47 msgid "Pool type" msgstr "" -#: storages/templates/storage.html:50 +#: storages/templates/storage.html:49 msgid "Pool path" msgstr "" -#: storages/templates/storage.html:52 +#: storages/templates/storage.html:51 msgid "Pool status" msgstr "" -#: storages/templates/storage.html:87 storages/templates/storages.html:68 +#: storages/templates/storage.html:86 storages/templates/storages.html:68 msgid "Volumes" msgstr "" -#: storages/templates/storage.html:99 +#: storages/templates/storage.html:98 msgid "Allocated" msgstr "" -#: storages/templates/storage.html:120 +#: storages/templates/storage.html:119 msgid "Clone image" msgstr "" -#: storages/templates/storage.html:133 +#: storages/templates/storage.html:132 msgid "Convert" msgstr "" -#: storages/templates/storage.html:189 +#: storages/templates/storage.html:141 +msgid "raw" +msgstr "" + +#: storages/templates/storage.html:142 +msgid "qcow" +msgstr "" + +#: storages/templates/storage.html:143 +msgid "qcow2" +msgstr "" + +#: storages/templates/storage.html:188 msgid "Hypervisor doesn't have any Volumes" msgstr "" @@ -3471,44 +3579,44 @@ msgstr "" msgid "Hypervisor doesn't have any Storages" msgstr "" -#: storages/views.py:38 +#: storages/views.py:40 msgid "Pool name already use" msgstr "" -#: storages/views.py:42 +#: storages/views.py:44 msgid "You need create secret for pool" msgstr "" -#: storages/views.py:45 +#: storages/views.py:47 msgid "You need input all fields for creating ceph pool" msgstr "" -#: storages/views.py:153 -#, python-brace-format -msgid "Image file {name} is created successfully" -msgstr "" - -#: storages/views.py:165 +#: storages/views.py:129 #, python-brace-format msgid "Volume: {volname} is deleted." msgstr "" -#: storages/views.py:171 +#: storages/views.py:134 msgid "ISO image already exist" msgstr "" -#: storages/views.py:175 +#: storages/views.py:138 msgid "ISO: {request.FILES['file']} is uploaded." msgstr "" -#: storages/views.py:184 +#: storages/views.py:147 msgid "Name of volume already in use" msgstr "" -#: storages/views.py:195 +#: storages/views.py:157 msgid "{data['image']} image cloned as {name} successfully" msgstr "" +#: storages/views.py:196 +#, python-brace-format +msgid "Image file {name} is created successfully" +msgstr "" + #: templates/403.html:3 msgid "403" msgstr "" @@ -3555,6 +3663,10 @@ msgid "" "to complete you request." msgstr "" +#: templates/common/confirm_delete.html:12 +msgid "Are you sure you want to delete" +msgstr "" + #: templates/errors_block.html:8 msgid "Error" msgstr "" @@ -3578,57 +3690,71 @@ msgid "close" msgstr "" #: venv/lib/python3.6/site-packages/django/contrib/messages/apps.py:7 +#: venv2/lib/python2.7/site-packages/django/contrib/messages/apps.py:7 msgid "Messages" msgstr "" #: venv/lib/python3.6/site-packages/django/contrib/sitemaps/apps.py:7 +#: venv2/lib/python2.7/site-packages/django/contrib/sitemaps/apps.py:7 msgid "Site Maps" msgstr "" #: venv/lib/python3.6/site-packages/django/contrib/staticfiles/apps.py:9 +#: venv2/lib/python2.7/site-packages/django/contrib/staticfiles/apps.py:7 msgid "Static Files" msgstr "" #: venv/lib/python3.6/site-packages/django/contrib/syndication/apps.py:7 +#: venv2/lib/python2.7/site-packages/django/contrib/syndication/apps.py:7 msgid "Syndication" msgstr "" #: venv/lib/python3.6/site-packages/django/core/paginator.py:45 +#: venv2/lib/python2.7/site-packages/django/core/paginator.py:43 msgid "That page number is not an integer" msgstr "" #: venv/lib/python3.6/site-packages/django/core/paginator.py:47 +#: venv2/lib/python2.7/site-packages/django/core/paginator.py:45 msgid "That page number is less than 1" msgstr "" #: venv/lib/python3.6/site-packages/django/core/paginator.py:52 +#: venv2/lib/python2.7/site-packages/django/core/paginator.py:50 msgid "That page contains no results" msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:31 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:34 msgid "Enter a valid value." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:102 #: venv/lib/python3.6/site-packages/django/forms/fields.py:658 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:107 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:671 msgid "Enter a valid URL." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:154 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:160 msgid "Enter a valid integer." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:165 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:171 msgid "Enter a valid email address." msgstr "" #. Translators: "letters" means latin letters: a-z and A-Z. #: venv/lib/python3.6/site-packages/django/core/validators.py:239 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:245 msgid "" "Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:246 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:252 msgid "" "Enter a valid 'slug' consisting of Unicode letters, numbers, underscores, or " "hyphens." @@ -3636,39 +3762,51 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:255 #: venv/lib/python3.6/site-packages/django/core/validators.py:275 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:257 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:277 msgid "Enter a valid IPv4 address." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:260 #: venv/lib/python3.6/site-packages/django/core/validators.py:276 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:262 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:278 msgid "Enter a valid IPv6 address." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:270 #: venv/lib/python3.6/site-packages/django/core/validators.py:274 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:272 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:276 msgid "Enter a valid IPv4 or IPv6 address." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:304 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:308 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1131 msgid "Enter only digits separated by commas." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:310 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:314 #, python-format msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:342 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:345 #, python-format msgid "Ensure this value is less than or equal to %(limit_value)s." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:351 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:354 #, python-format msgid "Ensure this value is greater than or equal to %(limit_value)s." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:361 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:364 #, python-format msgid "" "Ensure this value has at least %(limit_value)d character (it has " @@ -3680,6 +3818,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:376 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:379 #, python-format msgid "" "Ensure this value has at most %(limit_value)d character (it has " @@ -3693,10 +3832,13 @@ msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:395 #: venv/lib/python3.6/site-packages/django/forms/fields.py:290 #: venv/lib/python3.6/site-packages/django/forms/fields.py:325 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:303 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:340 msgid "Enter a number." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:397 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:399 #, python-format msgid "Ensure that there are no more than %(max)s digit in total." msgid_plural "Ensure that there are no more than %(max)s digits in total." @@ -3704,6 +3846,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:402 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:404 #, python-format msgid "Ensure that there are no more than %(max)s decimal place." msgid_plural "Ensure that there are no more than %(max)s decimal places." @@ -3711,6 +3854,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:407 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:409 #, python-format msgid "" "Ensure that there are no more than %(max)s digit before the decimal point." @@ -3720,6 +3864,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:469 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:463 #, python-format msgid "" "File extension '%(extension)s' is not allowed. Allowed extensions are: " @@ -3732,28 +3877,35 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/base.py:1162 #: venv/lib/python3.6/site-packages/django/forms/models.py:756 +#: venv2/lib/python2.7/site-packages/django/db/models/base.py:1209 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:749 msgid "and" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/base.py:1164 +#: venv2/lib/python2.7/site-packages/django/db/models/base.py:1211 #, python-format msgid "%(model_name)s with this %(field_labels)s already exists." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:104 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:116 #, python-format msgid "Value %(value)r is not a valid choice." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:105 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:117 msgid "This field cannot be null." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:106 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:118 msgid "This field cannot be blank." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:107 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:119 #, python-format msgid "%(model_name)s with this %(field_label)s already exists." msgstr "" @@ -3761,33 +3913,42 @@ msgstr "" #. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. #. Eg: "Title must be unique for pub_date year" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:111 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:123 #, python-format msgid "" "%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:128 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:140 #, python-format msgid "Field of type: %(field_type)s" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:905 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1772 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:901 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1809 msgid "Integer" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:909 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1770 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:905 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1807 #, python-format msgid "'%(value)s' value must be an integer." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:984 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1850 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:978 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1878 msgid "Big (8 byte) integer" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:996 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:990 #, python-format msgid "'%(value)s' value must be either True or False." msgstr "" @@ -3798,19 +3959,23 @@ msgid "'%(value)s' value must be either True, False, or None." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:999 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:992 msgid "Boolean (Either True or False)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1040 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1058 #, python-format msgid "String (up to %(max_length)s)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1104 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1115 msgid "Comma-separated integers" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1153 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1172 #, python-format msgid "" "'%(value)s' value has an invalid date format. It must be in YYYY-MM-DD " @@ -3819,6 +3984,8 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1155 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1298 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1174 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1319 #, python-format msgid "" "'%(value)s' value has the correct format (YYYY-MM-DD) but it is an invalid " @@ -3826,10 +3993,12 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1158 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1177 msgid "Date (without time)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1296 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1317 #, python-format msgid "" "'%(value)s' value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." @@ -3837,6 +4006,7 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1300 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1321 #, python-format msgid "" "'%(value)s' value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" @@ -3844,19 +4014,23 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1304 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1325 msgid "Date (with time)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1452 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1475 #, python-format msgid "'%(value)s' value must be a decimal number." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1454 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1477 msgid "Decimal number" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1593 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1628 #, python-format msgid "" "'%(value)s' value has an invalid format. It must be in [DD] [HH:[MM:]]ss[." @@ -3864,66 +4038,81 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1596 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1631 msgid "Duration" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1646 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1683 msgid "Email address" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1669 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1707 msgid "File path" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1735 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1773 #, python-format msgid "'%(value)s' value must be a float." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1737 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1775 msgid "Floating point number" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1866 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1893 msgid "IPv4 address" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1897 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1924 msgid "IP address" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1977 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1978 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2006 #, python-format msgid "'%(value)s' value must be either None, True or False." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1980 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2008 msgid "Boolean (Either True, False or None)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2015 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2071 msgid "Positive integer" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2028 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2083 msgid "Positive small integer" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2042 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2096 #, python-format msgid "Slug (up to %(max_length)s)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2074 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2130 msgid "Small integer" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2081 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2137 msgid "Text" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2109 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2163 #, python-format msgid "" "'%(value)s' value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " @@ -3931,6 +4120,7 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2111 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2165 #, python-format msgid "" "'%(value)s' value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " @@ -3938,18 +4128,22 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2114 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2168 msgid "Time" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2240 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2296 msgid "URL" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2262 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2319 msgid "Raw binary data" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2312 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2366 #, python-format msgid "'%(value)s' is not a valid UUID." msgstr "" @@ -3959,65 +4153,81 @@ msgid "Universally unique identifier" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/files.py:221 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/files.py:228 msgid "File" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:778 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:788 #, python-format msgid "%(model)s instance with %(field)s %(value)r does not exist." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:780 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:790 msgid "Foreign Key (type determined by related field)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:1007 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:1029 msgid "One-to-one relationship" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:1057 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:1104 #, python-format msgid "%(from)s-%(to)s relationship" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:1058 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:1105 #, python-format msgid "%(from)s-%(to)s relationships" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:1100 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:1147 msgid "Many-to-many relationship" msgstr "" #. Translators: If found as last label character, these punctuation #. characters will prevent the default label_suffix to be appended to the label #: venv/lib/python3.6/site-packages/django/forms/boundfield.py:146 +#: venv2/lib/python2.7/site-packages/django/forms/boundfield.py:181 msgid ":?.!" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:53 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:56 msgid "This field is required." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:245 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:258 msgid "Enter a whole number." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:396 #: venv/lib/python3.6/site-packages/django/forms/fields.py:1126 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:418 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:1149 msgid "Enter a valid date." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:420 #: venv/lib/python3.6/site-packages/django/forms/fields.py:1127 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:442 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:1150 msgid "Enter a valid time." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:442 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:464 msgid "Enter a valid date/time." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:471 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:493 msgid "Enter a valid duration." msgstr "" @@ -4027,18 +4237,22 @@ msgid "The number of days must be between {min_days} and {max_days}." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:532 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:547 msgid "No file was submitted. Check the encoding type on the form." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:533 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:548 msgid "No file was submitted." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:534 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:549 msgid "The submitted file is empty." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:536 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:551 #, python-format msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." msgid_plural "" @@ -4047,10 +4261,12 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:539 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:554 msgid "Please either submit a file or check the clear checkbox, not both." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:600 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:619 msgid "" "Upload a valid image. The file you uploaded was either not an image or a " "corrupted image." @@ -4059,6 +4275,9 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:762 #: venv/lib/python3.6/site-packages/django/forms/fields.py:852 #: venv/lib/python3.6/site-packages/django/forms/models.py:1270 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:776 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:872 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1265 #, python-format msgid "Select a valid choice. %(value)s is not one of the available choices." msgstr "" @@ -4066,32 +4285,41 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:853 #: venv/lib/python3.6/site-packages/django/forms/fields.py:968 #: venv/lib/python3.6/site-packages/django/forms/models.py:1269 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:873 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:990 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1264 msgid "Enter a list of values." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:969 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:991 msgid "Enter a complete value." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:1185 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:1208 msgid "Enter a valid UUID." msgstr "" #. Translators: This is the default suffix added to form field labels #: venv/lib/python3.6/site-packages/django/forms/forms.py:86 +#: venv2/lib/python2.7/site-packages/django/forms/forms.py:87 msgid ":" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/forms.py:212 +#: venv2/lib/python2.7/site-packages/django/forms/forms.py:213 #, python-format msgid "(Hidden field %(name)s) %(error)s" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/formsets.py:91 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:97 msgid "ManagementForm data is missing or has been tampered with" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/formsets.py:338 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:355 #, python-format msgid "Please submit %d or fewer forms." msgid_plural "Please submit %d or fewer forms." @@ -4099,6 +4327,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/forms/formsets.py:345 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:362 #, python-format msgid "Please submit %d or more forms." msgid_plural "Please submit %d or more forms." @@ -4107,20 +4336,25 @@ msgstr[1] "" #: venv/lib/python3.6/site-packages/django/forms/formsets.py:371 #: venv/lib/python3.6/site-packages/django/forms/formsets.py:373 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:390 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:392 msgid "Order" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:751 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:744 #, python-format msgid "Please correct the duplicate data for %(field)s." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:755 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:748 #, python-format msgid "Please correct the duplicate data for %(field)s, which must be unique." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:761 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:754 #, python-format msgid "" "Please correct the duplicate data for %(field_name)s which must be unique " @@ -4128,6 +4362,7 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:770 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:763 msgid "Please correct the duplicate values below." msgstr "" @@ -4136,6 +4371,7 @@ msgid "The inline value did not match the parent instance." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:1158 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1154 msgid "Select a valid choice. That choice is not one of the available choices." msgstr "" @@ -4145,6 +4381,7 @@ msgid "\"%(pk)s\" is not a valid value." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/utils.py:162 +#: venv2/lib/python2.7/site-packages/django/forms/utils.py:172 #, python-format msgid "" "%(datetime)s couldn't be interpreted in time zone %(current_timezone)s; it " @@ -4152,23 +4389,29 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/widgets.py:396 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:378 msgid "Currently" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/widgets.py:710 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:704 msgid "Yes" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/widgets.py:711 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:705 msgid "No" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:788 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:851 msgid "yes,no,maybe" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:817 #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:834 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:880 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:897 #, python-format msgid "%(size)d byte" msgid_plural "%(size)d bytes" @@ -4176,327 +4419,401 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:836 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:899 #, python-format msgid "%s KB" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:838 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:901 #, python-format msgid "%s MB" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:840 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:903 #, python-format msgid "%s GB" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:842 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:905 #, python-format msgid "%s TB" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:844 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:907 #, python-format msgid "%s PB" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:62 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:66 msgid "p.m." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:63 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:67 msgid "a.m." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:68 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:72 msgid "PM" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:69 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:73 msgid "AM" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:150 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:158 msgid "midnight" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:152 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:160 msgid "noon" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Monday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Tuesday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Wednesday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Thursday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Friday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:7 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:7 msgid "Saturday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:7 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:7 msgid "Sunday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Mon" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Tue" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Wed" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Thu" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Fri" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:11 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:11 msgid "Sat" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:11 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:11 msgid "Sun" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "January" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "February" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "March" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "April" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "May" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "June" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "July" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "August" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "September" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "October" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "November" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:16 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:20 msgid "December" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "jan" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "feb" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "mar" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "apr" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "may" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "jun" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "jul" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "aug" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "sep" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "oct" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "nov" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "dec" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:23 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:31 msgctxt "abbrev. month" msgid "Jan." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:24 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:32 msgctxt "abbrev. month" msgid "Feb." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:25 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:33 msgctxt "abbrev. month" msgid "March" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:26 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:34 msgctxt "abbrev. month" msgid "April" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:27 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:35 msgctxt "abbrev. month" msgid "May" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:28 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:36 msgctxt "abbrev. month" msgid "June" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:29 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:37 msgctxt "abbrev. month" msgid "July" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:30 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:38 msgctxt "abbrev. month" msgid "Aug." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:31 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:39 msgctxt "abbrev. month" msgid "Sept." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:32 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:40 msgctxt "abbrev. month" msgid "Oct." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:33 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:41 msgctxt "abbrev. month" msgid "Nov." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:34 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:42 msgctxt "abbrev. month" msgid "Dec." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:37 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:45 msgctxt "alt. month" msgid "January" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:38 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:46 msgctxt "alt. month" msgid "February" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:39 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:47 msgctxt "alt. month" msgid "March" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:40 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:48 msgctxt "alt. month" msgid "April" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:41 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:49 msgctxt "alt. month" msgid "May" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:42 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:50 msgctxt "alt. month" msgid "June" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:43 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:51 msgctxt "alt. month" msgid "July" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:44 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:52 msgctxt "alt. month" msgid "August" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:45 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:53 msgctxt "alt. month" msgid "September" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:46 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:54 msgctxt "alt. month" msgid "October" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:47 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:55 msgctxt "alt. month" msgid "November" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:48 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:56 msgctxt "alt. month" msgid "December" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/ipv6.py:8 +#: venv2/lib/python2.7/site-packages/django/utils/ipv6.py:12 msgid "This is not a valid IPv6 address." msgstr "" @@ -4507,16 +4824,20 @@ msgid "%(truncated_text)s…" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/text.py:233 +#: venv2/lib/python2.7/site-packages/django/utils/text.py:251 msgid "or" msgstr "" #. Translators: This string is used as a separator between list elements #: venv/lib/python3.6/site-packages/django/utils/text.py:252 #: venv/lib/python3.6/site-packages/django/utils/timesince.py:83 +#: venv2/lib/python2.7/site-packages/django/utils/text.py:270 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:71 msgid ", " msgstr "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:9 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:11 #, python-format msgid "%d year" msgid_plural "%d years" @@ -4524,6 +4845,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:12 #, python-format msgid "%d month" msgid_plural "%d months" @@ -4531,6 +4853,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:11 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:13 #, python-format msgid "%d week" msgid_plural "%d weeks" @@ -4538,6 +4861,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:12 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:14 #, python-format msgid "%d day" msgid_plural "%d days" @@ -4545,6 +4869,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:13 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:15 #, python-format msgid "%d hour" msgid_plural "%d hours" @@ -4552,6 +4877,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:16 #, python-format msgid "%d minute" msgid_plural "%d minutes" @@ -4559,18 +4885,22 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:72 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:60 msgid "0 minutes" msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:110 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:109 msgid "Forbidden" msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:111 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:110 msgid "CSRF verification failed. Request aborted." msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:115 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:114 msgid "" "You are seeing this message because this HTTPS site requires a 'Referer " "header' to be sent by your Web browser, but none was sent. This header is " @@ -4579,6 +4909,7 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:120 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:119 msgid "" "If you have configured your browser to disable 'Referer' headers, please re-" "enable them, at least for this site, or for HTTPS connections, or for 'same-" @@ -4595,6 +4926,7 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:132 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:124 msgid "" "You are seeing this message because this site requires a CSRF cookie when " "submitting forms. This cookie is required for security reasons, to ensure " @@ -4602,44 +4934,56 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:137 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:129 msgid "" "If you have configured your browser to disable cookies, please re-enable " "them, at least for this site, or for 'same-origin' requests." msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:142 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:134 msgid "More information is available with DEBUG=True." msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:41 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:48 msgid "No year specified" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:61 #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:111 #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:208 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:72 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:132 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:249 msgid "Date out of range" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:90 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:107 msgid "No month specified" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:142 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:169 msgid "No day specified" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:188 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:225 msgid "No week specified" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:338 #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:367 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:387 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:415 #, python-format msgid "No %(verbose_name_plural)s available" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:589 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:669 #, python-format msgid "" "Future %(verbose_name_plural)s not available because %(class_name)s." @@ -4647,39 +4991,47 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:623 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:703 #, python-format msgid "Invalid date string '%(datestr)s' given format '%(format)s'" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/detail.py:54 +#: venv2/lib/python2.7/site-packages/django/views/generic/detail.py:55 #, python-format msgid "No %(verbose_name)s found matching the query" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/list.py:67 +#: venv2/lib/python2.7/site-packages/django/views/generic/list.py:77 msgid "Page is not 'last', nor can it be converted to an int." msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/list.py:72 +#: venv2/lib/python2.7/site-packages/django/views/generic/list.py:82 #, python-format msgid "Invalid page (%(page_number)s): %(message)s" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/list.py:154 +#: venv2/lib/python2.7/site-packages/django/views/generic/list.py:172 #, python-format msgid "Empty list and '%(class_name)s.allow_empty' is False." msgstr "" #: venv/lib/python3.6/site-packages/django/views/static.py:40 +#: venv2/lib/python2.7/site-packages/django/views/static.py:44 msgid "Directory indexes are not allowed here." msgstr "" #: venv/lib/python3.6/site-packages/django/views/static.py:42 +#: venv2/lib/python2.7/site-packages/django/views/static.py:46 #, python-format msgid "\"%(path)s\" does not exist" msgstr "" #: venv/lib/python3.6/site-packages/django/views/static.py:80 +#: venv2/lib/python2.7/site-packages/django/views/static.py:86 #, python-format msgid "Index of %(directory)s" msgstr "" @@ -4731,3 +5083,271 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/views/templates/default_urlconf.html:408 msgid "Connect, get help, or contribute" msgstr "" + +#: venv/lib/python3.6/site-packages/django_icons/renderers/image.py:217 +msgid "Icon of {}" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:58 +msgid "Please enter your OTP token." +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:59 +#, python-brace-format +msgid "Error generating challenge: {0}" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:60 +msgid "The selected OTP device is not interactive" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:61 +#, python-brace-format +msgid "OTP Challenge: {0}" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:62 +msgid "Invalid token. Please make sure you have entered it correctly." +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:64 +#, python-format +msgid "" +"Verification temporarily disabled because of %(failure_count)d failed " +"attempt, please try again soon." +msgid_plural "" +"Verification temporarily disabled because of %(failure_count)d failed " +"attempts, please try again soon." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:67 +msgid "Verification of the token is currently disabled" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:36 +msgid "Please correct the error below." +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:36 +msgid "Please correct the errors below." +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:52 +#, python-format +msgid "" +"You are authenticated as %(username)s, but are not authorized to access this " +"page. Would you like to login to a different account?" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:72 +msgid "OTP Device:" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:77 +msgid "OTP Token:" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:82 +msgid "Forgotten your password or username?" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:86 +msgid "Log in" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:88 +msgid "Get OTP Challenge" +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1093 +msgid "The inline foreign key did not match the parent instance primary key." +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1267 +#, python-format +msgid "\"%(pk)s\" is not a valid value for a primary key." +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/utils/text.py:81 +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s..." +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:520 +msgid "Welcome to Django" +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:521 +msgid "It worked!" +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:522 +msgid "Congratulations on your first Django-powered page." +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:524 +msgid "" +"Next, start your first app by running python manage.py startapp " +"[app_label]." +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:527 +msgid "" +"You're seeing this message because you have DEBUG = True in " +"your Django settings file and you haven't configured any URLs. Get to work!" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:313 +msgid "usage: " +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:821 +msgid ".__call__() not defined" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1105 +#, python-format +msgid "unknown parser %r (choices: %s)" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1146 +#, python-format +msgid "argument \"-\" with mode %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1349 +#, python-format +msgid "cannot merge actions - two groups are named %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1387 +msgid "'required' is an invalid argument for positionals" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1407 +#, python-format +msgid "invalid option string %r: must start with a character %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1428 +#, python-format +msgid "dest= is required for options like %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1445 +#, python-format +msgid "invalid conflict_resolution value: %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1463 +#, python-format +msgid "conflicting option string(s): %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1526 +msgid "mutually exclusive arguments must be optional" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1596 +msgid "positional arguments" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1597 +msgid "optional arguments" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1615 +msgid "show this help message and exit" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1621 +msgid "show program's version number and exit" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1653 +msgid "cannot have multiple subparser arguments" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1705 +#, python-format +msgid "unrecognized arguments: %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1802 +#, python-format +msgid "not allowed with argument %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1848 +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1862 +#, python-format +msgid "ignored explicit argument %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1952 +msgid "too few arguments" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1959 +#, python-format +msgid "argument %s is required" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1973 +#, python-format +msgid "one of the arguments %s is required" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2019 +msgid "expected one argument" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2020 +msgid "expected at most one argument" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2021 +msgid "expected at least one argument" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2023 +#, python-format +msgid "expected %s argument(s)" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2080 +#, python-format +msgid "ambiguous option: %s could match %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2142 +#, python-format +msgid "unexpected option string: %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2243 +#, python-format +msgid "%r is not callable" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2259 +#, python-format +msgid "invalid %s value: %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2269 +#, python-format +msgid "invalid choice: %r (choose from %s)" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2362 +#, python-format +msgid "%s: error: %s\n" +msgstr "" + +#: webvirtcloud/middleware.py:21 +#, python-format +msgid "libvirt Error - %(exception)s" +msgstr "" diff --git a/locale/en/LC_MESSAGES/django.po b/locale/en/LC_MESSAGES/django.po index e082b66..8572384 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-12 09:02+0000\n" +"POT-Creation-Date: 2020-07-20 09:29+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,253 +18,181 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: accounts/forms.py:10 -msgid "No username has been entered" +#: accounts/forms.py:24 +msgid "Instance owned by another user" msgstr "" -#: accounts/forms.py:13 -msgid "No password has been entered" -msgstr "" - -#: accounts/forms.py:19 create/forms.py:23 -msgid "The flavor name must not contain any special characters" -msgstr "" - -#: accounts/forms.py:21 create/forms.py:25 -msgid "The flavor name must not exceed 20 characters" -msgstr "" - -#: accounts/forms.py:26 create/forms.py:30 -msgid "Flavor name is already use" -msgstr "" - -#: accounts/models.py:22 -msgid "key name" -msgstr "" - -#: accounts/models.py:23 -msgid "public key" +#: accounts/models.py:24 +#, python-format +msgid "Instance \"%(inst)s\" of user %(user)s" msgstr "" #: accounts/models.py:32 +msgid "key name" +msgstr "" + +#: accounts/models.py:33 +msgid "public key" +msgstr "" + +#: accounts/models.py:42 msgid "max instances" msgstr "" -#: accounts/models.py:34 accounts/models.py:41 accounts/models.py:47 -#: accounts/models.py:53 +#: accounts/models.py:44 accounts/models.py:51 accounts/models.py:57 +#: accounts/models.py:63 msgid "-1 for unlimited. Any integer value" msgstr "" -#: accounts/models.py:39 +#: accounts/models.py:49 msgid "max CPUs" msgstr "" -#: accounts/models.py:45 +#: accounts/models.py:55 msgid "max memory" msgstr "" -#: accounts/models.py:51 +#: accounts/models.py:61 msgid "max disk size" msgstr "" -#: accounts/models.py:89 +#: accounts/models.py:77 msgid "Can change password" msgstr "" -#: accounts/templates/account.html:3 admin/templates/admin/common/form.html:6 -#: admin/templates/admin/logs.html:32 admin/templates/admin/user_form.html:6 -#: instances/templates/add_instance_owner_block.html:18 -#: instances/templates/allinstances_index_grouped.html:7 -#: instances/templates/allinstances_index_nongrouped.html:6 -#: instances/templates/instance.html:1644 instances/templates/instances.html:71 -msgid "User" +#: accounts/templates/account.html:4 accounts/templates/account.html:12 +msgid "User Profile" msgstr "" -#: accounts/templates/account.html:23 accounts/templates/profile.html:98 -msgid "Key name" +#: accounts/templates/account.html:21 +#: computes/templates/computes/instances.html:5 +#: computes/templates/computes/instances.html:32 +#: computes/templates/overview.html:16 instances/templates/allinstances.html:5 +#: instances/templates/allinstances.html:9 +#: instances/templates/bottom_bar.html:17 +#: interfaces/templates/interface.html:14 +#: interfaces/templates/interfaces.html:17 networks/templates/network.html:16 +#: networks/templates/networks.html:20 nwfilters/templates/nwfilter.html:15 +#: nwfilters/templates/nwfilters.html:24 secrets/templates/secrets.html:20 +#: storages/templates/storage.html:20 storages/templates/storages.html:20 +#: templates/navbar.html:14 +msgid "Instances" msgstr "" -#: accounts/templates/account.html:24 accounts/templates/profile.html:104 -msgid "Public key" +#: accounts/templates/account.html:24 +msgid "Public Keys" msgstr "" -#: accounts/templates/account.html:47 accounts/templates/accounts-list.html:25 -#: accounts/templates/accounts.html:21 admin/templates/admin/group_list.html:24 -#: admin/templates/admin/logs.html:21 admin/templates/admin/user_list.html:25 -#: computes/templates/computes.html:241 -#: create/templates/create_instance_w2.html:70 -#: instances/templates/allinstances.html:33 -#: instances/templates/allinstances.html:49 -#: instances/templates/instances.html:61 -#: interfaces/templates/interfaces.html:47 networks/templates/networks.html:50 -#: nwfilters/templates/nwfilters.html:138 secrets/templates/secrets.html:50 -#: storages/templates/storage.html:189 storages/templates/storages.html:50 -msgid "Warning" -msgstr "" - -#: accounts/templates/account.html:47 -msgid "User doesn't have any Instance" -msgstr "" - -#: accounts/templates/account.html:56 -#: accounts/templates/create_user_inst_block.html:18 -#: admin/templates/admin/logs.html:33 instances/templates/instance.html:4 +#: accounts/templates/account.html:34 admin/templates/admin/logs.html:34 +#: instances/templates/instance.html:4 msgid "Instance" msgstr "" -#: accounts/templates/account.html:57 accounts/templates/account.html:88 +#: accounts/templates/account.html:35 msgid "VNC" msgstr "" -#: accounts/templates/account.html:58 accounts/templates/account.html:97 -#: instances/templates/instance.html:88 instances/templates/instance.html:412 -#: instances/templates/instance.html:414 instances/templates/instance.html:441 -#: instances/templates/instance.html:476 instances/templates/instance.html:480 -#: instances/templates/instance.html:497 instances/templates/instance.html:499 -#: instances/templates/instance.html:504 +#: accounts/templates/account.html:36 instances/templates/instance.html:87 +#: instances/templates/instances/resize_tab.html:56 +#: instances/templates/instances/resize_tab.html:58 +#: instances/templates/instances/resize_tab.html:85 +#: instances/templates/instances/resize_tab.html:121 +#: instances/templates/instances/resize_tab.html:125 +#: instances/templates/instances/resize_tab.html:151 +#: instances/templates/instances/resize_tab.html:153 +#: instances/templates/instances/resize_tab.html:158 msgid "Resize" msgstr "" -#: accounts/templates/account.html:59 accounts/templates/account.html:106 -#: accounts/templates/account.html:127 +#: accounts/templates/account.html:37 accounts/templates/account.html:55 #: accounts/templates/accounts-list.html:133 -#: accounts/templates/accounts.html:126 accounts/templates/profile.html:84 -#: admin/templates/admin/common/confirm_delete.html:6 -#: admin/templates/admin/common/confirm_delete.html:16 +#: accounts/templates/accounts.html:126 accounts/templates/profile.html:60 #: admin/templates/admin/common/list.html:22 #: admin/templates/admin/group_list.html:47 -#: admin/templates/admin/user_list.html:67 computes/templates/computes.html:98 -#: computes/templates/computes.html:142 computes/templates/computes.html:190 -#: computes/templates/computes.html:220 instances/templates/instance.html:873 -#: instances/templates/instance.html:880 interfaces/templates/interface.html:61 -#: networks/templates/network.html:53 nwfilters/templates/nwfilter.html:114 -#: nwfilters/templates/nwfilter.html:154 nwfilters/templates/nwfilters.html:123 -#: secrets/templates/secrets.html:77 storages/templates/storage.html:63 -#: storages/templates/storage.html:176 +#: admin/templates/admin/user_list.html:67 +#: computes/templates/computes/list.html:55 +#: instances/templates/instances/settings_tab.html:310 +#: instances/templates/instances/settings_tab.html:314 +#: interfaces/templates/interface.html:61 networks/templates/network.html:53 +#: nwfilters/templates/nwfilter.html:114 nwfilters/templates/nwfilter.html:154 +#: nwfilters/templates/nwfilters.html:123 secrets/templates/secrets.html:77 +#: storages/templates/storage.html:62 storages/templates/storage.html:175 +#: templates/common/confirm_delete.html:6 +#: templates/common/confirm_delete.html:16 #: venv/lib/python3.6/site-packages/django/forms/formsets.py:375 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:394 msgid "Delete" msgstr "" -#: accounts/templates/account.html:60 -#: create/templates/create_instance_w2.html:85 -#: instances/templates/instance.html:556 instances/templates/instance.html:831 +#: accounts/templates/account.html:38 +#: instances/templates/create_instance_w2.html:86 +#: instances/templates/instances/settings_tab.html:239 +#: instances/templates/instances/snapshots_tab.html:49 #: nwfilters/templates/nwfilter.html:104 nwfilters/templates/nwfilter.html:138 #: nwfilters/templates/nwfilters.html:60 secrets/templates/secrets.html:62 -#: storages/templates/storage.html:102 +#: storages/templates/storage.html:101 msgid "Action" msgstr "" -#: accounts/templates/account.html:81 -msgid "Edit privilegies for" +#: accounts/templates/account.html:50 +msgid "edit" msgstr "" -#: accounts/templates/account.html:91 accounts/templates/account.html:100 -#: accounts/templates/account.html:109 -msgid "False" +#: accounts/templates/account.html:68 accounts/templates/profile.html:74 +msgid "Key name" msgstr "" -#: accounts/templates/account.html:116 -#: accounts/templates/accounts-list.html:145 -#: accounts/templates/accounts.html:138 -#: accounts/templates/create_user_block.html:31 -#: accounts/templates/create_user_inst_block.html:29 -#: computes/templates/computes.html:101 computes/templates/computes.html:145 -#: computes/templates/computes.html:193 computes/templates/computes.html:223 -#: create/templates/create_flav_block.html:51 -#: create/templates/create_instance_w2.html:273 -#: instances/templates/add_instance_network_block.html:49 -#: instances/templates/add_instance_owner_block.html:29 -#: instances/templates/add_instance_volume.html:89 -#: instances/templates/add_instance_volume.html:144 -#: instances/templates/create_inst_block.html:34 -#: instances/templates/edit_instance_volume.html:123 -#: instances/templates/instance.html:993 -#: interfaces/templates/create_iface_block.html:135 -#: networks/templates/add_network_qos.html:50 -#: networks/templates/create_net_block.html:84 -#: networks/templates/modify_ipv4_fixed_address.html:44 -#: networks/templates/modify_ipv6_fixed_address.html:44 -#: nwfilters/templates/add_nwf_rule.html:25 -#: nwfilters/templates/create_nwfilter_block.html:23 -#: nwfilters/templates/nwfilters.html:83 nwfilters/templates/nwfilters.html:111 -#: secrets/templates/create_secret_block.html:54 -#: secrets/templates/secrets.html:102 -#: storages/templates/create_stg_block.html:55 -#: storages/templates/create_stg_block.html:84 -#: storages/templates/create_stg_block.html:140 -#: storages/templates/create_stg_block.html:202 -#: storages/templates/create_stg_block.html:230 -#: storages/templates/create_stg_vol_block.html:27 -#: storages/templates/create_stg_vol_block.html:81 -#: storages/templates/storage.html:156 -msgid "Close" -msgstr "" - -#: accounts/templates/account.html:117 accounts/templates/accounts-list.html:45 -#: accounts/templates/accounts-list.html:148 -#: accounts/templates/accounts.html:36 accounts/templates/accounts.html:141 -#: admin/templates/admin/common/list.html:16 -#: admin/templates/admin/group_list.html:44 -#: admin/templates/admin/user_list.html:61 computes/templates/computes.html:33 -#: networks/templates/network.html:85 nwfilters/templates/nwfilter.html:62 -#: secrets/templates/secrets.html:74 -msgid "Edit" -msgstr "" - -#: accounts/templates/account.html:127 accounts/templates/profile.html:84 -#: create/templates/create_instance_w2.html:291 -#: instances/templates/instance.html:581 instances/templates/instance.html:1004 -#: instances/templates/instance.html:1074 -#: instances/templates/instance.html:1079 -#: interfaces/templates/interface.html:61 -#: interfaces/templates/interface.html:63 networks/templates/network.html:53 -#: networks/templates/network.html:55 networks/templates/network.html:65 -#: networks/templates/network.html:139 networks/templates/network.html:192 -#: networks/templates/network.html:197 networks/templates/network.html:252 -#: networks/templates/network.html:301 networks/templates/network.html:306 -#: networks/templates/network.html:356 networks/templates/network.html:361 -#: nwfilters/templates/nwfilter.html:114 nwfilters/templates/nwfilter.html:154 -#: nwfilters/templates/nwfilters.html:123 secrets/templates/secrets.html:77 -#: storages/templates/storage.html:64 storages/templates/storage.html:67 -#: storages/templates/storage.html:79 storages/templates/storage.html:176 -msgid "Are you sure?" +#: accounts/templates/account.html:69 accounts/templates/profile.html:80 +msgid "Public key" msgstr "" #: accounts/templates/accounts-list.html:4 #: accounts/templates/accounts-list.html:13 accounts/templates/accounts.html:3 #: accounts/templates/accounts.html:9 admin/templates/admin/group_list.html:5 #: admin/templates/admin/user_list.html:6 -#: admin/templates/admin/user_list.html:16 admin/views.py:83 -#: instances/templates/instance.html:657 templates/navbar.html:29 +#: admin/templates/admin/user_list.html:16 admin/views.py:84 +#: instances/templates/instances/settings_tab.html:63 templates/navbar.html:29 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 +#: computes/templates/computes/instances.html:18 +#: instances/templates/allinstances.html:16 +#: nwfilters/templates/nwfilters.html:11 storages/templates/storage.html:88 +#: templates/search_block.html:3 msgid "Search" msgstr "" +#: accounts/templates/accounts-list.html:25 accounts/templates/accounts.html:21 +#: admin/templates/admin/group_list.html:24 admin/templates/admin/logs.html:22 +#: admin/templates/admin/user_list.html:25 +#: computes/templates/computes/instances.html:57 +#: computes/templates/computes/list.html:21 +#: instances/templates/create_instance_w2.html:71 +#: interfaces/templates/interfaces.html:47 networks/templates/networks.html:50 +#: nwfilters/templates/nwfilters.html:138 secrets/templates/secrets.html:50 +#: storages/templates/storage.html:188 storages/templates/storages.html:50 +msgid "Warning" +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" msgstr "" -#: accounts/templates/accounts-list.html:33 accounts/templates/profile.html:27 -#: admin/templates/admin/user_list.html:33 computes/templates/computes.html:79 -#: computes/templates/computes.html:127 computes/templates/computes.html:170 +#: accounts/templates/accounts-list.html:33 accounts/templates/profile.html:31 +#: admin/templates/admin/user_list.html:33 msgid "Username" msgstr "" #: accounts/templates/accounts-list.html:34 accounts/templates/accounts.html:44 -#: admin/templates/admin/user_list.html:34 computes/templates/computes.html:40 -#: instances/templates/allinstances.html:57 -#: instances/templates/allinstances_index_grouped.html:8 -#: instances/templates/allinstances_index_nongrouped.html:7 -#: instances/templates/instances.html:72 +#: admin/templates/admin/user_list.html:34 +#: computes/templates/computes/instances.html:68 +#: computes/templates/computes/list.html:30 +#: instances/templates/allinstances_index_grouped.html:9 +#: instances/templates/allinstances_index_nongrouped.html:9 msgid "Status" msgstr "" @@ -279,22 +207,33 @@ msgid "Superuser" msgstr "" #: accounts/templates/accounts-list.html:37 -#: instances/templates/instance.html:631 instances/templates/instance.html:1444 -#: instances/templates/instance.html:1446 -#: instances/templates/instance_actions.html:7 +#: instances/templates/instance_actions.html:6 +#: instances/templates/instances/settings_tab.html:37 +#: instances/templates/instances/settings_tab.html:783 +#: instances/templates/instances/settings_tab.html:785 #: nwfilters/templates/nwfilters.html:112 -#: nwfilters/templates/nwfilters.html:118 storages/templates/storage.html:157 -#: storages/templates/storage.html:164 +#: nwfilters/templates/nwfilters.html:118 storages/templates/storage.html:156 +#: storages/templates/storage.html:163 msgid "Clone" msgstr "" +#: accounts/templates/accounts-list.html:45 +#: accounts/templates/accounts-list.html:148 +#: accounts/templates/accounts.html:36 accounts/templates/accounts.html:141 +#: admin/templates/admin/common/list.html:16 +#: admin/templates/admin/group_list.html:44 +#: admin/templates/admin/user_list.html:61 +#: computes/templates/computes/list.html:54 networks/templates/network.html:85 +#: nwfilters/templates/nwfilter.html:62 secrets/templates/secrets.html:74 +msgid "Edit" +msgstr "" + #: accounts/templates/accounts-list.html:51 accounts/templates/accounts.html:48 #: admin/templates/admin/user_list.html:50 -#: instances/templates/allinstances.html:68 -#: instances/templates/allinstances_index_grouped.html:26 -#: instances/templates/allinstances_index_grouped.html:56 -#: instances/templates/allinstances_index_nongrouped.html:20 -#: instances/templates/instance.html:17 instances/templates/instances.html:85 +#: computes/templates/computes/instances.html:94 +#: instances/templates/allinstances_index_grouped.html:57 +#: instances/templates/allinstances_index_nongrouped.html:40 +#: instances/templates/instance.html:17 msgid "Active" msgstr "" @@ -309,24 +248,21 @@ msgstr "" #: accounts/templates/accounts-list.html:76 accounts/templates/accounts.html:69 #: accounts/templates/create_user_block.html:18 -#: computes/templates/computes.html:66 computes/templates/computes.html:114 -#: computes/templates/computes.html:157 computes/templates/computes.html:172 -#: computes/templates/computes.html:205 -#: create/templates/create_flav_block.html:19 -#: create/templates/create_instance_w2.html:81 -#: create/templates/create_instance_w2.html:107 -#: create/templates/create_instance_w2.html:110 -#: create/templates/create_instance_w2.html:309 -#: create/templates/create_instance_w2.html:311 -#: create/templates/create_instance_w2.html:522 -#: create/templates/create_instance_w2.html:524 +#: computes/templates/computes/instances.html:66 +#: computes/templates/computes/list.html:29 #: instances/templates/add_instance_volume.html:40 #: instances/templates/add_instance_volume.html:42 -#: instances/templates/allinstances.html:56 -#: instances/templates/allinstances_index_grouped.html:6 +#: instances/templates/allinstances_index_grouped.html:7 #: instances/templates/allinstances_index_nongrouped.html:5 -#: instances/templates/instance.html:554 instances/templates/instance.html:906 -#: instances/templates/instances.html:70 +#: instances/templates/create_instance_w2.html:82 +#: instances/templates/create_instance_w2.html:108 +#: instances/templates/create_instance_w2.html:111 +#: instances/templates/create_instance_w2.html:310 +#: instances/templates/create_instance_w2.html:312 +#: instances/templates/create_instance_w2.html:523 +#: instances/templates/create_instance_w2.html:525 +#: instances/templates/instances/settings_tab.html:340 +#: instances/templates/instances/snapshots_tab.html:47 #: interfaces/templates/create_iface_block.html:18 #: interfaces/templates/interface.html:76 #: networks/templates/create_net_block.html:18 @@ -341,21 +277,18 @@ msgstr "" #: storages/templates/create_stg_block.html:100 #: storages/templates/create_stg_block.html:165 #: storages/templates/create_stg_block.html:214 -#: storages/templates/create_stg_vol_block.html:20 -#: storages/templates/create_stg_vol_block.html:51 -#: storages/templates/create_stg_vol_block.html:53 -#: storages/templates/storage.html:98 storages/templates/storage.html:126 -#: storages/templates/storage.html:128 +#: storages/templates/create_stg_vol_block.html:21 +#: storages/templates/storage.html:97 storages/templates/storage.html:125 +#: storages/templates/storage.html:127 msgid "Name" msgstr "" #: accounts/templates/accounts-list.html:83 accounts/templates/accounts.html:76 #: accounts/templates/create_user_block.html:24 -#: accounts/templates/login.html:19 computes/templates/computes.html:85 -#: computes/templates/computes.html:176 -#: console/templates/console-spice-full.html:200 -#: instances/templates/instance.html:1293 -#: instances/templates/instance.html:1300 +#: accounts/templates/login.html:19 +#: console/templates/console-spice-full.html:201 +#: console/templates/console-spice-lite.html:58 +#: console/templates/console-spice-lite.html:99 msgid "Password" msgstr "" @@ -368,7 +301,7 @@ msgid "Is superuser" msgstr "" #: accounts/templates/accounts-list.html:101 -#: accounts/templates/accounts.html:94 instances/models.py:25 +#: accounts/templates/accounts.html:94 msgid "Can clone instances" msgstr "" @@ -402,6 +335,63 @@ msgstr "" msgid "Unblock" msgstr "" +#: accounts/templates/accounts-list.html:145 +#: accounts/templates/accounts.html:138 +#: accounts/templates/create_user_block.html:31 +#: instances/templates/add_instance_network_block.html:49 +#: instances/templates/add_instance_owner_block.html:30 +#: instances/templates/add_instance_volume.html:89 +#: instances/templates/add_instance_volume.html:144 +#: instances/templates/create_flav_block.html:25 +#: instances/templates/create_inst_block.html:34 +#: instances/templates/create_instance_w2.html:274 +#: instances/templates/edit_instance_volume.html:123 +#: instances/templates/instances/settings_tab.html:427 +#: interfaces/templates/create_iface_block.html:135 +#: networks/templates/add_network_qos.html:50 +#: networks/templates/create_net_block.html:84 +#: networks/templates/modify_ipv4_fixed_address.html:44 +#: networks/templates/modify_ipv6_fixed_address.html:44 +#: nwfilters/templates/add_nwf_rule.html:25 +#: nwfilters/templates/create_nwfilter_block.html:23 +#: nwfilters/templates/nwfilters.html:83 nwfilters/templates/nwfilters.html:111 +#: secrets/templates/create_secret_block.html:54 +#: secrets/templates/secrets.html:102 +#: storages/templates/create_stg_block.html:55 +#: storages/templates/create_stg_block.html:84 +#: storages/templates/create_stg_block.html:140 +#: storages/templates/create_stg_block.html:202 +#: storages/templates/create_stg_block.html:230 +#: storages/templates/create_stg_vol_block.html:28 +#: storages/templates/create_stg_vol_block.html:56 +#: storages/templates/storage.html:155 +msgid "Close" +msgstr "" + +#: accounts/templates/accounts/change_password_form.html:7 +#: accounts/templates/accounts/change_password_form.html:12 +#: accounts/templates/profile.html:21 +msgid "Change Password" +msgstr "" + +#: accounts/templates/accounts/change_password_form.html:22 +#: admin/templates/admin/user_form.html:22 +#: computes/templates/computes/form.html:21 +#: templates/common/confirm_delete.html:14 templates/common/form.html:20 +msgid "Cancel" +msgstr "" + +#: accounts/templates/accounts/change_password_form.html:24 +#: accounts/templates/profile.html:44 +#: instances/templates/instances/settings_tab.html:633 +#: instances/templates/instances/settings_tab.html:637 +#: instances/templates/instances/settings_tab.html:819 +#: instances/templates/instances/settings_tab.html:821 +#: venv/lib/python3.6/site-packages/django/forms/widgets.py:397 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:379 +msgid "Change" +msgstr "" + #: accounts/templates/create_user_block.html:13 msgid "Add New User" msgstr "" @@ -411,13 +401,13 @@ msgid "john" msgstr "" #: accounts/templates/create_user_block.html:32 -#: create/templates/create_instance_w1.html:95 -#: create/templates/create_instance_w2.html:275 -#: create/templates/create_instance_w2.html:277 -#: create/templates/create_instance_w2.html:504 -#: create/templates/create_instance_w2.html:508 -#: create/templates/create_instance_w2.html:717 -#: create/templates/create_instance_w2.html:721 +#: instances/templates/create_instance_w1.html:95 +#: instances/templates/create_instance_w2.html:276 +#: instances/templates/create_instance_w2.html:278 +#: instances/templates/create_instance_w2.html:505 +#: instances/templates/create_instance_w2.html:509 +#: instances/templates/create_instance_w2.html:718 +#: instances/templates/create_instance_w2.html:722 #: interfaces/templates/create_iface_block.html:138 #: networks/templates/create_net_block.html:85 #: networks/templates/modify_ipv4_fixed_address.html:45 @@ -430,29 +420,10 @@ msgstr "" #: storages/templates/create_stg_block.html:148 #: storages/templates/create_stg_block.html:205 #: storages/templates/create_stg_block.html:233 -#: storages/templates/create_stg_vol_block.html:82 +#: storages/templates/create_stg_vol_block.html:57 msgid "Create" msgstr "" -#: accounts/templates/create_user_inst_block.html:12 -msgid "Add Instance for User" -msgstr "" - -#: accounts/templates/create_user_inst_block.html:18 -#: console/templates/console-spice-full.html:198 -#: instances/templates/allinstances_index_nongrouped.html:6 -msgid "Host" -msgstr "" - -#: accounts/templates/create_user_inst_block.html:30 -#: accounts/templates/profile.html:111 -#: create/templates/create_flav_block.html:54 -#: instances/templates/add_instance_network_block.html:50 -#: instances/templates/add_instance_owner_block.html:30 -#: nwfilters/templates/add_nwf_rule.html:26 -msgid "Add" -msgstr "" - #: accounts/templates/login.html:3 accounts/templates/logout.html:4 msgid "WebVirtCloud" msgstr "" @@ -466,7 +437,7 @@ msgstr "" msgid "Incorrect username or password." msgstr "" -#: accounts/templates/login.html:18 accounts/templates/profile.html:21 +#: accounts/templates/login.html:18 accounts/templates/profile.html:25 msgid "Login" msgstr "" @@ -478,72 +449,86 @@ msgstr "" msgid "Successful log out" msgstr "" -#: accounts/templates/profile.html:4 accounts/templates/profile.html:9 +#: accounts/templates/profile.html:5 accounts/templates/profile.html:10 #: templates/navbar.html:45 msgid "Profile" msgstr "" -#: accounts/templates/profile.html:18 +#: accounts/templates/profile.html:19 msgid "Edit Profile" msgstr "" -#: accounts/templates/profile.html:33 +#: accounts/templates/profile.html:37 msgid "Email" msgstr "" -#: accounts/templates/profile.html:40 accounts/templates/profile.html:67 -#: computes/templates/computes.html:104 computes/templates/computes.html:148 -#: computes/templates/computes.html:196 computes/templates/computes.html:225 -#: instances/templates/instance.html:1190 -#: instances/templates/instance.html:1194 -#: instances/templates/instance.html:1480 -#: instances/templates/instance.html:1482 -#: venv/lib/python3.6/site-packages/django/forms/widgets.py:397 -msgid "Change" -msgstr "" - -#: accounts/templates/profile.html:45 -msgid "Edit Password" -msgstr "" - #: accounts/templates/profile.html:48 -msgid "Old" -msgstr "" - -#: accounts/templates/profile.html:54 -msgid "New" -msgstr "" - -#: accounts/templates/profile.html:60 -msgid "Retry" -msgstr "" - -#: accounts/templates/profile.html:72 instances/templates/instance.html:266 +#: instances/templates/instances/access_tab.html:23 msgid "SSH Keys" msgstr "" -#: accounts/templates/profile.html:100 +#: accounts/templates/profile.html:60 +#: instances/templates/create_instance_w2.html:292 +#: instances/templates/instances/settings_tab.html:438 +#: instances/templates/instances/settings_tab.html:510 +#: instances/templates/instances/settings_tab.html:520 +#: instances/templates/instances/snapshots_tab.html:75 +#: interfaces/templates/interface.html:61 +#: interfaces/templates/interface.html:63 networks/templates/network.html:53 +#: networks/templates/network.html:55 networks/templates/network.html:65 +#: networks/templates/network.html:139 networks/templates/network.html:192 +#: networks/templates/network.html:197 networks/templates/network.html:252 +#: networks/templates/network.html:301 networks/templates/network.html:306 +#: networks/templates/network.html:356 networks/templates/network.html:361 +#: nwfilters/templates/nwfilter.html:114 nwfilters/templates/nwfilter.html:154 +#: nwfilters/templates/nwfilters.html:123 secrets/templates/secrets.html:77 +#: storages/templates/storage.html:63 storages/templates/storage.html:66 +#: storages/templates/storage.html:78 storages/templates/storage.html:175 +msgid "Are you sure?" +msgstr "" + +#: accounts/templates/profile.html:76 msgid "Enter Name" msgstr "" -#: accounts/templates/profile.html:106 +#: accounts/templates/profile.html:82 msgid "Enter Public Key" msgstr "" -#: accounts/views.py:52 +#: accounts/templates/profile.html:87 +#: instances/templates/add_instance_network_block.html:50 +#: instances/templates/add_instance_owner_block.html:31 +#: instances/templates/create_flav_block.html:28 +#: nwfilters/templates/add_nwf_rule.html:26 +msgid "Add" +msgstr "" + +#: accounts/views.py:39 msgid "Key name already exist" msgstr "" -#: accounts/views.py:55 +#: accounts/views.py:42 msgid "Public key already exist" msgstr "" -#: accounts/views.py:58 +#: accounts/views.py:45 msgid "Invalid characters in public key" msgstr "" -#: accounts/views.py:112 -msgid "Instance already added" +#: accounts/views.py:77 +msgid "Password Changed" +msgstr "" + +#: accounts/views.py:80 +msgid "Wrong Data Provided" +msgstr "" + +#: accounts/views.py:100 +msgid "Create User Instance" +msgstr "" + +#: accounts/views.py:118 +msgid "Update User Instance" msgstr "" #: admin/forms.py:46 @@ -555,25 +540,6 @@ msgstr "" msgid "Groups" msgstr "" -#: admin/templates/admin/common/confirm_delete.html:12 -msgid "Are you sure you want to delete" -msgstr "" - -#: admin/templates/admin/common/confirm_delete.html:14 -#: admin/templates/admin/common/form.html:22 -#: admin/templates/admin/user_form.html:22 -#: computes/templates/computes/form.html:22 -msgid "Cancel" -msgstr "" - -#: admin/templates/admin/common/form.html:24 -#: admin/templates/admin/user_form.html:24 -#: computes/templates/computes/form.html:24 -#: instances/templates/edit_instance_volume.html:124 -#: networks/templates/add_network_qos.html:51 -msgid "Save" -msgstr "" - #: admin/templates/admin/common/list.html:9 msgid "Create New" msgstr "" @@ -588,33 +554,53 @@ 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 -#: instances/templates/instance.html:909 instances/templates/instance.html:1051 -#: instances/templates/instances.html:75 networks/templates/network.html:178 -#: networks/templates/network.html:287 networks/templates/network.html:335 +#: computes/templates/computes/instances.html:71 +#: computes/templates/computes/list.html:32 +#: instances/templates/allinstances_index_grouped.html:12 +#: instances/templates/allinstances_index_nongrouped.html:12 +#: instances/templates/instances/settings_tab.html:343 +#: instances/templates/instances/settings_tab.html:486 +#: networks/templates/network.html:178 networks/templates/network.html:287 +#: networks/templates/network.html:335 msgid "Actions" msgstr "" -#: admin/templates/admin/logs.html:3 admin/templates/admin/logs.html:8 -#: instances/templates/instance.html:1577 templates/navbar.html:31 +#: admin/templates/admin/logs.html:4 admin/templates/admin/logs.html:9 +#: instances/templates/instances/stats_tab.html:13 templates/navbar.html:31 msgid "Logs" msgstr "" -#: admin/templates/admin/logs.html:21 +#: admin/templates/admin/logs.html:22 msgid "You don't have any Logs" msgstr "" -#: admin/templates/admin/logs.html:31 instances/templates/instance.html:555 -#: instances/templates/instance.html:1643 +#: admin/templates/admin/logs.html:32 +#: instances/templates/instances/snapshots_tab.html:48 +#: instances/templates/instances/stats_tab.html:83 msgid "Date" msgstr "" -#: admin/templates/admin/logs.html:34 instances/templates/instance.html:1645 +#: admin/templates/admin/logs.html:33 admin/templates/admin/user_form.html:6 +#: computes/templates/computes/instances.html:67 +#: instances/templates/add_instance_owner_block.html:18 +#: instances/templates/allinstances_index_grouped.html:8 +#: instances/templates/allinstances_index_nongrouped.html:7 +#: instances/templates/instances/stats_tab.html:84 +msgid "User" +msgstr "" + +#: admin/templates/admin/logs.html:35 +#: instances/templates/instances/stats_tab.html:85 msgid "Message" msgstr "" +#: admin/templates/admin/user_form.html:24 +#: computes/templates/computes/form.html:23 +#: instances/templates/edit_instance_volume.html:124 +#: networks/templates/add_network_qos.html:51 templates/common/form.html:22 +msgid "Save" +msgstr "" + #: admin/templates/admin/user_list.html:37 msgid "Can Clone" msgstr "" @@ -623,19 +609,19 @@ msgstr "" msgid "View Profile" msgstr "" -#: admin/views.py:38 +#: admin/views.py:39 msgid "Create Group" msgstr "" -#: admin/views.py:56 +#: admin/views.py:57 msgid "Update Group" msgstr "" -#: admin/views.py:108 +#: admin/views.py:110 msgid "Create User" msgstr "" -#: admin/views.py:130 +#: admin/views.py:132 msgid "Update User" msgstr "" @@ -847,7 +833,39 @@ msgstr "" msgid "Show access ssh keys" msgstr "" -#: appsettings/models.py:9 computes/models.py:5 instances/models.py:10 +#: appsettings/migrations/0004_auto_20200716_0637.py:11 +msgid "Console Scale" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:11 +msgid "Allow console to scaling view" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:12 +msgid "Console View-Only" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:12 +msgid "Allow only view not modify" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:13 +msgid "Console Resize Session" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:13 +msgid "Allow to resize session for console" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:14 +msgid "Console Clip Viewport" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:14 +msgid "Clip console viewport" +msgstr "" + +#: appsettings/models.py:9 computes/models.py:11 instances/models.py:27 msgid "name" msgstr "" @@ -872,19 +890,19 @@ msgstr "" msgid "Edit Settings" msgstr "" -#: appsettings/templates/appsettings.html:18 +#: appsettings/templates/appsettings.html:17 msgid "App Settings" msgstr "" -#: appsettings/templates/appsettings.html:22 templates/navbar.html:43 +#: appsettings/templates/appsettings.html:21 templates/navbar.html:43 msgid "Language" msgstr "" -#: appsettings/templates/appsettings.html:55 +#: appsettings/templates/appsettings.html:54 msgid "After change please full refresh page with 'Ctrl + F5' " msgstr "" -#: appsettings/templates/appsettings.html:60 +#: appsettings/templates/appsettings.html:59 msgid "Other Settings" msgstr "" @@ -907,97 +925,22 @@ msgstr "" msgid "FQDN/IP" msgstr "" -#: computes/forms.py:47 -msgid "No hostname has been entered" -msgstr "" - -#: computes/forms.py:48 -msgid "No IP / Domain name has been entered" -msgstr "" - -#: computes/forms.py:49 -msgid "No login has been entered" -msgstr "" - -#: computes/forms.py:57 -msgid "The name of the host must not contain any special characters" -msgstr "" - -#: computes/forms.py:59 -msgid "The name of the host must not exceed 20 characters" -msgstr "" - -#: computes/forms.py:67 computes/validators.py:16 -msgid "" -"Hostname must contain only numbers, or the domain name separated by \".\"" -msgstr "" - -#: computes/forms.py:69 computes/validators.py:18 -msgid "Wrong IP address" -msgstr "" - -#: computes/models.py:6 +#: computes/models.py:12 msgid "hostname" msgstr "" -#: computes/models.py:7 +#: computes/models.py:13 msgid "login" msgstr "" -#: computes/models.py:8 +#: computes/models.py:14 msgid "password" msgstr "" -#: computes/models.py:9 +#: computes/models.py:15 msgid "details" msgstr "" -#: computes/templates/computes.html:3 computes/templates/computes.html:9 -#: templates/navbar.html:18 -msgid "Computes" -msgstr "" - -#: computes/templates/computes.html:42 instances/templates/instance.html:1537 -msgid "Connected" -msgstr "" - -#: computes/templates/computes.html:44 -msgid "Not Connected" -msgstr "" - -#: computes/templates/computes.html:46 computes/templates/computes.html:91 -#: 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 "" - -#: computes/templates/computes.html:50 -msgid "No details available" -msgstr "" - -#: computes/templates/computes.html:59 -msgid "Edit connection" -msgstr "" - -#: computes/templates/computes.html:73 computes/templates/computes.html:121 -#: computes/templates/computes.html:164 -msgid "FQDN / IP" -msgstr "" - -#: computes/templates/computes.html:112 -msgid "" -"Need create ssh authorization key. If you have another SSH port on " -"your server, you can add IP:PORT like '192.168.1.1:2222'." -msgstr "" - -#: computes/templates/computes.html:241 -msgid "Hypervisor doesn't have any Computes" -msgstr "" - #: computes/templates/computes/form.html:6 msgid "Add Compute" msgstr "" @@ -1006,6 +949,137 @@ msgstr "" msgid "Create Compute" msgstr "" +#: computes/templates/computes/instances.html:29 +#: computes/templates/computes/list.html:50 +#: computes/templates/computes/list.html:52 computes/templates/overview.html:4 +#: computes/templates/overview.html:13 interfaces/templates/interface.html:11 +#: interfaces/templates/interfaces.html:14 networks/templates/network.html:13 +#: networks/templates/networks.html:17 nwfilters/templates/nwfilter.html:12 +#: nwfilters/templates/nwfilters.html:21 secrets/templates/secrets.html:17 +#: storages/templates/storage.html:17 storages/templates/storages.html:17 +msgid "Overview" +msgstr "" + +#: computes/templates/computes/instances.html:35 +#: computes/templates/overview.html:19 interfaces/templates/interface.html:17 +#: interfaces/templates/interfaces.html:20 networks/templates/network.html:19 +#: networks/templates/networks.html:23 nwfilters/templates/nwfilter.html:18 +#: nwfilters/templates/nwfilters.html:27 secrets/templates/secrets.html:23 +#: storages/templates/storage.html:23 storages/templates/storages.html:3 +#: storages/templates/storages.html:9 storages/templates/storages.html:23 +msgid "Storages" +msgstr "" + +#: computes/templates/computes/instances.html:38 +#: computes/templates/overview.html:22 interfaces/templates/interface.html:20 +#: interfaces/templates/interfaces.html:23 networks/templates/network.html:22 +#: networks/templates/networks.html:3 networks/templates/networks.html:9 +#: networks/templates/networks.html:26 nwfilters/templates/nwfilter.html:21 +#: nwfilters/templates/nwfilters.html:30 secrets/templates/secrets.html:26 +#: storages/templates/storage.html:26 storages/templates/storages.html:26 +msgid "Networks" +msgstr "" + +#: computes/templates/computes/instances.html:41 +#: computes/templates/overview.html:25 interfaces/templates/interface.html:23 +#: interfaces/templates/interfaces.html:4 +#: interfaces/templates/interfaces.html:26 networks/templates/network.html:25 +#: networks/templates/networks.html:29 nwfilters/templates/nwfilter.html:24 +#: nwfilters/templates/nwfilters.html:33 secrets/templates/secrets.html:29 +#: storages/templates/storage.html:29 storages/templates/storages.html:29 +msgid "Interfaces" +msgstr "" + +#: computes/templates/computes/instances.html:44 +#: computes/templates/overview.html:28 interfaces/templates/interface.html:26 +#: interfaces/templates/interfaces.html:29 networks/templates/network.html:28 +#: networks/templates/networks.html:32 nwfilters/templates/nwfilter.html:4 +#: nwfilters/templates/nwfilter.html:27 nwfilters/templates/nwfilters.html:4 +#: nwfilters/templates/nwfilters.html:13 nwfilters/templates/nwfilters.html:36 +#: secrets/templates/secrets.html:32 storages/templates/storage.html:32 +#: storages/templates/storages.html:32 +msgid "NWFilters" +msgstr "" + +#: computes/templates/computes/instances.html:47 +#: computes/templates/overview.html:31 interfaces/templates/interface.html:29 +#: interfaces/templates/interfaces.html:32 networks/templates/network.html:31 +#: networks/templates/networks.html:35 nwfilters/templates/nwfilter.html:30 +#: nwfilters/templates/nwfilters.html:39 secrets/templates/secrets.html:4 +#: secrets/templates/secrets.html:13 secrets/templates/secrets.html:35 +#: storages/templates/create_stg_block.html:124 +#: storages/templates/storage.html:35 storages/templates/storages.html:35 +msgid "Secrets" +msgstr "" + +#: computes/templates/computes/instances.html:58 +msgid "Hypervisor doesn't have any Instances" +msgstr "" + +#: computes/templates/computes/instances.html:66 +#: instances/templates/allinstances_index_grouped.html:7 +#: instances/templates/allinstances_index_nongrouped.html:5 +#: instances/templates/instances/settings_tab.html:777 +#: instances/templates/instances/settings_tab.html:800 +msgid "Description" +msgstr "" + +#: computes/templates/computes/instances.html:69 +#: instances/templates/allinstances_index_grouped.html:10 +#: instances/templates/allinstances_index_nongrouped.html:10 +#: instances/templates/create_instance_w2.html:83 +#: instances/templates/create_instance_w2.html:328 +#: instances/templates/create_instance_w2.html:541 +#: instances/templates/instance.html:40 instances/templates/instance.html:42 +msgid "VCPU" +msgstr "" + +#: computes/templates/computes/instances.html:70 +#: computes/templates/overview.html:82 +#: instances/templates/allinstances_index_grouped.html:11 +#: instances/templates/allinstances_index_nongrouped.html:11 +#: instances/templates/instances/resize_tab.html:13 +msgid "Memory" +msgstr "" + +#: computes/templates/computes/instances.html:96 +#: instances/templates/allinstances_index_grouped.html:58 +#: instances/templates/allinstances_index_nongrouped.html:42 +#: instances/templates/instance.html:14 +msgid "Off" +msgstr "" + +#: computes/templates/computes/instances.html:98 +#: instances/templates/allinstances_index_grouped.html:60 +#: instances/templates/allinstances_index_nongrouped.html:44 +msgid "Suspended" +msgstr "" + +#: computes/templates/computes/list.html:6 +#: computes/templates/computes/list.html:12 templates/navbar.html:18 +msgid "Computes" +msgstr "" + +#: computes/templates/computes/list.html:21 +msgid "You don't have any computes" +msgstr "" + +#: computes/templates/computes/list.html:31 computes/templates/overview.html:92 +#: instances/templates/instances/settings_tab.html:163 +#: instances/templates/instances/settings_tab.html:248 +msgid "Details" +msgstr "" + +#: computes/templates/computes/list.html:42 +#: instances/templates/allinstances_index_grouped.html:28 +#: instances/templates/instances/settings_tab.html:876 +msgid "Connected" +msgstr "" + +#: computes/templates/computes/list.html:42 +msgid "Not Connected" +msgstr "" + #: computes/templates/create_comp_block.html:5 msgid "TCP" msgstr "" @@ -1026,79 +1100,6 @@ msgstr "" msgid "Add new host" msgstr "" -#: computes/templates/overview.html:4 computes/templates/overview.html:13 -#: instances/templates/instances.html:30 interfaces/templates/interface.html:11 -#: interfaces/templates/interfaces.html:14 networks/templates/network.html:13 -#: networks/templates/networks.html:17 nwfilters/templates/nwfilter.html:12 -#: nwfilters/templates/nwfilters.html:21 secrets/templates/secrets.html:17 -#: storages/templates/storage.html:17 storages/templates/storages.html:17 -msgid "Overview" -msgstr "" - -#: computes/templates/overview.html:16 instances/templates/allinstances.html:4 -#: instances/templates/allinstances.html:20 -#: instances/templates/bottom_bar.html:17 instances/templates/instances.html:4 -#: instances/templates/instances.html:33 interfaces/templates/interface.html:14 -#: interfaces/templates/interfaces.html:17 networks/templates/network.html:16 -#: networks/templates/networks.html:20 nwfilters/templates/nwfilter.html:15 -#: nwfilters/templates/nwfilters.html:24 secrets/templates/secrets.html:20 -#: storages/templates/storage.html:20 storages/templates/storages.html:20 -#: templates/navbar.html:14 -msgid "Instances" -msgstr "" - -#: computes/templates/overview.html:19 instances/templates/instances.html:36 -#: interfaces/templates/interface.html:17 -#: interfaces/templates/interfaces.html:20 networks/templates/network.html:19 -#: networks/templates/networks.html:23 nwfilters/templates/nwfilter.html:18 -#: nwfilters/templates/nwfilters.html:27 secrets/templates/secrets.html:23 -#: storages/templates/storage.html:23 storages/templates/storages.html:3 -#: storages/templates/storages.html:9 storages/templates/storages.html:23 -msgid "Storages" -msgstr "" - -#: computes/templates/overview.html:22 instances/templates/instances.html:39 -#: interfaces/templates/interface.html:20 -#: interfaces/templates/interfaces.html:23 networks/templates/network.html:22 -#: networks/templates/networks.html:3 networks/templates/networks.html:9 -#: networks/templates/networks.html:26 nwfilters/templates/nwfilter.html:21 -#: nwfilters/templates/nwfilters.html:30 secrets/templates/secrets.html:26 -#: storages/templates/storage.html:26 storages/templates/storages.html:26 -msgid "Networks" -msgstr "" - -#: computes/templates/overview.html:25 instances/templates/instances.html:42 -#: interfaces/templates/interface.html:23 -#: interfaces/templates/interfaces.html:4 -#: interfaces/templates/interfaces.html:26 networks/templates/network.html:25 -#: networks/templates/networks.html:29 nwfilters/templates/nwfilter.html:24 -#: nwfilters/templates/nwfilters.html:33 secrets/templates/secrets.html:29 -#: storages/templates/storage.html:29 storages/templates/storages.html:29 -msgid "Interfaces" -msgstr "" - -#: computes/templates/overview.html:28 instances/templates/instances.html:45 -#: interfaces/templates/interface.html:26 -#: interfaces/templates/interfaces.html:29 networks/templates/network.html:28 -#: networks/templates/networks.html:32 nwfilters/templates/nwfilter.html:4 -#: nwfilters/templates/nwfilter.html:27 nwfilters/templates/nwfilters.html:4 -#: nwfilters/templates/nwfilters.html:13 nwfilters/templates/nwfilters.html:36 -#: secrets/templates/secrets.html:32 storages/templates/storage.html:32 -#: storages/templates/storages.html:32 -msgid "NWFilters" -msgstr "" - -#: computes/templates/overview.html:31 instances/templates/instances.html:48 -#: interfaces/templates/interface.html:29 -#: interfaces/templates/interfaces.html:32 networks/templates/network.html:31 -#: networks/templates/networks.html:35 nwfilters/templates/nwfilter.html:30 -#: nwfilters/templates/nwfilters.html:39 secrets/templates/secrets.html:4 -#: secrets/templates/secrets.html:13 secrets/templates/secrets.html:35 -#: storages/templates/create_stg_block.html:124 -#: storages/templates/storage.html:35 storages/templates/storages.html:35 -msgid "Secrets" -msgstr "" - #: computes/templates/overview.html:42 msgid "Basic details" msgstr "" @@ -1132,16 +1133,9 @@ msgstr "" msgid "Libvirt" msgstr "" -#: computes/templates/overview.html:82 instances/templates/allinstances.html:59 -#: instances/templates/allinstances_index_grouped.html:10 -#: instances/templates/allinstances_index_nongrouped.html:9 -#: instances/templates/instance.html:369 instances/templates/instances.html:74 -msgid "Memory" -msgstr "" - #: computes/templates/overview.html:84 -#: create/templates/create_instance_w1.html:42 -#: create/templates/create_instance_w1.html:58 +#: instances/templates/create_instance_w1.html:42 +#: instances/templates/create_instance_w1.html:58 msgid "Architecture" msgstr "" @@ -1170,287 +1164,153 @@ msgstr "" msgid "RAM Utilization" msgstr "" +#: computes/validators.py:16 +msgid "" +"Hostname must contain only numbers, or the domain name separated by \".\"" +msgstr "" + +#: computes/validators.py:18 +msgid "Wrong IP address" +msgstr "" + #: computes/validators.py:24 msgid "The hostname must not contain any special characters" msgstr "" -#: console/templates/console-base.html:69 +#: console/templates/console-base.html:51 msgid "Send key(s)" msgstr "" -#: console/templates/console-base.html:89 +#: console/templates/console-base.html:71 msgid "Fullscreen" msgstr "" +#: console/templates/console-spice-full.html:56 +msgid "must set host and port" +msgstr "" + +#: console/templates/console-spice-full.html:83 +#: console/templates/console-spice-full.html:97 +#: console/templates/console-spice-lite.html:138 +#: console/templates/console-spice-lite.html:150 +msgid "disconnect" +msgstr "" + +#: console/templates/console-spice-full.html:114 +#: console/templates/console-spice-lite.html:167 +msgid "File API is not supported" +msgstr "" + +#: console/templates/console-spice-full.html:197 +#: instances/templates/allinstances_index_nongrouped.html:7 +msgid "Host" +msgstr "" + #: console/templates/console-spice-full.html:199 msgid "Port" msgstr "" -#: console/templates/console-spice-full.html:201 +#: console/templates/console-spice-full.html:207 msgid "Show console" msgstr "" -#: console/templates/console-spice-full.html:202 +#: console/templates/console-spice-full.html:209 #: interfaces/templates/interface.html:60 networks/templates/network.html:52 #: networks/templates/network.html:122 networks/templates/network.html:128 #: networks/templates/network.html:234 networks/templates/network.html:240 -#: storages/templates/storage.html:62 +#: storages/templates/storage.html:61 msgid "Start" msgstr "" -#: console/templates/console-vnc-full.html:83 +#: console/templates/console-spice-lite.html:109 +msgid "must specify host and port in URL" +msgstr "" + +#: console/templates/console-vnc-full.html:78 msgid "noVNC encountered an error" msgstr "" -#: console/templates/console-vnc-lite.html:297 +#: console/templates/console-vnc-lite.html:222 msgid "Loading" msgstr "" -#: create/forms.py:10 -msgid "No flavor name has been entered" -msgstr "" - -#: create/forms.py:13 create/forms.py:37 -msgid "No VCPU has been entered" -msgstr "" - -#: create/forms.py:15 -msgid "No HDD image has been entered" -msgstr "" - -#: create/forms.py:17 create/forms.py:40 -msgid "No RAM size has been entered" -msgstr "" - -#: create/forms.py:34 +#: instances/forms.py:37 msgid "No Virtual Machine name has been entered" msgstr "" -#: create/forms.py:41 +#: instances/forms.py:39 +msgid "No VCPU has been entered" +msgstr "" + +#: instances/forms.py:42 +msgid "No RAM size has been entered" +msgstr "" + +#: instances/forms.py:43 msgid "No Network pool has been choosen" msgstr "" -#: create/forms.py:46 +#: instances/forms.py:48 msgid "Please select HDD cache mode" msgstr "" -#: create/forms.py:53 +#: instances/forms.py:55 msgid "Please select a graphics type" msgstr "" -#: create/forms.py:54 +#: instances/forms.py:56 msgid "Please select a video driver" msgstr "" -#: create/forms.py:61 +#: instances/forms.py:63 msgid "The name of the virtual machine must not contain any special characters" msgstr "" -#: create/forms.py:63 +#: instances/forms.py:65 msgid "The name of the virtual machine must not exceed 20 characters" msgstr "" -#: create/models.py:5 +#: instances/models.py:11 msgid "label" msgstr "" -#: create/models.py:6 +#: instances/models.py:12 msgid "memory" msgstr "" -#: create/models.py:7 +#: instances/models.py:13 msgid "vcpu" msgstr "" -#: create/models.py:8 +#: instances/models.py:14 msgid "disk" msgstr "" -#: create/templates/create_flav_block.html:13 -msgid "Add New Flavor" +#: instances/models.py:28 +msgid "uuid" msgstr "" -#: create/templates/create_flav_block.html:21 -msgid "Micro" +#: instances/models.py:29 +msgid "is template" msgstr "" -#: create/templates/create_flav_block.html:26 -#: create/templates/create_instance_w2.html:82 -#: create/templates/create_instance_w2.html:327 -#: create/templates/create_instance_w2.html:540 -#: instances/templates/allinstances.html:58 -#: instances/templates/allinstances_index_grouped.html:9 -#: instances/templates/allinstances_index_nongrouped.html:8 -#: instances/templates/instance.html:40 instances/templates/instance.html:42 -#: instances/templates/instances.html:73 -msgid "VCPU" +#: instances/models.py:30 +msgid "created" msgstr "" -#: create/templates/create_flav_block.html:33 -#: create/templates/create_instance_w2.html:83 -#: create/templates/create_instance_w2.html:356 -#: create/templates/create_instance_w2.html:567 -#: instances/templates/instance.html:45 -msgid "RAM" +#: instances/models.py:215 +msgid "Can access console without password" msgstr "" -#: create/templates/create_flav_block.html:38 -#: create/templates/create_instance_w2.html:94 -#: create/templates/create_instance_w2.html:360 -#: create/templates/create_instance_w2.html:571 -#: instances/templates/allinstances.html:78 -#: instances/templates/instance.html:45 instances/templates/instance.html:450 -#: instances/templates/instance.html:463 -msgid "MB" +#: instances/templates/add_instance_network_block.html:12 +msgid "Add Instance Network" msgstr "" -#: create/templates/create_flav_block.html:41 -#: create/templates/create_instance_w2.html:84 -#: create/templates/create_instance_w2.html:371 -msgid "HDD" -msgstr "" - -#: create/templates/create_flav_block.html:46 -#: create/templates/create_instance_w2.html:95 -#: instances/templates/add_instance_volume.html:60 -#: storages/templates/create_stg_vol_block.html:71 -msgid "GB" -msgstr "" - -#: create/templates/create_instance_w1.html:4 -#: create/templates/create_instance_w2.html:4 -msgid "Create new instance" -msgstr "" - -#: create/templates/create_instance_w1.html:4 -msgid "Select Type" -msgstr "" - -#: create/templates/create_instance_w1.html:11 -#: create/templates/create_instance_w2.html:13 -#, python-format -msgid "New instance on %(host)s " -msgstr "" - -#: create/templates/create_instance_w1.html:47 -#: instances/templates/instance.html:643 networks/templates/network.html:75 -#: nwfilters/templates/nwfilter.html:52 -msgid "XML" -msgstr "" - -#: create/templates/create_instance_w1.html:68 -msgid "Chipset" -msgstr "" - -#: create/templates/create_instance_w1.html:78 -msgid "Next" -msgstr "" - -#: create/templates/create_instance_w2.html:49 -msgid "Flavor" -msgstr "" - -#: create/templates/create_instance_w2.html:54 -msgid "Custom" -msgstr "" - -#: create/templates/create_instance_w2.html:59 -msgid "Template" -msgstr "" - -#: create/templates/create_instance_w2.html:70 -msgid "Hypervisor doesn't have any Flavors" -msgstr "" - -#: create/templates/create_instance_w2.html:75 -msgid "Create from flavor" -msgstr "" - -#: create/templates/create_instance_w2.html:101 -msgid "Create Virtual Machine" -msgstr "" - -#: create/templates/create_instance_w2.html:119 -#: create/templates/create_instance_w2.html:316 -#: create/templates/create_instance_w2.html:529 -msgid "Firmware" -msgstr "" - -#: create/templates/create_instance_w2.html:131 -#: create/templates/create_instance_w2.html:334 -#: create/templates/create_instance_w2.html:546 -msgid "VCPU Config" -msgstr "" - -#: create/templates/create_instance_w2.html:134 -#: create/templates/create_instance_w2.html:337 -#: create/templates/create_instance_w2.html:549 -msgid "no-mode" -msgstr "" - -#: create/templates/create_instance_w2.html:153 -#: create/templates/create_instance_w2.html:595 -#: instances/templates/add_instance_volume.html:30 -#: instances/templates/add_instance_volume.html:100 -#: instances/templates/instance.html:829 storages/templates/storage.html:4 -#: storages/templates/storage.html:14 -msgid "Storage" -msgstr "" - -#: create/templates/create_instance_w2.html:162 -#: create/templates/create_instance_w2.html:190 -#: create/templates/create_instance_w2.html:381 -#: create/templates/create_instance_w2.html:436 -#: create/templates/create_instance_w2.html:584 -#: create/templates/create_instance_w2.html:603 -#: create/templates/create_instance_w2.html:649 -#: instances/templates/add_instance_network_block.html:40 -#: instances/templates/add_instance_volume.html:117 -#: instances/templates/create_inst_block.html:25 -#: instances/templates/instance.html:329 instances/templates/instance.html:776 -#: instances/templates/instance.html:972 instances/templates/instance.html:1649 -#: interfaces/templates/interface.html:42 -#: interfaces/templates/interface.html:44 nwfilters/templates/nwfilter.html:81 -#: storages/templates/create_stg_block.html:132 -#: storages/templates/storage.html:49 storages/templates/storage.html:51 -#: storages/templates/storage.html:53 -msgid "None" -msgstr "" - -#: create/templates/create_instance_w2.html:168 -#: create/templates/create_instance_w2.html:392 -#: create/templates/create_instance_w2.html:609 -#: instances/templates/add_instance_network_block.html:24 -#: instances/templates/instance.html:624 instances/templates/instance.html:959 -#: networks/templates/network.html:4 networks/templates/network.html:9 -#: networks/templates/network.html:110 networks/templates/network.html:221 -msgid "Network" -msgstr "" - -#: create/templates/create_instance_w2.html:178 -#: create/templates/create_instance_w2.html:406 -#: create/templates/create_instance_w2.html:619 -#: instances/templates/edit_instance_volume.html:25 -msgid "Advanced" -msgstr "" - -#: create/templates/create_instance_w2.html:187 -#: create/templates/create_instance_w2.html:433 -#: create/templates/create_instance_w2.html:646 -#: instances/templates/add_instance_network_block.html:37 -#: instances/templates/instance.html:968 nwfilters/templates/nwfilter.html:9 -msgid "NWFilter" -msgstr "" - -#: create/templates/create_instance_w2.html:198 -#: create/templates/create_instance_w2.html:635 -msgid "HDD cache mode" -msgstr "" - -#: create/templates/create_instance_w2.html:209 #: instances/templates/add_instance_network_block.html:18 -#: instances/templates/instance.html:924 instances/templates/instance.html:947 -#: instances/templates/instance.html:1047 +#: instances/templates/create_instance_w2.html:210 +#: instances/templates/instances/settings_tab.html:358 +#: instances/templates/instances/settings_tab.html:381 +#: instances/templates/instances/settings_tab.html:482 #: interfaces/templates/interface.html:46 #: interfaces/templates/interface.html:75 #: interfaces/templates/interfaces.html:63 @@ -1459,128 +1319,46 @@ msgstr "" msgid "MAC" msgstr "" -#: create/templates/create_instance_w2.html:216 -#: create/templates/create_instance_w2.html:445 -#: create/templates/create_instance_w2.html:658 -msgid "Graphics" +#: instances/templates/add_instance_network_block.html:24 +#: instances/templates/create_instance_w2.html:169 +#: instances/templates/create_instance_w2.html:393 +#: instances/templates/create_instance_w2.html:610 +#: instances/templates/instances/settings_tab.html:30 +#: instances/templates/instances/settings_tab.html:393 +#: networks/templates/network.html:4 networks/templates/network.html:9 +#: networks/templates/network.html:110 networks/templates/network.html:221 +msgid "Network" msgstr "" -#: create/templates/create_instance_w2.html:227 -#: create/templates/create_instance_w2.html:456 -#: create/templates/create_instance_w2.html:669 -msgid "Video" +#: instances/templates/add_instance_network_block.html:37 +#: instances/templates/create_instance_w2.html:188 +#: instances/templates/create_instance_w2.html:434 +#: instances/templates/create_instance_w2.html:647 +#: instances/templates/instances/settings_tab.html:402 +#: nwfilters/templates/nwfilter.html:9 +msgid "NWFilter" msgstr "" -#: create/templates/create_instance_w2.html:241 -#: create/templates/create_instance_w2.html:470 -#: create/templates/create_instance_w2.html:683 -msgid "Console Access" -msgstr "" - -#: create/templates/create_instance_w2.html:251 -#: create/templates/create_instance_w2.html:253 -#: create/templates/create_instance_w2.html:480 -#: create/templates/create_instance_w2.html:482 -#: create/templates/create_instance_w2.html:693 -#: create/templates/create_instance_w2.html:695 -msgid "Console Password" -msgstr "" - -#: create/templates/create_instance_w2.html:257 -#: create/templates/create_instance_w2.html:486 -#: create/templates/create_instance_w2.html:699 -msgid "Guest Agent" -msgstr "" - -#: create/templates/create_instance_w2.html:264 -#: create/templates/create_instance_w2.html:493 -#: create/templates/create_instance_w2.html:706 -msgid "VirtIO" -msgstr "" - -#: create/templates/create_instance_w2.html:363 -msgid "Added Disks" -msgstr "" - -#: create/templates/create_instance_w2.html:376 -#: create/templates/create_instance_w2.html:579 -msgid "Select pool" -msgstr "" - -#: create/templates/create_instance_w2.html:415 -#: create/templates/create_instance_w2.html:628 -msgid "Disk Metadata" -msgstr "" - -#: create/templates/create_instance_w2.html:417 -#: create/templates/create_instance_w2.html:630 -msgid "Metadata preallocation" -msgstr "" - -#: create/templates/create_instance_w2.html:419 -#: create/templates/create_instance_w2.html:632 -#: venv/lib/python3.6/site-packages/django/db/models/fields/files.py:360 -msgid "Image" -msgstr "" - -#: create/templates/create_instance_w2.html:422 -msgid "HDD Cache Mode" -msgstr "" - -#: create/templates/create_instance_w2.html:574 -msgid "Template Disk" -msgstr "" - -#: create/views.py:52 create/views.py:164 -msgid "A virtual machine with this name already exists" -msgstr "" - -#: create/views.py:133 -msgid "You haven't defined any storage pools" -msgstr "" - -#: create/views.py:136 -msgid "You haven't defined any network pools" -msgstr "" - -#: create/views.py:167 -msgid "There is an instance with same name. Are you sure?" -msgstr "" - -#: create/views.py:171 -msgid "No Virtual Machine MAC has been entered" -msgstr "" - -#: create/views.py:204 -msgid "Image has already exist. Please check volumes or change instance name" -msgstr "" - -#: create/views.py:230 -msgid "First you need to create or select an image" -msgstr "" - -#: create/views.py:252 -msgid "Invalid cache mode" -msgstr "" - -#: create/views.py:290 -msgid "Instance is created" -msgstr "" - -#: instances/models.py:11 -msgid "uuid" -msgstr "" - -#: instances/models.py:12 -msgid "is template" -msgstr "" - -#: instances/models.py:13 -msgid "created" -msgstr "" - -#: instances/templates/add_instance_network_block.html:12 -msgid "Add Instance Network" +#: instances/templates/add_instance_network_block.html:40 +#: instances/templates/add_instance_volume.html:117 +#: instances/templates/create_inst_block.html:25 +#: instances/templates/create_instance_w2.html:163 +#: instances/templates/create_instance_w2.html:191 +#: instances/templates/create_instance_w2.html:382 +#: instances/templates/create_instance_w2.html:437 +#: instances/templates/create_instance_w2.html:585 +#: instances/templates/create_instance_w2.html:604 +#: instances/templates/create_instance_w2.html:650 +#: instances/templates/instances/access_tab.html:135 +#: instances/templates/instances/settings_tab.html:183 +#: instances/templates/instances/settings_tab.html:406 +#: instances/templates/instances/stats_tab.html:90 +#: interfaces/templates/interface.html:42 +#: interfaces/templates/interface.html:44 nwfilters/templates/nwfilter.html:81 +#: storages/templates/create_stg_block.html:132 +#: storages/templates/storage.html:48 storages/templates/storage.html:50 +#: storages/templates/storage.html:52 +msgid "None" msgstr "" #: instances/templates/add_instance_owner_block.html:12 @@ -1610,24 +1388,36 @@ msgstr "" msgid "Volume parameters" msgstr "" +#: instances/templates/add_instance_volume.html:30 +#: instances/templates/add_instance_volume.html:100 +#: instances/templates/create_instance_w2.html:154 +#: instances/templates/create_instance_w2.html:596 +#: instances/templates/instances/settings_tab.html:237 +#: storages/templates/storage.html:4 storages/templates/storage.html:14 +msgid "Storage" +msgstr "" + #: instances/templates/add_instance_volume.html:46 #: storages/templates/create_stg_block.html:183 -#: storages/templates/create_stg_vol_block.html:57 -#: storages/templates/storage.html:101 storages/templates/storage.html:139 +#: storages/templates/storage.html:100 storages/templates/storage.html:138 msgid "Format" msgstr "" #: instances/templates/add_instance_volume.html:56 -#: storages/templates/create_stg_vol_block.html:67 -#: storages/templates/storage.html:54 storages/templates/storage.html:100 +#: storages/templates/storage.html:53 storages/templates/storage.html:99 #: storages/templates/storages.html:66 msgid "Size" msgstr "" +#: instances/templates/add_instance_volume.html:60 +#: instances/templates/create_instance_w2.html:96 +msgid "GB" +msgstr "" + #: instances/templates/add_instance_volume.html:63 #: instances/templates/add_instance_volume.html:123 #: instances/templates/edit_instance_volume.html:53 -#: instances/templates/instance.html:763 +#: instances/templates/instances/settings_tab.html:168 msgid "Bus" msgstr "" @@ -1637,9 +1427,8 @@ msgid "Cache" msgstr "" #: instances/templates/add_instance_volume.html:83 -#: instances/templates/instance.html:1416 -#: storages/templates/create_stg_vol_block.html:74 -#: storages/templates/storage.html:149 +#: instances/templates/instances/settings_tab.html:755 +#: storages/templates/storage.html:148 msgid "Metadata" msgstr "" @@ -1651,55 +1440,23 @@ msgstr "" msgid "Volume" msgstr "" -#: instances/templates/allinstances.html:33 -#: instances/templates/allinstances.html:49 -msgid "You don't have any Instance" +#: instances/templates/allinstances.html:24 +msgid "Problem occurred with host" msgstr "" -#: instances/templates/allinstances.html:71 -#: instances/templates/allinstances_index_grouped.html:57 -#: instances/templates/allinstances_index_nongrouped.html:21 -#: instances/templates/instance.html:14 instances/templates/instances.html:86 -msgid "Off" -msgstr "" - -#: instances/templates/allinstances.html:74 -#: instances/templates/allinstances_index_grouped.html:58 -#: instances/templates/allinstances_index_nongrouped.html:22 -#: instances/templates/instance.html:20 instances/templates/instance.html:143 -#: instances/templates/instance.html:198 -#: instances/templates/instance_actions.html:15 -#: instances/templates/instance_actions.html:32 -#: instances/templates/instance_actions.html:49 -#: instances/templates/instances.html:87 instances/views.py:699 -#: instances/views.py:1239 -msgid "Suspend" -msgstr "" - -#: instances/templates/allinstances_index_grouped.html:6 -#: instances/templates/allinstances_index_nongrouped.html:5 -#: instances/templates/instance.html:1438 -#: instances/templates/instance.html:1461 instances/templates/instances.html:70 -msgid "Description" -msgstr "" - -#: instances/templates/allinstances_index_grouped.html:11 +#: instances/templates/allinstances_index_grouped.html:12 msgid "Mem Usage" msgstr "" -#: instances/templates/allinstances_index_grouped.html:27 -msgid "Not Active" -msgstr "" - -#: instances/templates/allinstances_index_grouped.html:28 -msgid "Connection Failed" -msgstr "" - #: instances/templates/bottom_bar.html:4 msgid "HOST" msgstr "" -#: instances/templates/create_inst_block.html:12 +#: instances/templates/create_flav_block.html:14 +msgid "Add New Flavor" +msgstr "" + +#: instances/templates/create_inst_block.html:11 msgid "Choose a compute for new instance" msgstr "" @@ -1716,6 +1473,183 @@ msgstr "" msgid "Choose" msgstr "" +#: instances/templates/create_instance_w1.html:4 +#: instances/templates/create_instance_w2.html:5 +msgid "Create new instance" +msgstr "" + +#: instances/templates/create_instance_w1.html:4 +msgid "Select Type" +msgstr "" + +#: instances/templates/create_instance_w1.html:11 +#: instances/templates/create_instance_w2.html:14 +#, python-format +msgid "New instance on %(host)s " +msgstr "" + +#: instances/templates/create_instance_w1.html:47 +#: instances/templates/instances/settings_tab.html:49 +#: networks/templates/network.html:75 nwfilters/templates/nwfilter.html:52 +msgid "XML" +msgstr "" + +#: instances/templates/create_instance_w1.html:68 +msgid "Chipset" +msgstr "" + +#: instances/templates/create_instance_w1.html:78 +msgid "Next" +msgstr "" + +#: instances/templates/create_instance_w2.html:50 +msgid "Flavor" +msgstr "" + +#: instances/templates/create_instance_w2.html:55 +msgid "Custom" +msgstr "" + +#: instances/templates/create_instance_w2.html:60 +msgid "Template" +msgstr "" + +#: instances/templates/create_instance_w2.html:71 +msgid "Hypervisor doesn't have any Flavors" +msgstr "" + +#: instances/templates/create_instance_w2.html:76 +msgid "Create from flavor" +msgstr "" + +#: instances/templates/create_instance_w2.html:84 +#: instances/templates/create_instance_w2.html:357 +#: instances/templates/create_instance_w2.html:568 +#: instances/templates/instance.html:45 +msgid "RAM" +msgstr "" + +#: instances/templates/create_instance_w2.html:85 +#: instances/templates/create_instance_w2.html:372 +msgid "HDD" +msgstr "" + +#: instances/templates/create_instance_w2.html:95 +#: instances/templates/create_instance_w2.html:361 +#: instances/templates/create_instance_w2.html:572 +#: instances/templates/instance.html:45 +#: instances/templates/instances/resize_tab.html:95 +#: instances/templates/instances/resize_tab.html:108 +msgid "MB" +msgstr "" + +#: instances/templates/create_instance_w2.html:102 +msgid "Create Virtual Machine" +msgstr "" + +#: instances/templates/create_instance_w2.html:120 +#: instances/templates/create_instance_w2.html:317 +#: instances/templates/create_instance_w2.html:530 +msgid "Firmware" +msgstr "" + +#: instances/templates/create_instance_w2.html:132 +#: instances/templates/create_instance_w2.html:335 +#: instances/templates/create_instance_w2.html:547 +msgid "VCPU Config" +msgstr "" + +#: instances/templates/create_instance_w2.html:135 +#: instances/templates/create_instance_w2.html:338 +#: instances/templates/create_instance_w2.html:550 +msgid "no-mode" +msgstr "" + +#: instances/templates/create_instance_w2.html:179 +#: instances/templates/create_instance_w2.html:407 +#: instances/templates/create_instance_w2.html:620 +#: instances/templates/edit_instance_volume.html:25 +msgid "Advanced" +msgstr "" + +#: instances/templates/create_instance_w2.html:199 +#: instances/templates/create_instance_w2.html:636 +msgid "HDD cache mode" +msgstr "" + +#: instances/templates/create_instance_w2.html:217 +#: instances/templates/create_instance_w2.html:446 +#: instances/templates/create_instance_w2.html:659 +msgid "Graphics" +msgstr "" + +#: instances/templates/create_instance_w2.html:228 +#: instances/templates/create_instance_w2.html:457 +#: instances/templates/create_instance_w2.html:670 +msgid "Video" +msgstr "" + +#: instances/templates/create_instance_w2.html:242 +#: instances/templates/create_instance_w2.html:471 +#: instances/templates/create_instance_w2.html:684 +msgid "Console Access" +msgstr "" + +#: instances/templates/create_instance_w2.html:252 +#: instances/templates/create_instance_w2.html:254 +#: instances/templates/create_instance_w2.html:481 +#: instances/templates/create_instance_w2.html:483 +#: instances/templates/create_instance_w2.html:694 +#: instances/templates/create_instance_w2.html:696 +msgid "Console Password" +msgstr "" + +#: instances/templates/create_instance_w2.html:258 +#: instances/templates/create_instance_w2.html:487 +#: instances/templates/create_instance_w2.html:700 +msgid "Guest Agent" +msgstr "" + +#: instances/templates/create_instance_w2.html:265 +#: instances/templates/create_instance_w2.html:494 +#: instances/templates/create_instance_w2.html:707 +msgid "VirtIO" +msgstr "" + +#: instances/templates/create_instance_w2.html:364 +msgid "Added Disks" +msgstr "" + +#: instances/templates/create_instance_w2.html:377 +#: instances/templates/create_instance_w2.html:580 +msgid "Select pool" +msgstr "" + +#: instances/templates/create_instance_w2.html:416 +#: instances/templates/create_instance_w2.html:629 +msgid "Disk Metadata" +msgstr "" + +#: instances/templates/create_instance_w2.html:418 +#: instances/templates/create_instance_w2.html:631 +msgid "Metadata preallocation" +msgstr "" + +#: instances/templates/create_instance_w2.html:420 +#: instances/templates/create_instance_w2.html:633 +#: venv/lib/python3.6/site-packages/django/db/models/fields/files.py:360 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/files.py:391 +msgid "Image" +msgstr "" + +#: instances/templates/create_instance_w2.html:423 +msgid "HDD Cache Mode" +msgstr "" + +#: instances/templates/create_instance_w2.html:575 +msgid "Template Disk" +msgstr "" + #: instances/templates/edit_instance_volume.html:3 msgid "Edit Volume" msgstr "" @@ -1764,6 +1698,15 @@ msgstr "" msgid "Detect zeroes" msgstr "" +#: instances/templates/instance.html:20 +#: instances/templates/instance_actions.html:14 +#: instances/templates/instance_actions.html:25 +#: instances/templates/instance_actions.html:37 +#: instances/templates/instances/power_tab.html:25 +#: instances/templates/instances/power_tab.html:82 instances/views.py:287 +msgid "Suspend" +msgstr "" + #: instances/templates/instance.html:26 msgid "Guest Agent Enabled & Connected" msgstr "" @@ -1776,8 +1719,9 @@ msgstr "" msgid "Guest Agent Not Enabled & Not Connected" msgstr "" -#: instances/templates/instance.html:48 instances/templates/instance.html:374 -#: instances/templates/instance.html:610 +#: instances/templates/instance.html:48 +#: instances/templates/instances/resize_tab.html:18 +#: instances/templates/instances/settings_tab.html:16 msgid "Disk" msgstr "" @@ -1789,808 +1733,820 @@ msgstr "" msgid "quota reached" msgstr "" -#: instances/templates/instance.html:76 +#: instances/templates/instance.html:75 msgid "Power" msgstr "" -#: instances/templates/instance.html:82 +#: instances/templates/instance.html:81 msgid "Access" msgstr "" -#: instances/templates/instance.html:95 +#: instances/templates/instance.html:94 msgid "Snapshot" msgstr "" -#: instances/templates/instance.html:102 templates/navbar.html:32 +#: instances/templates/instance.html:101 templates/navbar.html:32 msgid "Settings" msgstr "" -#: instances/templates/instance.html:108 +#: instances/templates/instance.html:107 msgid "Stats" msgstr "" -#: instances/templates/instance.html:114 instances/templates/instance.html:1674 -#: instances/templates/instance.html:1691 -#: instances/templates/instance.html:1695 instances/views.py:421 +#: instances/templates/instance.html:113 +#: instances/templates/instances/destroy_instance_form.html:40 +#: instances/templates/instances/destroy_tab.html:18 +#: instances/templates/instances/destroy_tab.html:20 +#: instances/templates/instances/destroy_tab.html:23 instances/views.py:329 msgid "Destroy" msgstr "" -#: instances/templates/instance.html:127 instances/templates/instance.html:176 -#: instances/templates/instance_actions.html:18 -#: instances/templates/instance_actions.html:52 instances/views.py:387 -#: instances/views.py:1199 -msgid "Power Off" -msgstr "" - -#: instances/templates/instance.html:132 instances/templates/instance.html:183 -#: instances/templates/instance_actions.html:21 -#: instances/templates/instance_actions.html:38 -#: instances/templates/instance_actions.html:55 instances/views.py:381 -#: instances/views.py:1211 -msgid "Power Cycle" -msgstr "" - -#: instances/templates/instance.html:137 instances/templates/instance.html:157 -#: instances/templates/instance.html:190 instances/templates/instance.html:216 -#: instances/templates/instance_actions.html:35 instances/views.py:393 -#: instances/views.py:1206 -msgid "Force Off" -msgstr "" - -#: instances/templates/instance.html:152 instances/templates/instance.html:209 -#: instances/templates/instance.html:224 -#: instances/templates/instance_actions.html:29 instances/views.py:705 -#: instances/views.py:1245 -msgid "Resume" -msgstr "" - -#: instances/templates/instance.html:165 instances/templates/instance.html:236 -#: instances/templates/instance.html:238 -#: instances/templates/instance_actions.html:11 -#: instances/templates/instance_actions.html:46 instances/views.py:374 -#: instances/views.py:1193 +#: instances/templates/instance_actions.html:10 +#: instances/templates/instance_actions.html:35 +#: instances/templates/instances/power_tab.html:47 +#: instances/templates/instances/power_tab.html:121 +#: instances/templates/instances/power_tab.html:123 instances/views.py:262 msgid "Power On" msgstr "" -#: instances/templates/instance.html:174 -msgid "This action sends an ACPI shutdown signal to the instance." +#: instances/templates/instance_actions.html:15 +#: instances/templates/instances/power_tab.html:9 +#: instances/templates/instances/power_tab.html:59 instances/views.py:278 +msgid "Power Off" msgstr "" -#: instances/templates/instance.html:181 -msgid "" -"This action forcibly powers off and start the instance and may cause data " -"corruption." +#: instances/templates/instance_actions.html:16 +#: instances/templates/instance_actions.html:29 +#: instances/templates/instances/power_tab.html:14 +#: instances/templates/instances/power_tab.html:66 instances/views.py:271 +msgid "Power Cycle" msgstr "" -#: instances/templates/instance.html:188 instances/templates/instance.html:214 -msgid "" -"This action forcibly powers off the instance and may cause data corruption." +#: instances/templates/instance_actions.html:17 +#: instances/templates/instance_actions.html:30 +msgid "VNC Console" msgstr "" -#: instances/templates/instance.html:196 -msgid "This action suspends the instance." +#: instances/templates/instance_actions.html:22 +#: instances/templates/instances/power_tab.html:34 +#: instances/templates/instances/power_tab.html:93 +#: instances/templates/instances/power_tab.html:108 instances/views.py:295 +msgid "Resume" msgstr "" -#: instances/templates/instance.html:207 -msgid "This action restore the instance after suspend." +#: instances/templates/instance_actions.html:26 +#: instances/templates/instances/power_tab.html:19 +#: instances/templates/instances/power_tab.html:39 +#: instances/templates/instances/power_tab.html:74 +#: instances/templates/instances/power_tab.html:100 instances/views.py:302 +msgid "Force Off" msgstr "" -#: instances/templates/instance.html:222 -msgid "Administrator blocked your instance." -msgstr "" - -#: instances/templates/instance.html:232 -msgid "Click on Power On button to start this instance." -msgstr "" - -#: instances/templates/instance.html:235 -msgid "Template instance cannot be started." -msgstr "" - -#: instances/templates/instance.html:253 instances/templates/instance.html:285 -#: instances/templates/instance.html:290 instances/templates/instance.html:291 -#: instances/templates/instance.html:295 instances/templates/instance.html:617 -#: instances/templates/instance_actions.html:58 +#: instances/templates/instance_actions.html:41 +#: instances/templates/instances/access_tab.html:9 +#: instances/templates/instances/access_tab.html:79 +#: instances/templates/instances/access_tab.html:87 +#: instances/templates/instances/access_tab.html:90 +#: instances/templates/instances/access_tab.html:94 +#: instances/templates/instances/settings_tab.html:23 msgid "Console" msgstr "" -#: instances/templates/instance.html:259 +#: instances/templates/instances/access_tab.html:16 msgid "Root Password" msgstr "" -#: instances/templates/instance.html:273 instances/templates/instance.html:349 +#: instances/templates/instances/access_tab.html:31 +#: instances/templates/instances/access_tab.html:156 msgid "VDI" msgstr "" -#: instances/templates/instance.html:281 +#: instances/templates/instances/access_tab.html:39 +#, python-format msgid "" -"This action opens a new window with a VNC connection to the console of the " -"instance." +" This action opens a new window with a %(type)s connection to the console of " +"the instance." msgstr "" -#: instances/templates/instance.html:287 +#: instances/templates/instances/access_tab.html:47 +msgid "Scale" +msgstr "" + +#: instances/templates/instances/access_tab.html:55 +msgid "View Only" +msgstr "" + +#: instances/templates/instances/access_tab.html:63 +msgid "Resize Session" +msgstr "" + +#: instances/templates/instances/access_tab.html:71 +msgid "View Clipboard" +msgstr "" + +#: instances/templates/instances/access_tab.html:82 msgid "Toggle Dropdown" msgstr "" -#: instances/templates/instance.html:290 instances/templates/instance.html:291 +#: instances/templates/instances/access_tab.html:86 +#: instances/templates/instances/access_tab.html:89 msgid "Console port" msgstr "" -#: instances/templates/instance.html:290 +#: instances/templates/instances/access_tab.html:87 msgid "Lite" msgstr "" -#: instances/templates/instance.html:291 +#: instances/templates/instances/access_tab.html:90 msgid "Full" msgstr "" -#: instances/templates/instance.html:301 +#: instances/templates/instances/access_tab.html:100 msgid "You need shut down your instance and enter a new root password." msgstr "" -#: instances/templates/instance.html:305 +#: instances/templates/instances/access_tab.html:107 msgid "Enter Password" msgstr "" -#: instances/templates/instance.html:309 instances/templates/instance.html:311 +#: instances/templates/instances/access_tab.html:112 +#: instances/templates/instances/access_tab.html:115 msgid "Reset Root Password" msgstr "" -#: instances/templates/instance.html:319 +#: instances/templates/instances/access_tab.html:123 msgid "You need shut down your instance and choose your public key." msgstr "" -#: instances/templates/instance.html:335 instances/templates/instance.html:337 +#: instances/templates/instances/access_tab.html:142 +#: instances/templates/instances/access_tab.html:144 msgid "Add Public Key" msgstr "" -#: instances/templates/instance.html:345 +#: instances/templates/instances/access_tab.html:152 msgid "" "This action opens a remote viewer with a connection to the console of the " "instance." msgstr "" -#: instances/templates/instance.html:364 +#: instances/templates/instances/destroy_instance_form.html:4 +msgid "Confirm Destroy" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:8 +msgid "Destroy instance" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:15 +msgid "Instance is suspended, cannot destroy!" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:19 +msgid "This action is irreversible!" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:26 +msgid "Remove Instance's data" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:34 +msgid "Remove Instance's NVRAM" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:46 +msgid "You cannot destroy instance!" +msgstr "" + +#: instances/templates/instances/destroy_tab.html:8 +msgid "Destroy Instance" +msgstr "" + +#: instances/templates/instances/destroy_tab.html:15 +msgid "This action starts remove instance process" +msgstr "" + +#: instances/templates/instances/power_tab.html:56 +msgid "This action sends an ACPI shutdown signal to the instance." +msgstr "" + +#: instances/templates/instances/power_tab.html:64 +msgid "" +"This action forcibly powers off and start the instance and may cause data " +"corruption." +msgstr "" + +#: instances/templates/instances/power_tab.html:71 +#: instances/templates/instances/power_tab.html:98 +msgid "" +"This action forcibly powers off the instance and may cause data corruption." +msgstr "" + +#: instances/templates/instances/power_tab.html:80 +msgid "This action suspends the instance." +msgstr "" + +#: instances/templates/instances/power_tab.html:91 +msgid "This action restore the instance after suspend." +msgstr "" + +#: instances/templates/instances/power_tab.html:106 +msgid "Administrator blocked your instance." +msgstr "" + +#: instances/templates/instances/power_tab.html:116 +msgid "Click on Power On button to start this instance." +msgstr "" + +#: instances/templates/instances/power_tab.html:120 +msgid "Template instance cannot be started." +msgstr "" + +#: instances/templates/instances/resize_tab.html:8 msgid "CPU" msgstr "" -#: instances/templates/instance.html:385 +#: instances/templates/instances/resize_tab.html:29 msgid "Logical host CPUs" msgstr "" -#: instances/templates/instance.html:387 instances/templates/instance.html:450 -#: instances/templates/instance.html:490 +#: instances/templates/instances/resize_tab.html:31 +#: instances/templates/instances/resize_tab.html:95 +#: instances/templates/instances/resize_tab.html:136 msgid "Current Allocation" msgstr "" -#: instances/templates/instance.html:401 instances/templates/instance.html:463 +#: instances/templates/instances/resize_tab.html:45 +#: instances/templates/instances/resize_tab.html:108 msgid "Maximum Allocation" msgstr "" -#: instances/templates/instance.html:419 +#: instances/templates/instances/resize_tab.html:63 msgid "Logical Instance Active/Maximum CPUs" msgstr "" -#: instances/templates/instance.html:427 instances/templates/instance.html:674 -#: instances/templates/instance.html:689 networks/templates/network.html:65 -#: storages/templates/storage.html:79 +#: instances/templates/instances/resize_tab.html:71 +#: instances/templates/instances/settings_tab.html:79 +#: instances/templates/instances/settings_tab.html:95 +#: networks/templates/network.html:65 storages/templates/storage.html:78 msgid "Disable" msgstr "" -#: instances/templates/instance.html:429 +#: instances/templates/instances/resize_tab.html:73 msgid "Constant" msgstr "" -#: instances/templates/instance.html:431 instances/templates/instance.html:672 -#: instances/templates/instance.html:687 networks/templates/network.html:63 -#: storages/templates/storage.html:76 +#: instances/templates/instances/resize_tab.html:75 +#: instances/templates/instances/settings_tab.html:77 +#: instances/templates/instances/settings_tab.html:91 +#: networks/templates/network.html:63 storages/templates/storage.html:75 msgid "Enable" msgstr "" -#: instances/templates/instance.html:440 instances/templates/instance.html:479 -#: instances/templates/instance.html:503 +#: instances/templates/instances/resize_tab.html:84 +#: instances/templates/instances/resize_tab.html:124 +#: instances/templates/instances/resize_tab.html:157 msgid "You don't have permission for resizing instance" msgstr "" -#: instances/templates/instance.html:448 +#: instances/templates/instances/resize_tab.html:93 msgid "Total host memory" msgstr "" -#: instances/templates/instance.html:458 instances/templates/instance.html:473 +#: instances/templates/instances/resize_tab.html:103 +#: instances/templates/instances/resize_tab.html:118 msgid "Custom value" msgstr "" -#: instances/templates/instance.html:487 +#: instances/templates/instances/resize_tab.html:133 msgid "Disk allocation (GB)" msgstr "" -#: instances/templates/instance.html:517 instances/templates/instance.html:538 -#: instances/templates/instance.html:540 -msgid "Take Snapshot" +#: instances/templates/instances/resize_tab.html:140 +#: instances/templates/instances/settings_tab.html:269 +msgid "Error getting disk info" msgstr "" -#: instances/templates/instance.html:522 -msgid "Manage Snapshots" -msgstr "" - -#: instances/templates/instance.html:530 -msgid "" -"This may take more than an hour, depending on how much content is on your " -"droplet and how large the disk is." -msgstr "" - -#: instances/templates/instance.html:534 -msgid "Enter Snapshot Name" -msgstr "" - -#: instances/templates/instance.html:545 -msgid "To take a snapshot please Power Off the instance." -msgstr "" - -#: instances/templates/instance.html:550 -msgid "Choose a snapshot for restore/delete" -msgstr "" - -#: instances/templates/instance.html:567 -msgid "Revert to this Snapshot" -msgstr "" - -#: instances/templates/instance.html:572 -msgid "To restore snapshots you need Power Off the instance." -msgstr "" - -#: instances/templates/instance.html:581 -msgid "Delete Snapshot" -msgstr "" - -#: instances/templates/instance.html:592 -msgid "You do not have any snapshots" -msgstr "" - -#: instances/templates/instance.html:605 +#: instances/templates/instances/settings_tab.html:11 msgid "Boot" msgstr "" -#: instances/templates/instance.html:638 instances/templates/instance.html:1174 -#: instances/templates/instance.html:1176 +#: instances/templates/instances/settings_tab.html:44 +#: instances/templates/instances/settings_tab.html:616 +#: instances/templates/instances/settings_tab.html:618 msgid "Migrate" msgstr "" -#: instances/templates/instance.html:650 +#: instances/templates/instances/settings_tab.html:56 msgid "Options" msgstr "" -#: instances/templates/instance.html:666 networks/templates/network.html:59 -#: storages/templates/storage.html:71 +#: instances/templates/instances/settings_tab.html:72 +#: networks/templates/network.html:59 storages/templates/storage.html:70 msgid "Autostart" msgstr "" -#: instances/templates/instance.html:670 +#: instances/templates/instances/settings_tab.html:75 msgid "Autostart your instance when host server is power on " msgstr "" -#: instances/templates/instance.html:680 +#: instances/templates/instances/settings_tab.html:84 msgid "Boot Order" msgstr "" -#: instances/templates/instance.html:685 +#: instances/templates/instances/settings_tab.html:88 msgid "Enable Boot Menu for your instance when it starts up " msgstr "" -#: instances/templates/instance.html:687 +#: instances/templates/instances/settings_tab.html:91 msgid "Show boot menu" msgstr "" -#: instances/templates/instance.html:689 +#: instances/templates/instances/settings_tab.html:95 msgid "Hide boot menu" msgstr "" -#: instances/templates/instance.html:693 +#: instances/templates/instances/settings_tab.html:100 msgid "Please shutdown instance to modify boot menu" msgstr "" -#: instances/templates/instance.html:724 +#: instances/templates/instances/settings_tab.html:130 msgid "up: move selected devices" msgstr "" -#: instances/templates/instance.html:727 +#: instances/templates/instances/settings_tab.html:133 msgid "down: move selected devices" msgstr "" -#: instances/templates/instance.html:733 instances/templates/instance.html:994 +#: instances/templates/instances/settings_tab.html:139 +#: instances/templates/instances/settings_tab.html:428 msgid "Apply" msgstr "" -#: instances/templates/instance.html:743 +#: instances/templates/instances/settings_tab.html:149 msgid "Instance Media" msgstr "" -#: instances/templates/instance.html:746 +#: instances/templates/instances/settings_tab.html:152 msgid "Add CD-ROM" msgstr "" -#: instances/templates/instance.html:764 instances/templates/instance.html:826 +#: instances/templates/instances/settings_tab.html:169 +#: instances/templates/instances/settings_tab.html:234 #: interfaces/templates/create_iface_block.html:34 #: networks/templates/network.html:46 networks/templates/networks.html:63 #: storages/templates/create_stg_block.html:77 msgid "Device" msgstr "" -#: instances/templates/instance.html:765 +#: instances/templates/instances/settings_tab.html:170 msgid "CD-ROM" msgstr "" -#: instances/templates/instance.html:781 instances/templates/instance.html:783 +#: instances/templates/instances/settings_tab.html:188 +#: instances/templates/instances/settings_tab.html:190 msgid "Mount" msgstr "" -#: instances/templates/instance.html:786 +#: instances/templates/instances/settings_tab.html:193 msgid "Detach CD-ROM (remove device)" msgstr "" -#: instances/templates/instance.html:800 instances/templates/instance.html:802 +#: instances/templates/instances/settings_tab.html:208 +#: instances/templates/instances/settings_tab.html:210 msgid "Unmount" msgstr "" -#: instances/templates/instance.html:812 +#: instances/templates/instances/settings_tab.html:220 msgid "There is not any CD-ROM device." msgstr "" -#: instances/templates/instance.html:817 +#: instances/templates/instances/settings_tab.html:225 msgid "Instance Volume" msgstr "" -#: instances/templates/instance.html:827 +#: instances/templates/instances/settings_tab.html:235 msgid "Used" msgstr "" -#: instances/templates/instance.html:828 +#: instances/templates/instances/settings_tab.html:236 msgid "Capacity" msgstr "" -#: instances/templates/instance.html:830 instances/templates/instance.html:928 +#: instances/templates/instances/settings_tab.html:238 +#: instances/templates/instances/settings_tab.html:362 msgid "Source" msgstr "" -#: instances/templates/instance.html:870 instances/templates/instance.html:877 +#: instances/templates/instances/settings_tab.html:294 +#: instances/templates/instances/settings_tab.html:298 msgid "Detach" msgstr "" -#: instances/templates/instance.html:870 +#: instances/templates/instances/settings_tab.html:294 msgid "Are you sure to detach volume?" msgstr "" -#: instances/templates/instance.html:873 -msgid "Are you sure to delete volume?" -msgstr "" - -#: instances/templates/instance.html:877 instances/templates/instance.html:880 +#: instances/templates/instances/settings_tab.html:298 +#: instances/templates/instances/settings_tab.html:314 msgid "Are you sure? This may lead data corruption!" msgstr "" -#: instances/templates/instance.html:896 +#: instances/templates/instances/settings_tab.html:310 +msgid "Are you sure to delete volume?" +msgstr "" + +#: instances/templates/instances/settings_tab.html:330 msgid "Add a network device" msgstr "" -#: instances/templates/instance.html:902 +#: instances/templates/instances/settings_tab.html:336 msgid "Network Devices" msgstr "" -#: instances/templates/instance.html:907 instances/templates/instance.html:908 +#: instances/templates/instances/settings_tab.html:341 +#: instances/templates/instances/settings_tab.html:342 msgid "Info" msgstr "" -#: instances/templates/instance.html:921 +#: instances/templates/instances/settings_tab.html:355 msgid "active" msgstr "" -#: instances/templates/instance.html:926 nwfilters/templates/nwfilter.html:78 +#: instances/templates/instances/settings_tab.html:360 +#: nwfilters/templates/nwfilter.html:78 msgid "Filter" msgstr "" -#: instances/templates/instance.html:933 +#: instances/templates/instances/settings_tab.html:367 msgid "Edit NIC" msgstr "" -#: instances/templates/instance.html:941 +#: instances/templates/instances/settings_tab.html:375 msgid "Edit Instance Network" msgstr "" -#: instances/templates/instance.html:954 +#: instances/templates/instances/settings_tab.html:388 msgid "Net Source" msgstr "" -#: instances/templates/instance.html:962 interfaces/templates/interface.html:3 -#: interfaces/templates/interface.html:8 interfaces/templates/interface.html:40 +#: instances/templates/instances/settings_tab.html:396 +#: interfaces/templates/interface.html:3 interfaces/templates/interface.html:8 +#: interfaces/templates/interface.html:40 msgid "Interface" msgstr "" -#: instances/templates/instance.html:980 instances/templates/instance.html:1019 +#: instances/templates/instances/settings_tab.html:414 +#: instances/templates/instances/settings_tab.html:453 msgid "Model" msgstr "" -#: instances/templates/instance.html:994 +#: instances/templates/instances/settings_tab.html:428 msgid "Apply network changes" msgstr "" -#: instances/templates/instance.html:1003 +#: instances/templates/instances/settings_tab.html:437 msgid "Delete Device" msgstr "" -#: instances/templates/instance.html:1011 +#: instances/templates/instances/settings_tab.html:445 #: interfaces/templates/create_iface_block.html:71 #: interfaces/templates/interface.html:42 msgid "IPv4" msgstr "" -#: instances/templates/instance.html:1015 +#: instances/templates/instances/settings_tab.html:449 #: interfaces/templates/create_iface_block.html:74 #: interfaces/templates/interface.html:44 msgid "IPv6" msgstr "" -#: instances/templates/instance.html:1021 +#: instances/templates/instances/settings_tab.html:455 msgid "QoS" msgstr "" -#: instances/templates/instance.html:1041 networks/templates/network.html:325 +#: instances/templates/instances/settings_tab.html:476 +#: networks/templates/network.html:325 msgid "QoS Configuration" msgstr "" -#: instances/templates/instance.html:1047 +#: instances/templates/instances/settings_tab.html:482 #: networks/templates/add_network_qos.html:18 #: networks/templates/network.html:331 nwfilters/templates/nwfilter.html:134 msgid "Direction" msgstr "" -#: instances/templates/instance.html:1048 +#: instances/templates/instances/settings_tab.html:483 #: networks/templates/add_network_qos.html:27 #: networks/templates/network.html:332 msgid "Average" msgstr "" -#: instances/templates/instance.html:1049 +#: instances/templates/instances/settings_tab.html:484 #: networks/templates/add_network_qos.html:34 #: networks/templates/network.html:333 msgid "Peak" msgstr "" -#: instances/templates/instance.html:1050 +#: instances/templates/instances/settings_tab.html:485 #: networks/templates/add_network_qos.html:41 #: networks/templates/network.html:334 msgid "Burst" msgstr "" -#: instances/templates/instance.html:1074 networks/templates/network.html:356 +#: instances/templates/instances/settings_tab.html:510 +#: networks/templates/network.html:356 msgid "Edit QoS" msgstr "" -#: instances/templates/instance.html:1079 networks/templates/network.html:361 +#: instances/templates/instances/settings_tab.html:520 +#: networks/templates/network.html:361 msgid "Delete QoS" msgstr "" -#: instances/templates/instance.html:1095 +#: instances/templates/instances/settings_tab.html:536 msgid "For migration both host servers must have equal settings and OS type" msgstr "" -#: instances/templates/instance.html:1098 +#: instances/templates/instances/settings_tab.html:540 msgid "Original host" msgstr "" -#: instances/templates/instance.html:1104 +#: instances/templates/instances/settings_tab.html:546 msgid "Host migration" msgstr "" -#: instances/templates/instance.html:1121 +#: instances/templates/instances/settings_tab.html:563 msgid "Live migration" msgstr "" -#: instances/templates/instance.html:1129 +#: instances/templates/instances/settings_tab.html:571 msgid "Unsafe migration" msgstr "" -#: instances/templates/instance.html:1137 +#: instances/templates/instances/settings_tab.html:579 msgid "Delete original" msgstr "" -#: instances/templates/instance.html:1145 +#: instances/templates/instances/settings_tab.html:587 msgid "Offline migration" msgstr "" -#: instances/templates/instance.html:1153 +#: instances/templates/instances/settings_tab.html:595 msgid "Post copy" msgstr "" -#: instances/templates/instance.html:1161 +#: instances/templates/instances/settings_tab.html:603 msgid "Forces CPU convergence during live migration" msgstr "" -#: instances/templates/instance.html:1161 +#: instances/templates/instances/settings_tab.html:603 msgid "Auto converge" msgstr "" -#: instances/templates/instance.html:1169 +#: instances/templates/instances/settings_tab.html:611 msgid "Compress instance memory for fast migration" msgstr "" -#: instances/templates/instance.html:1169 +#: instances/templates/instances/settings_tab.html:611 msgid "Compressed" msgstr "" -#: instances/templates/instance.html:1182 +#: instances/templates/instances/settings_tab.html:624 msgid "If you need to edit XML please Power Off the instance" msgstr "" -#: instances/templates/instance.html:1203 +#: instances/templates/instances/settings_tab.html:646 msgid "Instance owners" msgstr "" -#: instances/templates/instance.html:1216 -msgid "Delete Ownership" +#: instances/templates/instances/settings_tab.html:675 +msgid "To change console settings, shutdown the instance." msgstr "" -#: instances/templates/instance.html:1231 -msgid "To set console's type, shutdown the instance." +#: instances/templates/instances/settings_tab.html:681 +#: instances/templates/instances/settings_tab.html:683 +msgid "Update" msgstr "" -#: instances/templates/instance.html:1234 -#: interfaces/templates/create_iface_block.html:44 -#: interfaces/templates/interface.html:77 -#: interfaces/templates/interfaces.html:62 -#: storages/templates/create_stg_block.html:35 -#: storages/templates/create_stg_block.html:64 -#: storages/templates/create_stg_block.html:93 -#: storages/templates/create_stg_block.html:158 -#: storages/templates/storages.html:64 -msgid "Type" -msgstr "" - -#: instances/templates/instance.html:1238 -#: instances/templates/instance.html:1262 -#: instances/templates/instance.html:1331 -#: instances/templates/instance.html:1495 -msgid "please choose" -msgstr "" - -#: instances/templates/instance.html:1246 -#: instances/templates/instance.html:1248 -#: instances/templates/instance.html:1269 -#: instances/templates/instance.html:1271 -#: instances/templates/instance.html:1307 -#: instances/templates/instance.html:1309 -#: instances/templates/instance.html:1339 -#: instances/templates/instance.html:1341 -#: instances/templates/instance.html:1502 -#: instances/templates/instance.html:1504 -#: instances/templates/instance.html:1524 -#: instances/templates/instance.html:1526 -#: instances/templates/instance.html:1554 secrets/templates/secrets.html:103 -msgid "Set" -msgstr "" - -#: instances/templates/instance.html:1255 -msgid "To set console listen address, shutdown the instance." -msgstr "" - -#: instances/templates/instance.html:1258 -msgid "Listen on" -msgstr "" - -#: instances/templates/instance.html:1278 -msgid "To create console password, shutdown the instance." -msgstr "" - -#: instances/templates/instance.html:1284 -msgid "Generate" -msgstr "" - -#: instances/templates/instance.html:1288 -#: instances/templates/instance.html:1322 networks/templates/network.html:169 -#: networks/templates/network.html:279 -#: venv/lib/python3.6/site-packages/django/forms/widgets.py:395 -msgid "Clear" -msgstr "" - -#: instances/templates/instance.html:1304 networks/templates/network.html:161 -#: networks/templates/network.html:271 nwfilters/templates/nwfilters.html:88 -msgid "Show" -msgstr "" - -#: instances/templates/instance.html:1316 -msgid "To set console's keymap, shutdown the instance." -msgstr "" - -#: instances/templates/instance.html:1327 -msgid "Keymap" -msgstr "" - -#: instances/templates/instance.html:1353 +#: instances/templates/instances/settings_tab.html:692 msgid "Create a clone" msgstr "" -#: instances/templates/instance.html:1356 +#: instances/templates/instances/settings_tab.html:695 msgid "Clone Name" msgstr "" -#: instances/templates/instance.html:1363 -#: instances/templates/instance.html:1394 +#: instances/templates/instances/settings_tab.html:702 +#: instances/templates/instances/settings_tab.html:733 msgid "Guess" msgstr "" -#: instances/templates/instance.html:1382 +#: instances/templates/instances/settings_tab.html:721 msgid "Network devices" msgstr "" -#: instances/templates/instance.html:1392 +#: instances/templates/instances/settings_tab.html:731 msgid "Random" msgstr "" -#: instances/templates/instance.html:1407 +#: instances/templates/instances/settings_tab.html:746 msgid "Storage devices" msgstr "" -#: instances/templates/instance.html:1432 -#: instances/templates/instance.html:1455 +#: instances/templates/instances/settings_tab.html:771 +#: instances/templates/instances/settings_tab.html:794 msgid "Title" msgstr "" -#: instances/templates/instance.html:1452 +#: instances/templates/instances/settings_tab.html:791 msgid "To set instance template name description, shutdown the instance." msgstr "" -#: instances/templates/instance.html:1467 +#: instances/templates/instances/settings_tab.html:806 msgid "Is template" msgstr "" -#: instances/templates/instance.html:1488 +#: instances/templates/instances/settings_tab.html:827 msgid "To set instance video model, shutdown the instance." msgstr "" -#: instances/templates/instance.html:1491 +#: instances/templates/instances/settings_tab.html:830 msgid "Primary Video Model" msgstr "" -#: instances/templates/instance.html:1512 +#: instances/templates/instances/settings_tab.html:834 +msgid "please choose" +msgstr "" + +#: instances/templates/instances/settings_tab.html:841 +#: instances/templates/instances/settings_tab.html:843 +#: instances/templates/instances/settings_tab.html:863 +#: instances/templates/instances/settings_tab.html:865 +#: instances/templates/instances/settings_tab.html:893 +#: secrets/templates/secrets.html:103 +msgid "Set" +msgstr "" + +#: instances/templates/instances/settings_tab.html:851 msgid "To set instance vCPUs hotpluggable" msgstr "" -#: instances/templates/instance.html:1515 +#: instances/templates/instances/settings_tab.html:854 msgid "vCPU Hot Plug" msgstr "" -#: instances/templates/instance.html:1519 -#: instances/templates/instance.html:1550 +#: instances/templates/instances/settings_tab.html:858 +#: instances/templates/instances/settings_tab.html:889 msgid "Enabled" msgstr "" -#: instances/templates/instance.html:1520 -#: instances/templates/instance.html:1551 +#: instances/templates/instances/settings_tab.html:859 +#: instances/templates/instances/settings_tab.html:890 msgid "Disabled" msgstr "" -#: instances/templates/instance.html:1534 +#: instances/templates/instances/settings_tab.html:873 msgid "To Enable/Disable Qemu Guest Agent. Status" msgstr "" -#: instances/templates/instance.html:1539 +#: instances/templates/instances/settings_tab.html:878 msgid "Disconnected" msgstr "" -#: instances/templates/instance.html:1542 +#: instances/templates/instances/settings_tab.html:881 #: venv/lib/python3.6/site-packages/django/forms/widgets.py:709 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:703 msgid "Unknown" msgstr "" -#: instances/templates/instance.html:1546 +#: instances/templates/instances/settings_tab.html:885 msgid "Qemu Guest Agent" msgstr "" -#: instances/templates/instance.html:1572 +#: instances/templates/instances/snapshots_tab.html:9 +#: instances/templates/instances/snapshots_tab.html:31 +#: instances/templates/instances/snapshots_tab.html:33 +msgid "Take Snapshot" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:14 +msgid "Manage Snapshots" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:22 +msgid "" +"This may take more than an hour, depending on how much content is on your " +"droplet and how large the disk is." +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:27 +msgid "Enter Snapshot Name" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:38 +msgid "To take a snapshot please Power Off the instance." +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:43 +msgid "Choose a snapshot for restore/delete" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:61 +msgid "Revert to this Snapshot" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:66 +msgid "To restore snapshots you need Power Off the instance." +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:75 +msgid "Delete Snapshot" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:86 +msgid "You do not have any snapshots" +msgstr "" + +#: instances/templates/instances/stats_tab.html:8 msgid "Real Time" msgstr "" -#: instances/templates/instance.html:1586 +#: instances/templates/instances/stats_tab.html:23 msgid "CPU Usage" msgstr "" -#: instances/templates/instance.html:1598 +#: instances/templates/instances/stats_tab.html:36 msgid "Memory Usage" msgstr "" -#: instances/templates/instance.html:1611 +#: instances/templates/instances/stats_tab.html:50 msgid "Bandwidth Device" msgstr "" -#: instances/templates/instance.html:1625 +#: instances/templates/instances/stats_tab.html:65 msgid "Disk I/O device" msgstr "" -#: instances/templates/instance.html:1664 -msgid "Destroy Instance" -msgstr "" - -#: instances/templates/instance.html:1671 -msgid "Delete storage for instance?" -msgstr "" - -#: instances/templates/instance.html:1680 -msgid "Remove Instance's data" -msgstr "" - -#: instances/templates/instance.html:1687 -msgid "Remove Instance's NVRAM" -msgstr "" - -#: instances/templates/instance_actions.html:24 -#: instances/templates/instance_actions.html:41 -msgid "VNC Console" -msgstr "" - -#: instances/templates/instances.html:61 -msgid "Hypervisor doesn't have any Instances" -msgstr "" - -#: instances/views.py:224 +#: instances/utils.py:122 msgid "None available device name" msgstr "" -#: instances/views.py:260 +#: instances/utils.py:239 +msgid "Deleting due to multiple(Instance Name) records." +msgstr "" + +#: instances/utils.py:247 +msgid "Deleting due to multiple(UUID) records." +msgstr "" + +#: instances/views.py:259 +msgid "Templates cannot be started." +msgstr "" + +#: instances/views.py:362 #, python-brace-format msgid "Migrate to {new_compute.hostname}" msgstr "" -#: instances/views.py:340 -#, python-brace-format -msgid "Fixing UUID {uuid}" -msgstr "" - -#: instances/views.py:345 -msgid "Instance does not exist: Creating new instance" -msgstr "" - -#: instances/views.py:370 instances/views.py:1190 -msgid "Templates cannot be started." -msgstr "" - -#: instances/views.py:437 +#: instances/views.py:385 msgid "Reset root password" msgstr "" -#: instances/views.py:445 instances/views.py:467 +#: instances/views.py:391 instances/views.py:417 msgid "Please shutdown down your instance and then try again" msgstr "" -#: instances/views.py:459 +#: instances/views.py:409 #, python-brace-format msgid "Installed new SSH public key {publickey.keyname}" msgstr "" -#: instances/views.py:477 +#: instances/views.py:436 #, python-brace-format msgid "User {quota_msg} quota reached, cannot resize CPU of '{instance.name}'!" msgstr "" -#: instances/views.py:483 +#: instances/views.py:442 msgid "Resize CPU" msgstr "" -#: instances/views.py:501 +#: instances/views.py:470 #, python-brace-format msgid "" "User {quota_msg} quota reached, cannot resize memory of '{instance.name}'!" msgstr "" -#: instances/views.py:507 +#: instances/views.py:476 msgid "Resize Memory" msgstr "" -#: instances/views.py:524 +#: instances/views.py:506 #, python-brace-format msgid "" "User {quota_msg} quota reached, cannot resize disks of '{instance.name}'!" msgstr "" -#: instances/views.py:528 +#: instances/views.py:510 msgid "Disk resize" msgstr "" @@ -2599,259 +2555,289 @@ msgstr "" msgid "Attach new disk {name} ({format})" msgstr "" -#: instances/views.py:571 +#: instances/views.py:580 #, python-brace-format msgid "Attach Existing disk: {target_dev}" msgstr "" -#: instances/views.py:603 +#: instances/views.py:636 msgid "Volume changes are applied. But it will be activated after shutdown" msgstr "" -#: instances/views.py:606 +#: instances/views.py:638 msgid "Volume is changed successfully." msgstr "" -#: instances/views.py:607 +#: instances/views.py:639 #, python-brace-format msgid "Edit disk: {target_dev}" msgstr "" -#: instances/views.py:623 +#: instances/views.py:661 #, python-brace-format msgid "Delete disk: {dev}" msgstr "" -#: instances/views.py:628 -#, python-brace-format -msgid "The disk: {dev} is detached but not deleted. Error: {err}" -msgstr "" - -#: instances/views.py:638 +#: instances/views.py:677 #, python-brace-format msgid "Detach disk: {dev}" msgstr "" -#: instances/views.py:646 +#: instances/views.py:690 #, python-brace-format msgid "Add CD-ROM: {target}" msgstr "" -#: instances/views.py:653 +#: instances/views.py:703 #, python-brace-format msgid "Detach CD-ROM: {dev}" msgstr "" -#: instances/views.py:661 +#: instances/views.py:716 #, python-brace-format msgid "Mount media: {dev}" msgstr "" -#: instances/views.py:669 +#: instances/views.py:729 #, python-brace-format msgid "Umount media: {dev}" msgstr "" -#: instances/views.py:676 +#: instances/views.py:742 #, python-brace-format msgid "New snapshot : {name}" msgstr "" -#: instances/views.py:683 +#: instances/views.py:753 #, python-brace-format msgid "Delete snapshot : {snap_name}" msgstr "" -#: instances/views.py:690 +#: instances/views.py:764 msgid "Successful revert snapshot: " msgstr "" -#: instances/views.py:693 +#: instances/views.py:767 msgid "Revert snapshot" msgstr "" -#: instances/views.py:716 +#: instances/views.py:781 #, python-brace-format msgid "VCPU {id} is enabled={enabled}" msgstr "" -#: instances/views.py:723 +#: instances/views.py:792 #, python-brace-format msgid "VCPU Hot-plug is enabled={status}" msgstr "" -#: instances/views.py:734 +#: instances/views.py:803 msgid "Set autostart" msgstr "" -#: instances/views.py:740 +#: instances/views.py:812 msgid "Unset autostart" msgstr "" -#: instances/views.py:746 +#: instances/views.py:821 msgid "Enable boot menu" msgstr "" -#: instances/views.py:752 +#: instances/views.py:830 msgid "Disable boot menu" msgstr "" -#: instances/views.py:764 +#: instances/views.py:845 msgid "Set boot order" msgstr "" -#: instances/views.py:767 +#: instances/views.py:848 msgid "Boot menu changes applied. But it will be activated after shutdown" msgstr "" -#: instances/views.py:770 +#: instances/views.py:850 msgid "Boot order changed successfully." msgstr "" -#: instances/views.py:778 +#: instances/views.py:861 msgid "Edit XML" msgstr "" -#: instances/views.py:792 -msgid "Enter the console password or select Generate" +#: instances/views.py:875 +#, python-brace-format +msgid "Set Quest Agent {status}" msgstr "" -#: instances/views.py:796 +#: instances/views.py:885 +msgid "Set Video Model" +msgstr "" + +#: instances/views.py:894 +msgid "Change network" +msgstr "" + +#: instances/views.py:907 +msgid "Network Device Config is changed. Please shutdown instance to activate." +msgstr "" + +#: instances/views.py:915 +msgid "Add network" +msgstr "" + +#: instances/views.py:929 +msgid "Delete network" +msgstr "" + +#: instances/views.py:945 +#, python-brace-format +msgid "Set Link State: {state}" +msgstr "" + +#: instances/views.py:964 +msgid "{qos_dir.capitalize()} QoS is set" +msgstr "" + +#: instances/views.py:968 networks/views.py:216 +msgid "{qos_dir.capitalize()} QoS is set. Network XML is changed." +msgstr "" + +#: instances/views.py:969 networks/views.py:217 +msgid "Stop and start network to activate new config" +msgstr "" + +#: instances/views.py:983 networks/views.py:233 +msgid "{qos_dir.capitalize()} QoS is deleted" +msgstr "" + +#: instances/views.py:987 networks/views.py:230 +msgid "{qos_dir.capitalize()} QoS is deleted. Network XML is changed. " +msgstr "" + +#: instances/views.py:988 networks/views.py:231 +msgid "Stop and start network to activate new config." +msgstr "" + +#: instances/views.py:1004 +msgid "Only one owner is allowed and the one already added" +msgstr "" + +#: instances/views.py:1009 +#, python-format +msgid "Added owner %(user)s" +msgstr "" + +#: instances/views.py:1020 +#, python-brace-format +msgid "Deleted owner {userinstance_id}" +msgstr "" + +#: instances/views.py:1052 +msgid "User '{quota_msg}' quota reached, cannot create '{clone_data['name']}'!" +msgstr "" + +#: instances/views.py:1055 +msgid "Instance '{clone_data['name']}' already exists!" +msgstr "" + +#: instances/views.py:1058 +msgid "Instance name '{clone_data['name']}' contains invalid characters!" +msgstr "" + +#: instances/views.py:1061 +msgid "Instance MAC '{clone_data['clone-net-mac-0']}' invalid format!" +msgstr "" + +#: instances/views.py:1071 +#, python-brace-format +msgid "Clone of '{instance.name}'" +msgstr "" + +#: instances/views.py:1104 msgid "" "Error setting console password. You should check that your instance have an " "graphic device." msgstr "" -#: instances/views.py:800 +#: instances/views.py:1107 msgid "Set VNC password" msgstr "" -#: instances/views.py:811 +#: instances/views.py:1115 msgid "Set VNC keymap" msgstr "" -#: instances/views.py:817 +#: instances/views.py:1120 msgid "Set VNC type" msgstr "" -#: instances/views.py:821 -msgid "Console type not supported" -msgstr "" - -#: instances/views.py:828 +#: instances/views.py:1125 msgid "Set VNC listen address" msgstr "" -#: instances/views.py:840 -#, python-brace-format -msgid "Set Quest Agent {status}" -msgstr "" - -#: instances/views.py:847 -msgid "Set Video Model" -msgstr "" - -#: instances/views.py:872 -msgid "Change network" -msgstr "" - -#: instances/views.py:885 -msgid "Network Device Config is changed. Please shutdown instance to activate." -msgstr "" - -#: instances/views.py:890 -msgid "Add network" -msgstr "" - -#: instances/views.py:900 -msgid "Delete network" -msgstr "" - -#: instances/views.py:912 -#, python-brace-format -msgid "Set Link State: {state}" -msgstr "" - -#: instances/views.py:928 -msgid "{qos_dir.capitalize()} QoS is set" -msgstr "" - -#: instances/views.py:931 networks/views.py:216 -msgid "{qos_dir.capitalize()} QoS is set. Network XML is changed." -msgstr "" - -#: instances/views.py:932 networks/views.py:217 -msgid "Stop and start network to activate new config" -msgstr "" - -#: instances/views.py:943 networks/views.py:233 -msgid "{qos_dir.capitalize()} QoS is deleted" -msgstr "" - -#: instances/views.py:946 networks/views.py:230 -msgid "{qos_dir.capitalize()} QoS is deleted. Network XML is changed. " -msgstr "" - -#: instances/views.py:947 networks/views.py:231 -msgid "Stop and start network to activate new config." -msgstr "" - -#: instances/views.py:959 -msgid "Only one owner is allowed and the one already added" -msgstr "" - -#: instances/views.py:964 -#, python-brace-format -msgid "Added owner {user_id}" -msgstr "" - -#: instances/views.py:972 -#, python-brace-format -msgid "Deleted owner {userinstance_id}" -msgstr "" - -#: instances/views.py:1001 -msgid "User '{quota_msg}' quota reached, cannot create '{clone_data['name']}'!" -msgstr "" - -#: instances/views.py:1004 -msgid "Instance '{clone_data['name']}' already exists!" -msgstr "" - -#: instances/views.py:1007 -msgid "Instance name '{clone_data['name']}' contains invalid characters!" -msgstr "" - -#: instances/views.py:1011 -msgid "Instance MAC '{clone_data['clone-net-mac-0']}' invalid format!" -msgstr "" - -#: instances/views.py:1027 -#, python-brace-format -msgid "Clone of '{instance.name}'" -msgstr "" - -#: instances/views.py:1046 +#: instances/views.py:1148 msgid "Edit options" msgstr "" -#: instances/views.py:1103 -msgid "Deleting due to multiple(Instance Name) records." -msgstr "" - -#: instances/views.py:1111 -msgid "Deleting due to multiple(UUID) records." -msgstr "" - -#: instances/views.py:1160 -#, python-brace-format -msgid "Problem occurred with host: {comp.name} - {status}" -msgstr "" - -#: instances/views.py:1218 +#: instances/views.py:1162 msgid "Send console.vv file" msgstr "" +#: instances/views.py:1214 instances/views.py:1307 +msgid "A virtual machine with this name already exists" +msgstr "" + +#: instances/views.py:1288 +msgid "You haven't defined any storage pools" +msgstr "" + +#: instances/views.py:1291 +msgid "You haven't defined any network pools" +msgstr "" + +#: instances/views.py:1310 +msgid "There is an instance with same name. Are you sure?" +msgstr "" + +#: instances/views.py:1313 +msgid "No Virtual Machine MAC has been entered" +msgstr "" + +#: instances/views.py:1337 +msgid "Image has already exist. Please check volumes or change instance name" +msgstr "" + +#: instances/views.py:1358 +msgid "First you need to create or select an image" +msgstr "" + +#: instances/views.py:1377 +msgid "Invalid cache mode" +msgstr "" + +#: instances/views.py:1414 +msgid "Instance is created" +msgstr "" + +#: instances/views.py:1433 +msgid "Flavor Created" +msgstr "" + +#: instances/views.py:1441 +msgid "Create Flavor" +msgstr "" + +#: instances/views.py:1452 +msgid "Flavor Updated" +msgstr "" + +#: instances/views.py:1460 +msgid "Update Flavor" +msgstr "" + +#: instances/views.py:1470 +msgid "Flavor Deleted" +msgstr "" + #: interfaces/forms.py:25 msgid "The IPv4 address must not contain any special characters" msgstr "" @@ -2912,6 +2898,17 @@ msgstr "" msgid "hotplug" msgstr "" +#: interfaces/templates/create_iface_block.html:44 +#: interfaces/templates/interface.html:77 +#: interfaces/templates/interfaces.html:62 +#: storages/templates/create_stg_block.html:35 +#: storages/templates/create_stg_block.html:64 +#: storages/templates/create_stg_block.html:93 +#: storages/templates/create_stg_block.html:158 +#: storages/templates/storages.html:64 +msgid "Type" +msgstr "" + #: interfaces/templates/create_iface_block.html:47 msgid "bridge" msgstr "" @@ -2990,12 +2987,12 @@ msgstr "" #: interfaces/templates/interface.html:56 #: interfaces/templates/interface.html:79 networks/templates/network.html:48 -#: storages/templates/storage.html:58 +#: storages/templates/storage.html:57 msgid "State" msgstr "" #: interfaces/templates/interface.html:63 networks/templates/network.html:55 -#: storages/templates/storage.html:66 +#: storages/templates/storage.html:65 msgid "Stop" msgstr "" @@ -3011,19 +3008,19 @@ msgstr "" msgid "Hypervisor doesn't have any Interfaces" msgstr "" -#: logs/models.py:5 +#: logs/models.py:6 msgid "user" msgstr "" -#: logs/models.py:6 +#: logs/models.py:7 msgid "instance" msgstr "" -#: logs/models.py:7 +#: logs/models.py:8 msgid "message" msgstr "" -#: logs/models.py:8 +#: logs/models.py:9 msgid "date" msgstr "" @@ -3039,11 +3036,11 @@ msgstr "" msgid "No IPv6 subnet has been entered" msgstr "" -#: networks/forms.py:24 storages/forms.py:25 +#: networks/forms.py:24 storages/forms.py:22 msgid "The pool name must not contain any special characters" msgstr "" -#: networks/forms.py:26 storages/forms.py:27 +#: networks/forms.py:26 storages/forms.py:24 msgid "The pool name must not exceed 20 characters" msgstr "" @@ -3212,6 +3209,17 @@ msgstr "" msgid "IPv4 Fixed Addresses" msgstr "" +#: networks/templates/network.html:161 networks/templates/network.html:271 +#: nwfilters/templates/nwfilters.html:88 +msgid "Show" +msgstr "" + +#: networks/templates/network.html:169 networks/templates/network.html:279 +#: venv/lib/python3.6/site-packages/django/forms/widgets.py:395 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:377 +msgid "Clear" +msgstr "" + #: networks/templates/network.html:192 networks/templates/network.html:301 msgid "Edit entry" msgstr "" @@ -3393,7 +3401,7 @@ msgid "Private" msgstr "" #: secrets/templates/create_secret_block.html:36 -#: storages/templates/storage.html:56 +#: storages/templates/storage.html:55 msgid "Usage" msgstr "" @@ -3418,27 +3426,27 @@ msgstr "" msgid "Value" msgstr "" -#: storages/forms.py:10 storages/forms.py:39 +#: storages/forms.py:9 storages/forms.py:36 msgid "No path has been entered" msgstr "" -#: storages/forms.py:36 +#: storages/forms.py:33 msgid "The target must not contain any special characters" msgstr "" -#: storages/forms.py:48 +#: storages/forms.py:45 msgid "No device or path has been entered" msgstr "" -#: storages/forms.py:50 +#: storages/forms.py:47 msgid "The disk source must not contain any special characters" msgstr "" -#: storages/forms.py:66 storages/forms.py:85 +#: storages/forms.py:61 storages/forms.py:76 msgid "The image name must not contain any special characters" msgstr "" -#: storages/forms.py:68 storages/forms.py:87 +#: storages/forms.py:78 msgid "The image name must not exceed 120 characters" msgstr "" @@ -3507,66 +3515,63 @@ msgstr "" msgid "Local Path" msgstr "" -#: storages/templates/create_stg_vol_block.html:14 +#: storages/templates/create_stg_vol_block.html:15 msgid "Upload ISO Image" msgstr "" -#: storages/templates/create_stg_vol_block.html:28 +#: storages/templates/create_stg_vol_block.html:29 msgid "Upload" msgstr "" -#: storages/templates/create_stg_vol_block.html:45 +#: storages/templates/create_stg_vol_block.html:46 msgid "Add New Volume" msgstr "" -#: storages/templates/create_stg_vol_block.html:60 -#: storages/templates/storage.html:144 -msgid "qcow2" -msgstr "" - -#: storages/templates/create_stg_vol_block.html:61 -#: storages/templates/storage.html:143 -msgid "qcow" -msgstr "" - -#: storages/templates/create_stg_vol_block.html:62 -#: storages/templates/storage.html:142 -msgid "raw" -msgstr "" - -#: storages/templates/storage.html:46 +#: storages/templates/storage.html:45 msgid "Pool name" msgstr "" -#: storages/templates/storage.html:48 +#: storages/templates/storage.html:47 msgid "Pool type" msgstr "" -#: storages/templates/storage.html:50 +#: storages/templates/storage.html:49 msgid "Pool path" msgstr "" -#: storages/templates/storage.html:52 +#: storages/templates/storage.html:51 msgid "Pool status" msgstr "" -#: storages/templates/storage.html:87 storages/templates/storages.html:68 +#: storages/templates/storage.html:86 storages/templates/storages.html:68 msgid "Volumes" msgstr "" -#: storages/templates/storage.html:99 +#: storages/templates/storage.html:98 msgid "Allocated" msgstr "" -#: storages/templates/storage.html:120 +#: storages/templates/storage.html:119 msgid "Clone image" msgstr "" -#: storages/templates/storage.html:133 +#: storages/templates/storage.html:132 msgid "Convert" msgstr "" -#: storages/templates/storage.html:189 +#: storages/templates/storage.html:141 +msgid "raw" +msgstr "" + +#: storages/templates/storage.html:142 +msgid "qcow" +msgstr "" + +#: storages/templates/storage.html:143 +msgid "qcow2" +msgstr "" + +#: storages/templates/storage.html:188 msgid "Hypervisor doesn't have any Volumes" msgstr "" @@ -3574,44 +3579,44 @@ msgstr "" msgid "Hypervisor doesn't have any Storages" msgstr "" -#: storages/views.py:38 +#: storages/views.py:40 msgid "Pool name already use" msgstr "" -#: storages/views.py:42 +#: storages/views.py:44 msgid "You need create secret for pool" msgstr "" -#: storages/views.py:45 +#: storages/views.py:47 msgid "You need input all fields for creating ceph pool" msgstr "" -#: storages/views.py:153 -#, python-brace-format -msgid "Image file {name} is created successfully" -msgstr "" - -#: storages/views.py:165 +#: storages/views.py:129 #, python-brace-format msgid "Volume: {volname} is deleted." msgstr "" -#: storages/views.py:171 +#: storages/views.py:134 msgid "ISO image already exist" msgstr "" -#: storages/views.py:175 +#: storages/views.py:138 msgid "ISO: {request.FILES['file']} is uploaded." msgstr "" -#: storages/views.py:184 +#: storages/views.py:147 msgid "Name of volume already in use" msgstr "" -#: storages/views.py:195 +#: storages/views.py:157 msgid "{data['image']} image cloned as {name} successfully" msgstr "" +#: storages/views.py:196 +#, python-brace-format +msgid "Image file {name} is created successfully" +msgstr "" + #: templates/403.html:3 msgid "403" msgstr "" @@ -3658,6 +3663,10 @@ msgid "" "to complete you request." msgstr "" +#: templates/common/confirm_delete.html:12 +msgid "Are you sure you want to delete" +msgstr "" + #: templates/errors_block.html:8 msgid "Error" msgstr "" @@ -3681,57 +3690,71 @@ msgid "close" msgstr "" #: venv/lib/python3.6/site-packages/django/contrib/messages/apps.py:7 +#: venv2/lib/python2.7/site-packages/django/contrib/messages/apps.py:7 msgid "Messages" msgstr "" #: venv/lib/python3.6/site-packages/django/contrib/sitemaps/apps.py:7 +#: venv2/lib/python2.7/site-packages/django/contrib/sitemaps/apps.py:7 msgid "Site Maps" msgstr "" #: venv/lib/python3.6/site-packages/django/contrib/staticfiles/apps.py:9 +#: venv2/lib/python2.7/site-packages/django/contrib/staticfiles/apps.py:7 msgid "Static Files" msgstr "" #: venv/lib/python3.6/site-packages/django/contrib/syndication/apps.py:7 +#: venv2/lib/python2.7/site-packages/django/contrib/syndication/apps.py:7 msgid "Syndication" msgstr "" #: venv/lib/python3.6/site-packages/django/core/paginator.py:45 +#: venv2/lib/python2.7/site-packages/django/core/paginator.py:43 msgid "That page number is not an integer" msgstr "" #: venv/lib/python3.6/site-packages/django/core/paginator.py:47 +#: venv2/lib/python2.7/site-packages/django/core/paginator.py:45 msgid "That page number is less than 1" msgstr "" #: venv/lib/python3.6/site-packages/django/core/paginator.py:52 +#: venv2/lib/python2.7/site-packages/django/core/paginator.py:50 msgid "That page contains no results" msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:31 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:34 msgid "Enter a valid value." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:102 #: venv/lib/python3.6/site-packages/django/forms/fields.py:658 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:107 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:671 msgid "Enter a valid URL." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:154 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:160 msgid "Enter a valid integer." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:165 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:171 msgid "Enter a valid email address." msgstr "" #. Translators: "letters" means latin letters: a-z and A-Z. #: venv/lib/python3.6/site-packages/django/core/validators.py:239 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:245 msgid "" "Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:246 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:252 msgid "" "Enter a valid 'slug' consisting of Unicode letters, numbers, underscores, or " "hyphens." @@ -3739,39 +3762,51 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:255 #: venv/lib/python3.6/site-packages/django/core/validators.py:275 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:257 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:277 msgid "Enter a valid IPv4 address." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:260 #: venv/lib/python3.6/site-packages/django/core/validators.py:276 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:262 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:278 msgid "Enter a valid IPv6 address." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:270 #: venv/lib/python3.6/site-packages/django/core/validators.py:274 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:272 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:276 msgid "Enter a valid IPv4 or IPv6 address." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:304 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:308 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1131 msgid "Enter only digits separated by commas." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:310 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:314 #, python-format msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:342 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:345 #, python-format msgid "Ensure this value is less than or equal to %(limit_value)s." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:351 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:354 #, python-format msgid "Ensure this value is greater than or equal to %(limit_value)s." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:361 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:364 #, python-format msgid "" "Ensure this value has at least %(limit_value)d character (it has " @@ -3783,6 +3818,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:376 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:379 #, python-format msgid "" "Ensure this value has at most %(limit_value)d character (it has " @@ -3796,10 +3832,13 @@ msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:395 #: venv/lib/python3.6/site-packages/django/forms/fields.py:290 #: venv/lib/python3.6/site-packages/django/forms/fields.py:325 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:303 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:340 msgid "Enter a number." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:397 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:399 #, python-format msgid "Ensure that there are no more than %(max)s digit in total." msgid_plural "Ensure that there are no more than %(max)s digits in total." @@ -3807,6 +3846,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:402 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:404 #, python-format msgid "Ensure that there are no more than %(max)s decimal place." msgid_plural "Ensure that there are no more than %(max)s decimal places." @@ -3814,6 +3854,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:407 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:409 #, python-format msgid "" "Ensure that there are no more than %(max)s digit before the decimal point." @@ -3823,6 +3864,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:469 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:463 #, python-format msgid "" "File extension '%(extension)s' is not allowed. Allowed extensions are: " @@ -3835,28 +3877,35 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/base.py:1162 #: venv/lib/python3.6/site-packages/django/forms/models.py:756 +#: venv2/lib/python2.7/site-packages/django/db/models/base.py:1209 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:749 msgid "and" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/base.py:1164 +#: venv2/lib/python2.7/site-packages/django/db/models/base.py:1211 #, python-format msgid "%(model_name)s with this %(field_labels)s already exists." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:104 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:116 #, python-format msgid "Value %(value)r is not a valid choice." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:105 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:117 msgid "This field cannot be null." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:106 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:118 msgid "This field cannot be blank." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:107 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:119 #, python-format msgid "%(model_name)s with this %(field_label)s already exists." msgstr "" @@ -3864,33 +3913,42 @@ msgstr "" #. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. #. Eg: "Title must be unique for pub_date year" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:111 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:123 #, python-format msgid "" "%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:128 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:140 #, python-format msgid "Field of type: %(field_type)s" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:905 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1772 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:901 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1809 msgid "Integer" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:909 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1770 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:905 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1807 #, python-format msgid "'%(value)s' value must be an integer." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:984 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1850 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:978 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1878 msgid "Big (8 byte) integer" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:996 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:990 #, python-format msgid "'%(value)s' value must be either True or False." msgstr "" @@ -3901,19 +3959,23 @@ msgid "'%(value)s' value must be either True, False, or None." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:999 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:992 msgid "Boolean (Either True or False)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1040 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1058 #, python-format msgid "String (up to %(max_length)s)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1104 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1115 msgid "Comma-separated integers" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1153 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1172 #, python-format msgid "" "'%(value)s' value has an invalid date format. It must be in YYYY-MM-DD " @@ -3922,6 +3984,8 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1155 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1298 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1174 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1319 #, python-format msgid "" "'%(value)s' value has the correct format (YYYY-MM-DD) but it is an invalid " @@ -3929,10 +3993,12 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1158 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1177 msgid "Date (without time)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1296 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1317 #, python-format msgid "" "'%(value)s' value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." @@ -3940,6 +4006,7 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1300 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1321 #, python-format msgid "" "'%(value)s' value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" @@ -3947,19 +4014,23 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1304 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1325 msgid "Date (with time)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1452 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1475 #, python-format msgid "'%(value)s' value must be a decimal number." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1454 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1477 msgid "Decimal number" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1593 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1628 #, python-format msgid "" "'%(value)s' value has an invalid format. It must be in [DD] [HH:[MM:]]ss[." @@ -3967,66 +4038,81 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1596 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1631 msgid "Duration" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1646 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1683 msgid "Email address" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1669 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1707 msgid "File path" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1735 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1773 #, python-format msgid "'%(value)s' value must be a float." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1737 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1775 msgid "Floating point number" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1866 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1893 msgid "IPv4 address" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1897 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1924 msgid "IP address" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1977 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1978 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2006 #, python-format msgid "'%(value)s' value must be either None, True or False." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1980 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2008 msgid "Boolean (Either True, False or None)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2015 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2071 msgid "Positive integer" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2028 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2083 msgid "Positive small integer" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2042 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2096 #, python-format msgid "Slug (up to %(max_length)s)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2074 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2130 msgid "Small integer" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2081 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2137 msgid "Text" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2109 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2163 #, python-format msgid "" "'%(value)s' value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " @@ -4034,6 +4120,7 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2111 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2165 #, python-format msgid "" "'%(value)s' value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " @@ -4041,18 +4128,22 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2114 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2168 msgid "Time" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2240 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2296 msgid "URL" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2262 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2319 msgid "Raw binary data" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2312 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2366 #, python-format msgid "'%(value)s' is not a valid UUID." msgstr "" @@ -4062,65 +4153,81 @@ msgid "Universally unique identifier" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/files.py:221 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/files.py:228 msgid "File" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:778 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:788 #, python-format msgid "%(model)s instance with %(field)s %(value)r does not exist." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:780 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:790 msgid "Foreign Key (type determined by related field)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:1007 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:1029 msgid "One-to-one relationship" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:1057 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:1104 #, python-format msgid "%(from)s-%(to)s relationship" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:1058 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:1105 #, python-format msgid "%(from)s-%(to)s relationships" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:1100 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:1147 msgid "Many-to-many relationship" msgstr "" #. Translators: If found as last label character, these punctuation #. characters will prevent the default label_suffix to be appended to the label #: venv/lib/python3.6/site-packages/django/forms/boundfield.py:146 +#: venv2/lib/python2.7/site-packages/django/forms/boundfield.py:181 msgid ":?.!" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:53 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:56 msgid "This field is required." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:245 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:258 msgid "Enter a whole number." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:396 #: venv/lib/python3.6/site-packages/django/forms/fields.py:1126 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:418 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:1149 msgid "Enter a valid date." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:420 #: venv/lib/python3.6/site-packages/django/forms/fields.py:1127 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:442 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:1150 msgid "Enter a valid time." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:442 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:464 msgid "Enter a valid date/time." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:471 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:493 msgid "Enter a valid duration." msgstr "" @@ -4130,18 +4237,22 @@ msgid "The number of days must be between {min_days} and {max_days}." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:532 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:547 msgid "No file was submitted. Check the encoding type on the form." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:533 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:548 msgid "No file was submitted." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:534 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:549 msgid "The submitted file is empty." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:536 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:551 #, python-format msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." msgid_plural "" @@ -4150,10 +4261,12 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:539 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:554 msgid "Please either submit a file or check the clear checkbox, not both." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:600 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:619 msgid "" "Upload a valid image. The file you uploaded was either not an image or a " "corrupted image." @@ -4162,6 +4275,9 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:762 #: venv/lib/python3.6/site-packages/django/forms/fields.py:852 #: venv/lib/python3.6/site-packages/django/forms/models.py:1270 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:776 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:872 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1265 #, python-format msgid "Select a valid choice. %(value)s is not one of the available choices." msgstr "" @@ -4169,32 +4285,41 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:853 #: venv/lib/python3.6/site-packages/django/forms/fields.py:968 #: venv/lib/python3.6/site-packages/django/forms/models.py:1269 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:873 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:990 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1264 msgid "Enter a list of values." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:969 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:991 msgid "Enter a complete value." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:1185 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:1208 msgid "Enter a valid UUID." msgstr "" #. Translators: This is the default suffix added to form field labels #: venv/lib/python3.6/site-packages/django/forms/forms.py:86 +#: venv2/lib/python2.7/site-packages/django/forms/forms.py:87 msgid ":" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/forms.py:212 +#: venv2/lib/python2.7/site-packages/django/forms/forms.py:213 #, python-format msgid "(Hidden field %(name)s) %(error)s" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/formsets.py:91 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:97 msgid "ManagementForm data is missing or has been tampered with" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/formsets.py:338 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:355 #, python-format msgid "Please submit %d or fewer forms." msgid_plural "Please submit %d or fewer forms." @@ -4202,6 +4327,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/forms/formsets.py:345 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:362 #, python-format msgid "Please submit %d or more forms." msgid_plural "Please submit %d or more forms." @@ -4210,20 +4336,25 @@ msgstr[1] "" #: venv/lib/python3.6/site-packages/django/forms/formsets.py:371 #: venv/lib/python3.6/site-packages/django/forms/formsets.py:373 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:390 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:392 msgid "Order" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:751 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:744 #, python-format msgid "Please correct the duplicate data for %(field)s." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:755 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:748 #, python-format msgid "Please correct the duplicate data for %(field)s, which must be unique." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:761 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:754 #, python-format msgid "" "Please correct the duplicate data for %(field_name)s which must be unique " @@ -4231,6 +4362,7 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:770 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:763 msgid "Please correct the duplicate values below." msgstr "" @@ -4239,6 +4371,7 @@ msgid "The inline value did not match the parent instance." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:1158 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1154 msgid "Select a valid choice. That choice is not one of the available choices." msgstr "" @@ -4248,6 +4381,7 @@ msgid "\"%(pk)s\" is not a valid value." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/utils.py:162 +#: venv2/lib/python2.7/site-packages/django/forms/utils.py:172 #, python-format msgid "" "%(datetime)s couldn't be interpreted in time zone %(current_timezone)s; it " @@ -4255,23 +4389,29 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/widgets.py:396 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:378 msgid "Currently" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/widgets.py:710 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:704 msgid "Yes" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/widgets.py:711 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:705 msgid "No" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:788 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:851 msgid "yes,no,maybe" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:817 #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:834 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:880 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:897 #, python-format msgid "%(size)d byte" msgid_plural "%(size)d bytes" @@ -4279,327 +4419,401 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:836 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:899 #, python-format msgid "%s KB" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:838 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:901 #, python-format msgid "%s MB" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:840 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:903 #, python-format msgid "%s GB" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:842 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:905 #, python-format msgid "%s TB" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:844 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:907 #, python-format msgid "%s PB" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:62 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:66 msgid "p.m." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:63 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:67 msgid "a.m." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:68 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:72 msgid "PM" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:69 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:73 msgid "AM" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:150 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:158 msgid "midnight" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:152 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:160 msgid "noon" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Monday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Tuesday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Wednesday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Thursday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Friday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:7 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:7 msgid "Saturday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:7 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:7 msgid "Sunday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Mon" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Tue" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Wed" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Thu" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Fri" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:11 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:11 msgid "Sat" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:11 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:11 msgid "Sun" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "January" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "February" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "March" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "April" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "May" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "June" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "July" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "August" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "September" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "October" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "November" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:16 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:20 msgid "December" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "jan" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "feb" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "mar" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "apr" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "may" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "jun" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "jul" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "aug" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "sep" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "oct" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "nov" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "dec" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:23 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:31 msgctxt "abbrev. month" msgid "Jan." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:24 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:32 msgctxt "abbrev. month" msgid "Feb." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:25 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:33 msgctxt "abbrev. month" msgid "March" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:26 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:34 msgctxt "abbrev. month" msgid "April" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:27 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:35 msgctxt "abbrev. month" msgid "May" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:28 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:36 msgctxt "abbrev. month" msgid "June" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:29 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:37 msgctxt "abbrev. month" msgid "July" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:30 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:38 msgctxt "abbrev. month" msgid "Aug." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:31 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:39 msgctxt "abbrev. month" msgid "Sept." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:32 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:40 msgctxt "abbrev. month" msgid "Oct." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:33 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:41 msgctxt "abbrev. month" msgid "Nov." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:34 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:42 msgctxt "abbrev. month" msgid "Dec." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:37 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:45 msgctxt "alt. month" msgid "January" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:38 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:46 msgctxt "alt. month" msgid "February" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:39 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:47 msgctxt "alt. month" msgid "March" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:40 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:48 msgctxt "alt. month" msgid "April" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:41 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:49 msgctxt "alt. month" msgid "May" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:42 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:50 msgctxt "alt. month" msgid "June" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:43 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:51 msgctxt "alt. month" msgid "July" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:44 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:52 msgctxt "alt. month" msgid "August" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:45 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:53 msgctxt "alt. month" msgid "September" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:46 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:54 msgctxt "alt. month" msgid "October" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:47 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:55 msgctxt "alt. month" msgid "November" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:48 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:56 msgctxt "alt. month" msgid "December" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/ipv6.py:8 +#: venv2/lib/python2.7/site-packages/django/utils/ipv6.py:12 msgid "This is not a valid IPv6 address." msgstr "" @@ -4610,16 +4824,20 @@ msgid "%(truncated_text)s…" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/text.py:233 +#: venv2/lib/python2.7/site-packages/django/utils/text.py:251 msgid "or" msgstr "" #. Translators: This string is used as a separator between list elements #: venv/lib/python3.6/site-packages/django/utils/text.py:252 #: venv/lib/python3.6/site-packages/django/utils/timesince.py:83 +#: venv2/lib/python2.7/site-packages/django/utils/text.py:270 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:71 msgid ", " msgstr "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:9 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:11 #, python-format msgid "%d year" msgid_plural "%d years" @@ -4627,6 +4845,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:12 #, python-format msgid "%d month" msgid_plural "%d months" @@ -4634,6 +4853,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:11 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:13 #, python-format msgid "%d week" msgid_plural "%d weeks" @@ -4641,6 +4861,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:12 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:14 #, python-format msgid "%d day" msgid_plural "%d days" @@ -4648,6 +4869,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:13 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:15 #, python-format msgid "%d hour" msgid_plural "%d hours" @@ -4655,6 +4877,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:16 #, python-format msgid "%d minute" msgid_plural "%d minutes" @@ -4662,18 +4885,22 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:72 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:60 msgid "0 minutes" msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:110 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:109 msgid "Forbidden" msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:111 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:110 msgid "CSRF verification failed. Request aborted." msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:115 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:114 msgid "" "You are seeing this message because this HTTPS site requires a 'Referer " "header' to be sent by your Web browser, but none was sent. This header is " @@ -4682,6 +4909,7 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:120 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:119 msgid "" "If you have configured your browser to disable 'Referer' headers, please re-" "enable them, at least for this site, or for HTTPS connections, or for 'same-" @@ -4698,6 +4926,7 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:132 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:124 msgid "" "You are seeing this message because this site requires a CSRF cookie when " "submitting forms. This cookie is required for security reasons, to ensure " @@ -4705,44 +4934,56 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:137 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:129 msgid "" "If you have configured your browser to disable cookies, please re-enable " "them, at least for this site, or for 'same-origin' requests." msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:142 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:134 msgid "More information is available with DEBUG=True." msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:41 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:48 msgid "No year specified" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:61 #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:111 #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:208 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:72 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:132 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:249 msgid "Date out of range" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:90 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:107 msgid "No month specified" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:142 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:169 msgid "No day specified" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:188 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:225 msgid "No week specified" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:338 #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:367 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:387 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:415 #, python-format msgid "No %(verbose_name_plural)s available" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:589 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:669 #, python-format msgid "" "Future %(verbose_name_plural)s not available because %(class_name)s." @@ -4750,39 +4991,47 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:623 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:703 #, python-format msgid "Invalid date string '%(datestr)s' given format '%(format)s'" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/detail.py:54 +#: venv2/lib/python2.7/site-packages/django/views/generic/detail.py:55 #, python-format msgid "No %(verbose_name)s found matching the query" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/list.py:67 +#: venv2/lib/python2.7/site-packages/django/views/generic/list.py:77 msgid "Page is not 'last', nor can it be converted to an int." msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/list.py:72 +#: venv2/lib/python2.7/site-packages/django/views/generic/list.py:82 #, python-format msgid "Invalid page (%(page_number)s): %(message)s" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/list.py:154 +#: venv2/lib/python2.7/site-packages/django/views/generic/list.py:172 #, python-format msgid "Empty list and '%(class_name)s.allow_empty' is False." msgstr "" #: venv/lib/python3.6/site-packages/django/views/static.py:40 +#: venv2/lib/python2.7/site-packages/django/views/static.py:44 msgid "Directory indexes are not allowed here." msgstr "" #: venv/lib/python3.6/site-packages/django/views/static.py:42 +#: venv2/lib/python2.7/site-packages/django/views/static.py:46 #, python-format msgid "\"%(path)s\" does not exist" msgstr "" #: venv/lib/python3.6/site-packages/django/views/static.py:80 +#: venv2/lib/python2.7/site-packages/django/views/static.py:86 #, python-format msgid "Index of %(directory)s" msgstr "" @@ -4834,3 +5083,271 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/views/templates/default_urlconf.html:408 msgid "Connect, get help, or contribute" msgstr "" + +#: venv/lib/python3.6/site-packages/django_icons/renderers/image.py:217 +msgid "Icon of {}" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:58 +msgid "Please enter your OTP token." +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:59 +#, python-brace-format +msgid "Error generating challenge: {0}" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:60 +msgid "The selected OTP device is not interactive" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:61 +#, python-brace-format +msgid "OTP Challenge: {0}" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:62 +msgid "Invalid token. Please make sure you have entered it correctly." +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:64 +#, python-format +msgid "" +"Verification temporarily disabled because of %(failure_count)d failed " +"attempt, please try again soon." +msgid_plural "" +"Verification temporarily disabled because of %(failure_count)d failed " +"attempts, please try again soon." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:67 +msgid "Verification of the token is currently disabled" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:36 +msgid "Please correct the error below." +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:36 +msgid "Please correct the errors below." +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:52 +#, python-format +msgid "" +"You are authenticated as %(username)s, but are not authorized to access this " +"page. Would you like to login to a different account?" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:72 +msgid "OTP Device:" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:77 +msgid "OTP Token:" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:82 +msgid "Forgotten your password or username?" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:86 +msgid "Log in" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:88 +msgid "Get OTP Challenge" +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1093 +msgid "The inline foreign key did not match the parent instance primary key." +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1267 +#, python-format +msgid "\"%(pk)s\" is not a valid value for a primary key." +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/utils/text.py:81 +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s..." +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:520 +msgid "Welcome to Django" +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:521 +msgid "It worked!" +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:522 +msgid "Congratulations on your first Django-powered page." +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:524 +msgid "" +"Next, start your first app by running python manage.py startapp " +"[app_label]." +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:527 +msgid "" +"You're seeing this message because you have DEBUG = True in " +"your Django settings file and you haven't configured any URLs. Get to work!" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:313 +msgid "usage: " +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:821 +msgid ".__call__() not defined" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1105 +#, python-format +msgid "unknown parser %r (choices: %s)" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1146 +#, python-format +msgid "argument \"-\" with mode %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1349 +#, python-format +msgid "cannot merge actions - two groups are named %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1387 +msgid "'required' is an invalid argument for positionals" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1407 +#, python-format +msgid "invalid option string %r: must start with a character %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1428 +#, python-format +msgid "dest= is required for options like %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1445 +#, python-format +msgid "invalid conflict_resolution value: %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1463 +#, python-format +msgid "conflicting option string(s): %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1526 +msgid "mutually exclusive arguments must be optional" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1596 +msgid "positional arguments" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1597 +msgid "optional arguments" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1615 +msgid "show this help message and exit" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1621 +msgid "show program's version number and exit" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1653 +msgid "cannot have multiple subparser arguments" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1705 +#, python-format +msgid "unrecognized arguments: %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1802 +#, python-format +msgid "not allowed with argument %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1848 +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1862 +#, python-format +msgid "ignored explicit argument %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1952 +msgid "too few arguments" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1959 +#, python-format +msgid "argument %s is required" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1973 +#, python-format +msgid "one of the arguments %s is required" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2019 +msgid "expected one argument" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2020 +msgid "expected at most one argument" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2021 +msgid "expected at least one argument" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2023 +#, python-format +msgid "expected %s argument(s)" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2080 +#, python-format +msgid "ambiguous option: %s could match %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2142 +#, python-format +msgid "unexpected option string: %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2243 +#, python-format +msgid "%r is not callable" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2259 +#, python-format +msgid "invalid %s value: %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2269 +#, python-format +msgid "invalid choice: %r (choose from %s)" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2362 +#, python-format +msgid "%s: error: %s\n" +msgstr "" + +#: webvirtcloud/middleware.py:21 +#, python-format +msgid "libvirt Error - %(exception)s" +msgstr "" diff --git a/locale/es/LC_MESSAGES/django.po b/locale/es/LC_MESSAGES/django.po index a6f82be..8572384 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-12 06:11+0000\n" +"POT-Creation-Date: 2020-07-20 09:29+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,228 +18,181 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: accounts/forms.py:10 -msgid "No username has been entered" +#: accounts/forms.py:24 +msgid "Instance owned by another user" msgstr "" -#: accounts/forms.py:13 -msgid "No password has been entered" +#: accounts/models.py:24 +#, python-format +msgid "Instance \"%(inst)s\" of user %(user)s" msgstr "" -#: accounts/forms.py:19 create/forms.py:23 -msgid "The flavor name must not contain any special characters" -msgstr "" - -#: accounts/forms.py:21 create/forms.py:25 -msgid "The flavor name must not exceed 20 characters" -msgstr "" - -#: accounts/forms.py:26 create/forms.py:30 -msgid "Flavor name is already use" +#: accounts/models.py:32 +msgid "key name" msgstr "" #: accounts/models.py:33 +msgid "public key" +msgstr "" + +#: accounts/models.py:42 +msgid "max instances" +msgstr "" + +#: accounts/models.py:44 accounts/models.py:51 accounts/models.py:57 +#: accounts/models.py:63 msgid "-1 for unlimited. Any integer value" msgstr "" -#: accounts/models.py:85 +#: accounts/models.py:49 +msgid "max CPUs" +msgstr "" + +#: accounts/models.py:55 +msgid "max memory" +msgstr "" + +#: accounts/models.py:61 +msgid "max disk size" +msgstr "" + +#: accounts/models.py:77 msgid "Can change password" msgstr "" -#: accounts/templates/account.html:3 admin/templates/admin/common/form.html:6 -#: admin/templates/admin/logs.html:32 admin/templates/admin/user_form.html:6 -#: instances/templates/add_instance_owner_block.html:18 -#: instances/templates/allinstances_index_grouped.html:7 -#: instances/templates/allinstances_index_nongrouped.html:6 -#: instances/templates/instance.html:1644 instances/templates/instances.html:71 -msgid "User" +#: accounts/templates/account.html:4 accounts/templates/account.html:12 +msgid "User Profile" msgstr "" -#: accounts/templates/account.html:23 accounts/templates/profile.html:98 -msgid "Key name" +#: accounts/templates/account.html:21 +#: computes/templates/computes/instances.html:5 +#: computes/templates/computes/instances.html:32 +#: computes/templates/overview.html:16 instances/templates/allinstances.html:5 +#: instances/templates/allinstances.html:9 +#: instances/templates/bottom_bar.html:17 +#: interfaces/templates/interface.html:14 +#: interfaces/templates/interfaces.html:17 networks/templates/network.html:16 +#: networks/templates/networks.html:20 nwfilters/templates/nwfilter.html:15 +#: nwfilters/templates/nwfilters.html:24 secrets/templates/secrets.html:20 +#: storages/templates/storage.html:20 storages/templates/storages.html:20 +#: templates/navbar.html:14 +msgid "Instances" msgstr "" -#: accounts/templates/account.html:24 accounts/templates/profile.html:104 -msgid "Public key" +#: accounts/templates/account.html:24 +msgid "Public Keys" msgstr "" -#: accounts/templates/account.html:47 accounts/templates/accounts-list.html:25 -#: accounts/templates/accounts.html:21 admin/templates/admin/group_list.html:24 -#: admin/templates/admin/logs.html:21 admin/templates/admin/user_list.html:25 -#: computes/templates/computes.html:241 -#: create/templates/create_instance_w2.html:70 -#: instances/templates/allinstances.html:33 -#: instances/templates/allinstances.html:49 -#: instances/templates/instances.html:61 -#: interfaces/templates/interfaces.html:47 networks/templates/networks.html:50 -#: nwfilters/templates/nwfilters.html:138 secrets/templates/secrets.html:50 -#: storages/templates/storage.html:189 storages/templates/storages.html:50 -msgid "Warning" -msgstr "" - -#: accounts/templates/account.html:47 -msgid "User doesn't have any Instance" -msgstr "" - -#: accounts/templates/account.html:56 -#: accounts/templates/create_user_inst_block.html:18 -#: admin/templates/admin/logs.html:33 instances/templates/instance.html:4 +#: accounts/templates/account.html:34 admin/templates/admin/logs.html:34 +#: instances/templates/instance.html:4 msgid "Instance" msgstr "" -#: accounts/templates/account.html:57 accounts/templates/account.html:88 +#: accounts/templates/account.html:35 msgid "VNC" msgstr "" -#: accounts/templates/account.html:58 accounts/templates/account.html:97 -#: instances/templates/instance.html:88 instances/templates/instance.html:412 -#: instances/templates/instance.html:414 instances/templates/instance.html:441 -#: instances/templates/instance.html:476 instances/templates/instance.html:480 -#: instances/templates/instance.html:497 instances/templates/instance.html:499 -#: instances/templates/instance.html:504 +#: accounts/templates/account.html:36 instances/templates/instance.html:87 +#: instances/templates/instances/resize_tab.html:56 +#: instances/templates/instances/resize_tab.html:58 +#: instances/templates/instances/resize_tab.html:85 +#: instances/templates/instances/resize_tab.html:121 +#: instances/templates/instances/resize_tab.html:125 +#: instances/templates/instances/resize_tab.html:151 +#: instances/templates/instances/resize_tab.html:153 +#: instances/templates/instances/resize_tab.html:158 msgid "Resize" msgstr "" -#: accounts/templates/account.html:59 accounts/templates/account.html:106 -#: accounts/templates/account.html:127 +#: accounts/templates/account.html:37 accounts/templates/account.html:55 #: accounts/templates/accounts-list.html:133 -#: accounts/templates/accounts.html:126 accounts/templates/profile.html:84 -#: admin/templates/admin/common/confirm_delete.html:6 -#: admin/templates/admin/common/confirm_delete.html:16 +#: accounts/templates/accounts.html:126 accounts/templates/profile.html:60 #: admin/templates/admin/common/list.html:22 #: admin/templates/admin/group_list.html:47 -#: admin/templates/admin/user_list.html:67 computes/templates/computes.html:98 -#: computes/templates/computes.html:142 computes/templates/computes.html:190 -#: computes/templates/computes.html:220 instances/templates/instance.html:873 -#: instances/templates/instance.html:880 interfaces/templates/interface.html:61 -#: networks/templates/network.html:53 nwfilters/templates/nwfilter.html:114 -#: nwfilters/templates/nwfilter.html:154 nwfilters/templates/nwfilters.html:123 -#: secrets/templates/secrets.html:77 storages/templates/storage.html:63 -#: storages/templates/storage.html:176 +#: admin/templates/admin/user_list.html:67 +#: computes/templates/computes/list.html:55 +#: instances/templates/instances/settings_tab.html:310 +#: instances/templates/instances/settings_tab.html:314 +#: interfaces/templates/interface.html:61 networks/templates/network.html:53 +#: nwfilters/templates/nwfilter.html:114 nwfilters/templates/nwfilter.html:154 +#: nwfilters/templates/nwfilters.html:123 secrets/templates/secrets.html:77 +#: storages/templates/storage.html:62 storages/templates/storage.html:175 +#: templates/common/confirm_delete.html:6 +#: templates/common/confirm_delete.html:16 #: venv/lib/python3.6/site-packages/django/forms/formsets.py:375 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:394 msgid "Delete" msgstr "" -#: accounts/templates/account.html:60 -#: create/templates/create_instance_w2.html:85 -#: instances/templates/instance.html:556 instances/templates/instance.html:831 +#: accounts/templates/account.html:38 +#: instances/templates/create_instance_w2.html:86 +#: instances/templates/instances/settings_tab.html:239 +#: instances/templates/instances/snapshots_tab.html:49 #: nwfilters/templates/nwfilter.html:104 nwfilters/templates/nwfilter.html:138 #: nwfilters/templates/nwfilters.html:60 secrets/templates/secrets.html:62 -#: storages/templates/storage.html:102 +#: storages/templates/storage.html:101 msgid "Action" msgstr "" -#: accounts/templates/account.html:81 -msgid "Edit privilegies for" +#: accounts/templates/account.html:50 +msgid "edit" msgstr "" -#: accounts/templates/account.html:91 accounts/templates/account.html:100 -#: accounts/templates/account.html:109 -msgid "False" +#: accounts/templates/account.html:68 accounts/templates/profile.html:74 +msgid "Key name" msgstr "" -#: accounts/templates/account.html:116 -#: accounts/templates/accounts-list.html:145 -#: accounts/templates/accounts.html:138 -#: accounts/templates/create_user_block.html:31 -#: accounts/templates/create_user_inst_block.html:29 -#: computes/templates/computes.html:101 computes/templates/computes.html:145 -#: computes/templates/computes.html:193 computes/templates/computes.html:223 -#: create/templates/create_flav_block.html:51 -#: create/templates/create_instance_w2.html:273 -#: instances/templates/add_instance_network_block.html:49 -#: instances/templates/add_instance_owner_block.html:29 -#: instances/templates/add_instance_volume.html:89 -#: instances/templates/add_instance_volume.html:144 -#: instances/templates/create_inst_block.html:34 -#: instances/templates/edit_instance_volume.html:123 -#: instances/templates/instance.html:993 -#: interfaces/templates/create_iface_block.html:135 -#: networks/templates/add_network_qos.html:50 -#: networks/templates/create_net_block.html:84 -#: networks/templates/modify_ipv4_fixed_address.html:44 -#: networks/templates/modify_ipv6_fixed_address.html:44 -#: nwfilters/templates/add_nwf_rule.html:25 -#: nwfilters/templates/create_nwfilter_block.html:23 -#: nwfilters/templates/nwfilters.html:83 nwfilters/templates/nwfilters.html:111 -#: secrets/templates/create_secret_block.html:54 -#: secrets/templates/secrets.html:102 -#: storages/templates/create_stg_block.html:55 -#: storages/templates/create_stg_block.html:84 -#: storages/templates/create_stg_block.html:140 -#: storages/templates/create_stg_block.html:202 -#: storages/templates/create_stg_block.html:230 -#: storages/templates/create_stg_vol_block.html:27 -#: storages/templates/create_stg_vol_block.html:81 -#: storages/templates/storage.html:156 -msgid "Close" -msgstr "" - -#: accounts/templates/account.html:117 accounts/templates/accounts-list.html:45 -#: accounts/templates/accounts-list.html:148 -#: accounts/templates/accounts.html:36 accounts/templates/accounts.html:141 -#: admin/templates/admin/common/list.html:16 -#: admin/templates/admin/group_list.html:44 -#: admin/templates/admin/user_list.html:61 computes/templates/computes.html:33 -#: networks/templates/network.html:85 nwfilters/templates/nwfilter.html:62 -#: secrets/templates/secrets.html:74 -msgid "Edit" -msgstr "" - -#: accounts/templates/account.html:127 accounts/templates/profile.html:84 -#: create/templates/create_instance_w2.html:291 -#: instances/templates/instance.html:581 instances/templates/instance.html:1004 -#: instances/templates/instance.html:1074 -#: instances/templates/instance.html:1079 -#: interfaces/templates/interface.html:61 -#: interfaces/templates/interface.html:63 networks/templates/network.html:53 -#: networks/templates/network.html:55 networks/templates/network.html:65 -#: networks/templates/network.html:139 networks/templates/network.html:192 -#: networks/templates/network.html:197 networks/templates/network.html:252 -#: networks/templates/network.html:301 networks/templates/network.html:306 -#: networks/templates/network.html:356 networks/templates/network.html:361 -#: nwfilters/templates/nwfilter.html:114 nwfilters/templates/nwfilter.html:154 -#: nwfilters/templates/nwfilters.html:123 secrets/templates/secrets.html:77 -#: storages/templates/storage.html:64 storages/templates/storage.html:67 -#: storages/templates/storage.html:79 storages/templates/storage.html:176 -msgid "Are you sure?" +#: accounts/templates/account.html:69 accounts/templates/profile.html:80 +msgid "Public key" msgstr "" #: accounts/templates/accounts-list.html:4 #: accounts/templates/accounts-list.html:13 accounts/templates/accounts.html:3 #: accounts/templates/accounts.html:9 admin/templates/admin/group_list.html:5 #: admin/templates/admin/user_list.html:6 -#: admin/templates/admin/user_list.html:16 admin/views.py:83 -#: instances/templates/instance.html:657 templates/navbar.html:29 +#: admin/templates/admin/user_list.html:16 admin/views.py:84 +#: instances/templates/instances/settings_tab.html:63 templates/navbar.html:29 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 +#: computes/templates/computes/instances.html:18 +#: instances/templates/allinstances.html:16 +#: nwfilters/templates/nwfilters.html:11 storages/templates/storage.html:88 +#: templates/search_block.html:3 msgid "Search" msgstr "" +#: accounts/templates/accounts-list.html:25 accounts/templates/accounts.html:21 +#: admin/templates/admin/group_list.html:24 admin/templates/admin/logs.html:22 +#: admin/templates/admin/user_list.html:25 +#: computes/templates/computes/instances.html:57 +#: computes/templates/computes/list.html:21 +#: instances/templates/create_instance_w2.html:71 +#: interfaces/templates/interfaces.html:47 networks/templates/networks.html:50 +#: nwfilters/templates/nwfilters.html:138 secrets/templates/secrets.html:50 +#: storages/templates/storage.html:188 storages/templates/storages.html:50 +msgid "Warning" +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" msgstr "" -#: accounts/templates/accounts-list.html:33 accounts/templates/profile.html:27 -#: admin/templates/admin/user_list.html:33 computes/templates/computes.html:79 -#: computes/templates/computes.html:127 computes/templates/computes.html:170 +#: accounts/templates/accounts-list.html:33 accounts/templates/profile.html:31 +#: admin/templates/admin/user_list.html:33 msgid "Username" msgstr "" #: accounts/templates/accounts-list.html:34 accounts/templates/accounts.html:44 -#: admin/templates/admin/user_list.html:34 computes/templates/computes.html:40 -#: instances/templates/allinstances.html:57 -#: instances/templates/allinstances_index_grouped.html:8 -#: instances/templates/allinstances_index_nongrouped.html:7 -#: instances/templates/instances.html:72 +#: admin/templates/admin/user_list.html:34 +#: computes/templates/computes/instances.html:68 +#: computes/templates/computes/list.html:30 +#: instances/templates/allinstances_index_grouped.html:9 +#: instances/templates/allinstances_index_nongrouped.html:9 msgid "Status" msgstr "" @@ -254,22 +207,33 @@ msgid "Superuser" msgstr "" #: accounts/templates/accounts-list.html:37 -#: instances/templates/instance.html:631 instances/templates/instance.html:1444 -#: instances/templates/instance.html:1446 -#: instances/templates/instance_actions.html:7 +#: instances/templates/instance_actions.html:6 +#: instances/templates/instances/settings_tab.html:37 +#: instances/templates/instances/settings_tab.html:783 +#: instances/templates/instances/settings_tab.html:785 #: nwfilters/templates/nwfilters.html:112 -#: nwfilters/templates/nwfilters.html:118 storages/templates/storage.html:157 -#: storages/templates/storage.html:164 +#: nwfilters/templates/nwfilters.html:118 storages/templates/storage.html:156 +#: storages/templates/storage.html:163 msgid "Clone" msgstr "" +#: accounts/templates/accounts-list.html:45 +#: accounts/templates/accounts-list.html:148 +#: accounts/templates/accounts.html:36 accounts/templates/accounts.html:141 +#: admin/templates/admin/common/list.html:16 +#: admin/templates/admin/group_list.html:44 +#: admin/templates/admin/user_list.html:61 +#: computes/templates/computes/list.html:54 networks/templates/network.html:85 +#: nwfilters/templates/nwfilter.html:62 secrets/templates/secrets.html:74 +msgid "Edit" +msgstr "" + #: accounts/templates/accounts-list.html:51 accounts/templates/accounts.html:48 #: admin/templates/admin/user_list.html:50 -#: instances/templates/allinstances.html:68 -#: instances/templates/allinstances_index_grouped.html:26 -#: instances/templates/allinstances_index_grouped.html:56 -#: instances/templates/allinstances_index_nongrouped.html:20 -#: instances/templates/instance.html:17 instances/templates/instances.html:85 +#: computes/templates/computes/instances.html:94 +#: instances/templates/allinstances_index_grouped.html:57 +#: instances/templates/allinstances_index_nongrouped.html:40 +#: instances/templates/instance.html:17 msgid "Active" msgstr "" @@ -284,22 +248,21 @@ msgstr "" #: accounts/templates/accounts-list.html:76 accounts/templates/accounts.html:69 #: accounts/templates/create_user_block.html:18 -#: computes/templates/computes.html:172 -#: create/templates/create_flav_block.html:19 -#: create/templates/create_instance_w2.html:81 -#: create/templates/create_instance_w2.html:107 -#: create/templates/create_instance_w2.html:110 -#: create/templates/create_instance_w2.html:309 -#: create/templates/create_instance_w2.html:311 -#: create/templates/create_instance_w2.html:522 -#: create/templates/create_instance_w2.html:524 +#: computes/templates/computes/instances.html:66 +#: computes/templates/computes/list.html:29 #: instances/templates/add_instance_volume.html:40 #: instances/templates/add_instance_volume.html:42 -#: instances/templates/allinstances.html:56 -#: instances/templates/allinstances_index_grouped.html:6 +#: instances/templates/allinstances_index_grouped.html:7 #: instances/templates/allinstances_index_nongrouped.html:5 -#: instances/templates/instance.html:554 instances/templates/instance.html:906 -#: instances/templates/instances.html:70 +#: instances/templates/create_instance_w2.html:82 +#: instances/templates/create_instance_w2.html:108 +#: instances/templates/create_instance_w2.html:111 +#: instances/templates/create_instance_w2.html:310 +#: instances/templates/create_instance_w2.html:312 +#: instances/templates/create_instance_w2.html:523 +#: instances/templates/create_instance_w2.html:525 +#: instances/templates/instances/settings_tab.html:340 +#: instances/templates/instances/snapshots_tab.html:47 #: interfaces/templates/create_iface_block.html:18 #: interfaces/templates/interface.html:76 #: networks/templates/create_net_block.html:18 @@ -314,21 +277,18 @@ msgstr "" #: storages/templates/create_stg_block.html:100 #: storages/templates/create_stg_block.html:165 #: storages/templates/create_stg_block.html:214 -#: storages/templates/create_stg_vol_block.html:20 -#: storages/templates/create_stg_vol_block.html:51 -#: storages/templates/create_stg_vol_block.html:53 -#: storages/templates/storage.html:98 storages/templates/storage.html:126 -#: storages/templates/storage.html:128 +#: storages/templates/create_stg_vol_block.html:21 +#: storages/templates/storage.html:97 storages/templates/storage.html:125 +#: storages/templates/storage.html:127 msgid "Name" msgstr "" #: accounts/templates/accounts-list.html:83 accounts/templates/accounts.html:76 #: accounts/templates/create_user_block.html:24 -#: accounts/templates/login.html:19 computes/templates/computes.html:85 -#: computes/templates/computes.html:176 -#: console/templates/console-spice-full.html:200 -#: instances/templates/instance.html:1293 -#: instances/templates/instance.html:1300 +#: accounts/templates/login.html:19 +#: console/templates/console-spice-full.html:201 +#: console/templates/console-spice-lite.html:58 +#: console/templates/console-spice-lite.html:99 msgid "Password" msgstr "" @@ -341,7 +301,7 @@ msgid "Is superuser" msgstr "" #: accounts/templates/accounts-list.html:101 -#: accounts/templates/accounts.html:94 instances/models.py:25 +#: accounts/templates/accounts.html:94 msgid "Can clone instances" msgstr "" @@ -375,6 +335,63 @@ msgstr "" msgid "Unblock" msgstr "" +#: accounts/templates/accounts-list.html:145 +#: accounts/templates/accounts.html:138 +#: accounts/templates/create_user_block.html:31 +#: instances/templates/add_instance_network_block.html:49 +#: instances/templates/add_instance_owner_block.html:30 +#: instances/templates/add_instance_volume.html:89 +#: instances/templates/add_instance_volume.html:144 +#: instances/templates/create_flav_block.html:25 +#: instances/templates/create_inst_block.html:34 +#: instances/templates/create_instance_w2.html:274 +#: instances/templates/edit_instance_volume.html:123 +#: instances/templates/instances/settings_tab.html:427 +#: interfaces/templates/create_iface_block.html:135 +#: networks/templates/add_network_qos.html:50 +#: networks/templates/create_net_block.html:84 +#: networks/templates/modify_ipv4_fixed_address.html:44 +#: networks/templates/modify_ipv6_fixed_address.html:44 +#: nwfilters/templates/add_nwf_rule.html:25 +#: nwfilters/templates/create_nwfilter_block.html:23 +#: nwfilters/templates/nwfilters.html:83 nwfilters/templates/nwfilters.html:111 +#: secrets/templates/create_secret_block.html:54 +#: secrets/templates/secrets.html:102 +#: storages/templates/create_stg_block.html:55 +#: storages/templates/create_stg_block.html:84 +#: storages/templates/create_stg_block.html:140 +#: storages/templates/create_stg_block.html:202 +#: storages/templates/create_stg_block.html:230 +#: storages/templates/create_stg_vol_block.html:28 +#: storages/templates/create_stg_vol_block.html:56 +#: storages/templates/storage.html:155 +msgid "Close" +msgstr "" + +#: accounts/templates/accounts/change_password_form.html:7 +#: accounts/templates/accounts/change_password_form.html:12 +#: accounts/templates/profile.html:21 +msgid "Change Password" +msgstr "" + +#: accounts/templates/accounts/change_password_form.html:22 +#: admin/templates/admin/user_form.html:22 +#: computes/templates/computes/form.html:21 +#: templates/common/confirm_delete.html:14 templates/common/form.html:20 +msgid "Cancel" +msgstr "" + +#: accounts/templates/accounts/change_password_form.html:24 +#: accounts/templates/profile.html:44 +#: instances/templates/instances/settings_tab.html:633 +#: instances/templates/instances/settings_tab.html:637 +#: instances/templates/instances/settings_tab.html:819 +#: instances/templates/instances/settings_tab.html:821 +#: venv/lib/python3.6/site-packages/django/forms/widgets.py:397 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:379 +msgid "Change" +msgstr "" + #: accounts/templates/create_user_block.html:13 msgid "Add New User" msgstr "" @@ -384,13 +401,13 @@ msgid "john" msgstr "" #: accounts/templates/create_user_block.html:32 -#: create/templates/create_instance_w1.html:93 -#: create/templates/create_instance_w2.html:275 -#: create/templates/create_instance_w2.html:277 -#: create/templates/create_instance_w2.html:504 -#: create/templates/create_instance_w2.html:508 -#: create/templates/create_instance_w2.html:717 -#: create/templates/create_instance_w2.html:721 +#: instances/templates/create_instance_w1.html:95 +#: instances/templates/create_instance_w2.html:276 +#: instances/templates/create_instance_w2.html:278 +#: instances/templates/create_instance_w2.html:505 +#: instances/templates/create_instance_w2.html:509 +#: instances/templates/create_instance_w2.html:718 +#: instances/templates/create_instance_w2.html:722 #: interfaces/templates/create_iface_block.html:138 #: networks/templates/create_net_block.html:85 #: networks/templates/modify_ipv4_fixed_address.html:45 @@ -403,29 +420,10 @@ msgstr "" #: storages/templates/create_stg_block.html:148 #: storages/templates/create_stg_block.html:205 #: storages/templates/create_stg_block.html:233 -#: storages/templates/create_stg_vol_block.html:82 +#: storages/templates/create_stg_vol_block.html:57 msgid "Create" msgstr "" -#: accounts/templates/create_user_inst_block.html:12 -msgid "Add Instance for User" -msgstr "" - -#: accounts/templates/create_user_inst_block.html:18 -#: console/templates/console-spice-full.html:198 -#: instances/templates/allinstances_index_nongrouped.html:6 -msgid "Host" -msgstr "" - -#: accounts/templates/create_user_inst_block.html:30 -#: accounts/templates/profile.html:111 -#: create/templates/create_flav_block.html:54 -#: instances/templates/add_instance_network_block.html:50 -#: instances/templates/add_instance_owner_block.html:30 -#: nwfilters/templates/add_nwf_rule.html:26 -msgid "Add" -msgstr "" - #: accounts/templates/login.html:3 accounts/templates/logout.html:4 msgid "WebVirtCloud" msgstr "" @@ -439,7 +437,7 @@ msgstr "" msgid "Incorrect username or password." msgstr "" -#: accounts/templates/login.html:18 accounts/templates/profile.html:21 +#: accounts/templates/login.html:18 accounts/templates/profile.html:25 msgid "Login" msgstr "" @@ -451,72 +449,86 @@ msgstr "" msgid "Successful log out" msgstr "" -#: accounts/templates/profile.html:4 accounts/templates/profile.html:9 +#: accounts/templates/profile.html:5 accounts/templates/profile.html:10 #: templates/navbar.html:45 msgid "Profile" msgstr "" -#: accounts/templates/profile.html:18 +#: accounts/templates/profile.html:19 msgid "Edit Profile" msgstr "" -#: accounts/templates/profile.html:33 +#: accounts/templates/profile.html:37 msgid "Email" msgstr "" -#: accounts/templates/profile.html:40 accounts/templates/profile.html:67 -#: computes/templates/computes.html:104 computes/templates/computes.html:148 -#: computes/templates/computes.html:196 computes/templates/computes.html:225 -#: instances/templates/instance.html:1190 -#: instances/templates/instance.html:1194 -#: instances/templates/instance.html:1480 -#: instances/templates/instance.html:1482 -#: venv/lib/python3.6/site-packages/django/forms/widgets.py:397 -msgid "Change" -msgstr "" - -#: accounts/templates/profile.html:45 -msgid "Edit Password" -msgstr "" - #: accounts/templates/profile.html:48 -msgid "Old" -msgstr "" - -#: accounts/templates/profile.html:54 -msgid "New" -msgstr "" - -#: accounts/templates/profile.html:60 -msgid "Retry" -msgstr "" - -#: accounts/templates/profile.html:72 instances/templates/instance.html:266 +#: instances/templates/instances/access_tab.html:23 msgid "SSH Keys" msgstr "" -#: accounts/templates/profile.html:100 +#: accounts/templates/profile.html:60 +#: instances/templates/create_instance_w2.html:292 +#: instances/templates/instances/settings_tab.html:438 +#: instances/templates/instances/settings_tab.html:510 +#: instances/templates/instances/settings_tab.html:520 +#: instances/templates/instances/snapshots_tab.html:75 +#: interfaces/templates/interface.html:61 +#: interfaces/templates/interface.html:63 networks/templates/network.html:53 +#: networks/templates/network.html:55 networks/templates/network.html:65 +#: networks/templates/network.html:139 networks/templates/network.html:192 +#: networks/templates/network.html:197 networks/templates/network.html:252 +#: networks/templates/network.html:301 networks/templates/network.html:306 +#: networks/templates/network.html:356 networks/templates/network.html:361 +#: nwfilters/templates/nwfilter.html:114 nwfilters/templates/nwfilter.html:154 +#: nwfilters/templates/nwfilters.html:123 secrets/templates/secrets.html:77 +#: storages/templates/storage.html:63 storages/templates/storage.html:66 +#: storages/templates/storage.html:78 storages/templates/storage.html:175 +msgid "Are you sure?" +msgstr "" + +#: accounts/templates/profile.html:76 msgid "Enter Name" msgstr "" -#: accounts/templates/profile.html:106 +#: accounts/templates/profile.html:82 msgid "Enter Public Key" msgstr "" -#: accounts/views.py:52 +#: accounts/templates/profile.html:87 +#: instances/templates/add_instance_network_block.html:50 +#: instances/templates/add_instance_owner_block.html:31 +#: instances/templates/create_flav_block.html:28 +#: nwfilters/templates/add_nwf_rule.html:26 +msgid "Add" +msgstr "" + +#: accounts/views.py:39 msgid "Key name already exist" msgstr "" -#: accounts/views.py:55 +#: accounts/views.py:42 msgid "Public key already exist" msgstr "" -#: accounts/views.py:58 +#: accounts/views.py:45 msgid "Invalid characters in public key" msgstr "" -#: accounts/views.py:112 -msgid "Instance already added" +#: accounts/views.py:77 +msgid "Password Changed" +msgstr "" + +#: accounts/views.py:80 +msgid "Wrong Data Provided" +msgstr "" + +#: accounts/views.py:100 +msgid "Create User Instance" +msgstr "" + +#: accounts/views.py:118 +msgid "Update User Instance" msgstr "" #: admin/forms.py:46 @@ -528,25 +540,6 @@ msgstr "" msgid "Groups" msgstr "" -#: admin/templates/admin/common/confirm_delete.html:12 -msgid "Are you sure you want to delete" -msgstr "" - -#: admin/templates/admin/common/confirm_delete.html:14 -#: admin/templates/admin/common/form.html:22 -#: admin/templates/admin/user_form.html:22 -#: computes/templates/computes/form.html:22 -msgid "Cancel" -msgstr "" - -#: admin/templates/admin/common/form.html:24 -#: admin/templates/admin/user_form.html:24 -#: computes/templates/computes/form.html:24 -#: instances/templates/edit_instance_volume.html:124 -#: networks/templates/add_network_qos.html:51 -msgid "Save" -msgstr "" - #: admin/templates/admin/common/list.html:9 msgid "Create New" msgstr "" @@ -561,33 +554,53 @@ 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 -#: instances/templates/instance.html:909 instances/templates/instance.html:1051 -#: instances/templates/instances.html:75 networks/templates/network.html:178 -#: networks/templates/network.html:287 networks/templates/network.html:335 +#: computes/templates/computes/instances.html:71 +#: computes/templates/computes/list.html:32 +#: instances/templates/allinstances_index_grouped.html:12 +#: instances/templates/allinstances_index_nongrouped.html:12 +#: instances/templates/instances/settings_tab.html:343 +#: instances/templates/instances/settings_tab.html:486 +#: networks/templates/network.html:178 networks/templates/network.html:287 +#: networks/templates/network.html:335 msgid "Actions" msgstr "" -#: admin/templates/admin/logs.html:3 admin/templates/admin/logs.html:8 -#: instances/templates/instance.html:1577 templates/navbar.html:31 +#: admin/templates/admin/logs.html:4 admin/templates/admin/logs.html:9 +#: instances/templates/instances/stats_tab.html:13 templates/navbar.html:31 msgid "Logs" msgstr "" -#: admin/templates/admin/logs.html:21 +#: admin/templates/admin/logs.html:22 msgid "You don't have any Logs" msgstr "" -#: admin/templates/admin/logs.html:31 instances/templates/instance.html:555 -#: instances/templates/instance.html:1643 +#: admin/templates/admin/logs.html:32 +#: instances/templates/instances/snapshots_tab.html:48 +#: instances/templates/instances/stats_tab.html:83 msgid "Date" msgstr "" -#: admin/templates/admin/logs.html:34 instances/templates/instance.html:1645 +#: admin/templates/admin/logs.html:33 admin/templates/admin/user_form.html:6 +#: computes/templates/computes/instances.html:67 +#: instances/templates/add_instance_owner_block.html:18 +#: instances/templates/allinstances_index_grouped.html:8 +#: instances/templates/allinstances_index_nongrouped.html:7 +#: instances/templates/instances/stats_tab.html:84 +msgid "User" +msgstr "" + +#: admin/templates/admin/logs.html:35 +#: instances/templates/instances/stats_tab.html:85 msgid "Message" msgstr "" +#: admin/templates/admin/user_form.html:24 +#: computes/templates/computes/form.html:23 +#: instances/templates/edit_instance_volume.html:124 +#: networks/templates/add_network_qos.html:51 templates/common/form.html:22 +msgid "Save" +msgstr "" + #: admin/templates/admin/user_list.html:37 msgid "Can Clone" msgstr "" @@ -596,19 +609,19 @@ msgstr "" msgid "View Profile" msgstr "" -#: admin/views.py:38 +#: admin/views.py:39 msgid "Create Group" msgstr "" -#: admin/views.py:56 +#: admin/views.py:57 msgid "Update Group" msgstr "" -#: admin/views.py:108 +#: admin/views.py:110 msgid "Create User" msgstr "" -#: admin/views.py:130 +#: admin/views.py:132 msgid "Update User" msgstr "" @@ -820,24 +833,76 @@ msgstr "" msgid "Show access ssh keys" msgstr "" +#: appsettings/migrations/0004_auto_20200716_0637.py:11 +msgid "Console Scale" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:11 +msgid "Allow console to scaling view" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:12 +msgid "Console View-Only" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:12 +msgid "Allow only view not modify" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:13 +msgid "Console Resize Session" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:13 +msgid "Allow to resize session for console" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:14 +msgid "Console Clip Viewport" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:14 +msgid "Clip console viewport" +msgstr "" + +#: appsettings/models.py:9 computes/models.py:11 instances/models.py:27 +msgid "name" +msgstr "" + +#: appsettings/models.py:10 +msgid "key" +msgstr "" + +#: appsettings/models.py:11 +msgid "value" +msgstr "" + +#: appsettings/models.py:12 +msgid "choices" +msgstr "" + +#: appsettings/models.py:13 +msgid "description" +msgstr "" + #: appsettings/templates/appsettings.html:3 #: appsettings/templates/appsettings.html:8 msgid "Edit Settings" msgstr "" -#: appsettings/templates/appsettings.html:18 +#: appsettings/templates/appsettings.html:17 msgid "App Settings" msgstr "" -#: appsettings/templates/appsettings.html:22 templates/navbar.html:43 +#: appsettings/templates/appsettings.html:21 templates/navbar.html:43 msgid "Language" msgstr "" -#: appsettings/templates/appsettings.html:55 +#: appsettings/templates/appsettings.html:54 msgid "After change please full refresh page with 'Ctrl + F5' " msgstr "" -#: appsettings/templates/appsettings.html:60 +#: appsettings/templates/appsettings.html:59 msgid "Other Settings" msgstr "" @@ -860,106 +925,22 @@ msgstr "" msgid "FQDN/IP" msgstr "" -#: computes/forms.py:47 -msgid "No hostname has been entered" -msgstr "" - -#: computes/forms.py:48 -msgid "No IP / Domain name has been entered" -msgstr "" - -#: computes/forms.py:49 -msgid "No login has been entered" -msgstr "" - -#: computes/forms.py:57 -msgid "The name of the host must not contain any special characters" -msgstr "" - -#: computes/forms.py:59 -msgid "The name of the host must not exceed 20 characters" -msgstr "" - -#: computes/forms.py:67 computes/validators.py:16 -msgid "" -"Hostname must contain only numbers, or the domain name separated by \".\"" -msgstr "" - -#: computes/forms.py:69 computes/validators.py:18 -msgid "Wrong IP address" -msgstr "" - -#: computes/models.py:5 -msgid "name" -msgstr "" - -#: computes/models.py:6 +#: computes/models.py:12 msgid "hostname" msgstr "" -#: computes/models.py:7 +#: computes/models.py:13 msgid "login" msgstr "" -#: computes/models.py:8 +#: computes/models.py:14 msgid "password" msgstr "" -#: computes/models.py:9 +#: computes/models.py:15 msgid "details" msgstr "" -#: computes/templates/computes.html:3 computes/templates/computes.html:9 -#: templates/navbar.html:18 -msgid "Computes" -msgstr "" - -#: computes/templates/computes.html:42 instances/templates/instance.html:1537 -msgid "Connected" -msgstr "" - -#: computes/templates/computes.html:44 -msgid "Not Connected" -msgstr "" - -#: computes/templates/computes.html:46 computes/templates/computes.html:91 -#: 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 "" - -#: computes/templates/computes.html:50 -msgid "No details available" -msgstr "" - -#: computes/templates/computes.html:59 -msgid "Edit connection" -msgstr "" - -#: computes/templates/computes.html:66 computes/templates/computes.html:114 -#: computes/templates/computes.html:157 computes/templates/computes.html:205 -msgid "Label" -msgstr "" - -#: computes/templates/computes.html:73 computes/templates/computes.html:121 -#: computes/templates/computes.html:164 -msgid "FQDN / IP" -msgstr "" - -#: computes/templates/computes.html:112 -msgid "" -"Need create ssh authorization key. If you have another SSH port on " -"your server, you can add IP:PORT like '192.168.1.1:2222'." -msgstr "" - -#: computes/templates/computes.html:241 -msgid "Hypervisor doesn't have any Computes" -msgstr "" - #: computes/templates/computes/form.html:6 msgid "Add Compute" msgstr "" @@ -968,6 +949,137 @@ msgstr "" msgid "Create Compute" msgstr "" +#: computes/templates/computes/instances.html:29 +#: computes/templates/computes/list.html:50 +#: computes/templates/computes/list.html:52 computes/templates/overview.html:4 +#: computes/templates/overview.html:13 interfaces/templates/interface.html:11 +#: interfaces/templates/interfaces.html:14 networks/templates/network.html:13 +#: networks/templates/networks.html:17 nwfilters/templates/nwfilter.html:12 +#: nwfilters/templates/nwfilters.html:21 secrets/templates/secrets.html:17 +#: storages/templates/storage.html:17 storages/templates/storages.html:17 +msgid "Overview" +msgstr "" + +#: computes/templates/computes/instances.html:35 +#: computes/templates/overview.html:19 interfaces/templates/interface.html:17 +#: interfaces/templates/interfaces.html:20 networks/templates/network.html:19 +#: networks/templates/networks.html:23 nwfilters/templates/nwfilter.html:18 +#: nwfilters/templates/nwfilters.html:27 secrets/templates/secrets.html:23 +#: storages/templates/storage.html:23 storages/templates/storages.html:3 +#: storages/templates/storages.html:9 storages/templates/storages.html:23 +msgid "Storages" +msgstr "" + +#: computes/templates/computes/instances.html:38 +#: computes/templates/overview.html:22 interfaces/templates/interface.html:20 +#: interfaces/templates/interfaces.html:23 networks/templates/network.html:22 +#: networks/templates/networks.html:3 networks/templates/networks.html:9 +#: networks/templates/networks.html:26 nwfilters/templates/nwfilter.html:21 +#: nwfilters/templates/nwfilters.html:30 secrets/templates/secrets.html:26 +#: storages/templates/storage.html:26 storages/templates/storages.html:26 +msgid "Networks" +msgstr "" + +#: computes/templates/computes/instances.html:41 +#: computes/templates/overview.html:25 interfaces/templates/interface.html:23 +#: interfaces/templates/interfaces.html:4 +#: interfaces/templates/interfaces.html:26 networks/templates/network.html:25 +#: networks/templates/networks.html:29 nwfilters/templates/nwfilter.html:24 +#: nwfilters/templates/nwfilters.html:33 secrets/templates/secrets.html:29 +#: storages/templates/storage.html:29 storages/templates/storages.html:29 +msgid "Interfaces" +msgstr "" + +#: computes/templates/computes/instances.html:44 +#: computes/templates/overview.html:28 interfaces/templates/interface.html:26 +#: interfaces/templates/interfaces.html:29 networks/templates/network.html:28 +#: networks/templates/networks.html:32 nwfilters/templates/nwfilter.html:4 +#: nwfilters/templates/nwfilter.html:27 nwfilters/templates/nwfilters.html:4 +#: nwfilters/templates/nwfilters.html:13 nwfilters/templates/nwfilters.html:36 +#: secrets/templates/secrets.html:32 storages/templates/storage.html:32 +#: storages/templates/storages.html:32 +msgid "NWFilters" +msgstr "" + +#: computes/templates/computes/instances.html:47 +#: computes/templates/overview.html:31 interfaces/templates/interface.html:29 +#: interfaces/templates/interfaces.html:32 networks/templates/network.html:31 +#: networks/templates/networks.html:35 nwfilters/templates/nwfilter.html:30 +#: nwfilters/templates/nwfilters.html:39 secrets/templates/secrets.html:4 +#: secrets/templates/secrets.html:13 secrets/templates/secrets.html:35 +#: storages/templates/create_stg_block.html:124 +#: storages/templates/storage.html:35 storages/templates/storages.html:35 +msgid "Secrets" +msgstr "" + +#: computes/templates/computes/instances.html:58 +msgid "Hypervisor doesn't have any Instances" +msgstr "" + +#: computes/templates/computes/instances.html:66 +#: instances/templates/allinstances_index_grouped.html:7 +#: instances/templates/allinstances_index_nongrouped.html:5 +#: instances/templates/instances/settings_tab.html:777 +#: instances/templates/instances/settings_tab.html:800 +msgid "Description" +msgstr "" + +#: computes/templates/computes/instances.html:69 +#: instances/templates/allinstances_index_grouped.html:10 +#: instances/templates/allinstances_index_nongrouped.html:10 +#: instances/templates/create_instance_w2.html:83 +#: instances/templates/create_instance_w2.html:328 +#: instances/templates/create_instance_w2.html:541 +#: instances/templates/instance.html:40 instances/templates/instance.html:42 +msgid "VCPU" +msgstr "" + +#: computes/templates/computes/instances.html:70 +#: computes/templates/overview.html:82 +#: instances/templates/allinstances_index_grouped.html:11 +#: instances/templates/allinstances_index_nongrouped.html:11 +#: instances/templates/instances/resize_tab.html:13 +msgid "Memory" +msgstr "" + +#: computes/templates/computes/instances.html:96 +#: instances/templates/allinstances_index_grouped.html:58 +#: instances/templates/allinstances_index_nongrouped.html:42 +#: instances/templates/instance.html:14 +msgid "Off" +msgstr "" + +#: computes/templates/computes/instances.html:98 +#: instances/templates/allinstances_index_grouped.html:60 +#: instances/templates/allinstances_index_nongrouped.html:44 +msgid "Suspended" +msgstr "" + +#: computes/templates/computes/list.html:6 +#: computes/templates/computes/list.html:12 templates/navbar.html:18 +msgid "Computes" +msgstr "" + +#: computes/templates/computes/list.html:21 +msgid "You don't have any computes" +msgstr "" + +#: computes/templates/computes/list.html:31 computes/templates/overview.html:92 +#: instances/templates/instances/settings_tab.html:163 +#: instances/templates/instances/settings_tab.html:248 +msgid "Details" +msgstr "" + +#: computes/templates/computes/list.html:42 +#: instances/templates/allinstances_index_grouped.html:28 +#: instances/templates/instances/settings_tab.html:876 +msgid "Connected" +msgstr "" + +#: computes/templates/computes/list.html:42 +msgid "Not Connected" +msgstr "" + #: computes/templates/create_comp_block.html:5 msgid "TCP" msgstr "" @@ -988,79 +1100,6 @@ msgstr "" msgid "Add new host" msgstr "" -#: computes/templates/overview.html:4 computes/templates/overview.html:13 -#: instances/templates/instances.html:30 interfaces/templates/interface.html:11 -#: interfaces/templates/interfaces.html:14 networks/templates/network.html:13 -#: networks/templates/networks.html:17 nwfilters/templates/nwfilter.html:12 -#: nwfilters/templates/nwfilters.html:21 secrets/templates/secrets.html:17 -#: storages/templates/storage.html:17 storages/templates/storages.html:17 -msgid "Overview" -msgstr "" - -#: computes/templates/overview.html:16 instances/templates/allinstances.html:4 -#: instances/templates/allinstances.html:20 -#: instances/templates/bottom_bar.html:17 instances/templates/instances.html:4 -#: instances/templates/instances.html:33 interfaces/templates/interface.html:14 -#: interfaces/templates/interfaces.html:17 networks/templates/network.html:16 -#: networks/templates/networks.html:20 nwfilters/templates/nwfilter.html:15 -#: nwfilters/templates/nwfilters.html:24 secrets/templates/secrets.html:20 -#: storages/templates/storage.html:20 storages/templates/storages.html:20 -#: templates/navbar.html:14 -msgid "Instances" -msgstr "" - -#: computes/templates/overview.html:19 instances/templates/instances.html:36 -#: interfaces/templates/interface.html:17 -#: interfaces/templates/interfaces.html:20 networks/templates/network.html:19 -#: networks/templates/networks.html:23 nwfilters/templates/nwfilter.html:18 -#: nwfilters/templates/nwfilters.html:27 secrets/templates/secrets.html:23 -#: storages/templates/storage.html:23 storages/templates/storages.html:3 -#: storages/templates/storages.html:9 storages/templates/storages.html:23 -msgid "Storages" -msgstr "" - -#: computes/templates/overview.html:22 instances/templates/instances.html:39 -#: interfaces/templates/interface.html:20 -#: interfaces/templates/interfaces.html:23 networks/templates/network.html:22 -#: networks/templates/networks.html:3 networks/templates/networks.html:9 -#: networks/templates/networks.html:26 nwfilters/templates/nwfilter.html:21 -#: nwfilters/templates/nwfilters.html:30 secrets/templates/secrets.html:26 -#: storages/templates/storage.html:26 storages/templates/storages.html:26 -msgid "Networks" -msgstr "" - -#: computes/templates/overview.html:25 instances/templates/instances.html:42 -#: interfaces/templates/interface.html:23 -#: interfaces/templates/interfaces.html:4 -#: interfaces/templates/interfaces.html:26 networks/templates/network.html:25 -#: networks/templates/networks.html:29 nwfilters/templates/nwfilter.html:24 -#: nwfilters/templates/nwfilters.html:33 secrets/templates/secrets.html:29 -#: storages/templates/storage.html:29 storages/templates/storages.html:29 -msgid "Interfaces" -msgstr "" - -#: computes/templates/overview.html:28 instances/templates/instances.html:45 -#: interfaces/templates/interface.html:26 -#: interfaces/templates/interfaces.html:29 networks/templates/network.html:28 -#: networks/templates/networks.html:32 nwfilters/templates/nwfilter.html:4 -#: nwfilters/templates/nwfilter.html:27 nwfilters/templates/nwfilters.html:4 -#: nwfilters/templates/nwfilters.html:13 nwfilters/templates/nwfilters.html:36 -#: secrets/templates/secrets.html:32 storages/templates/storage.html:32 -#: storages/templates/storages.html:32 -msgid "NWFilters" -msgstr "" - -#: computes/templates/overview.html:31 instances/templates/instances.html:48 -#: interfaces/templates/interface.html:29 -#: interfaces/templates/interfaces.html:32 networks/templates/network.html:31 -#: networks/templates/networks.html:35 nwfilters/templates/nwfilter.html:30 -#: nwfilters/templates/nwfilters.html:39 secrets/templates/secrets.html:4 -#: secrets/templates/secrets.html:13 secrets/templates/secrets.html:35 -#: storages/templates/create_stg_block.html:124 -#: storages/templates/storage.html:35 storages/templates/storages.html:35 -msgid "Secrets" -msgstr "" - #: computes/templates/overview.html:42 msgid "Basic details" msgstr "" @@ -1094,16 +1133,9 @@ msgstr "" msgid "Libvirt" msgstr "" -#: computes/templates/overview.html:82 instances/templates/allinstances.html:59 -#: instances/templates/allinstances_index_grouped.html:10 -#: instances/templates/allinstances_index_nongrouped.html:9 -#: instances/templates/instance.html:369 instances/templates/instances.html:74 -msgid "Memory" -msgstr "" - #: computes/templates/overview.html:84 -#: create/templates/create_instance_w1.html:40 -#: create/templates/create_instance_w1.html:56 +#: instances/templates/create_instance_w1.html:42 +#: instances/templates/create_instance_w1.html:58 msgid "Architecture" msgstr "" @@ -1132,270 +1164,153 @@ msgstr "" msgid "RAM Utilization" msgstr "" +#: computes/validators.py:16 +msgid "" +"Hostname must contain only numbers, or the domain name separated by \".\"" +msgstr "" + +#: computes/validators.py:18 +msgid "Wrong IP address" +msgstr "" + #: computes/validators.py:24 msgid "The hostname must not contain any special characters" msgstr "" -#: console/templates/console-base.html:69 +#: console/templates/console-base.html:51 msgid "Send key(s)" msgstr "" -#: console/templates/console-base.html:89 +#: console/templates/console-base.html:71 msgid "Fullscreen" msgstr "" +#: console/templates/console-spice-full.html:56 +msgid "must set host and port" +msgstr "" + +#: console/templates/console-spice-full.html:83 +#: console/templates/console-spice-full.html:97 +#: console/templates/console-spice-lite.html:138 +#: console/templates/console-spice-lite.html:150 +msgid "disconnect" +msgstr "" + +#: console/templates/console-spice-full.html:114 +#: console/templates/console-spice-lite.html:167 +msgid "File API is not supported" +msgstr "" + +#: console/templates/console-spice-full.html:197 +#: instances/templates/allinstances_index_nongrouped.html:7 +msgid "Host" +msgstr "" + #: console/templates/console-spice-full.html:199 msgid "Port" msgstr "" -#: console/templates/console-spice-full.html:201 +#: console/templates/console-spice-full.html:207 msgid "Show console" msgstr "" -#: console/templates/console-spice-full.html:202 +#: console/templates/console-spice-full.html:209 #: interfaces/templates/interface.html:60 networks/templates/network.html:52 #: networks/templates/network.html:122 networks/templates/network.html:128 #: networks/templates/network.html:234 networks/templates/network.html:240 -#: storages/templates/storage.html:62 +#: storages/templates/storage.html:61 msgid "Start" msgstr "" -#: console/templates/console-vnc-full.html:83 +#: console/templates/console-spice-lite.html:109 +msgid "must specify host and port in URL" +msgstr "" + +#: console/templates/console-vnc-full.html:78 msgid "noVNC encountered an error" msgstr "" -#: console/templates/console-vnc-lite.html:297 +#: console/templates/console-vnc-lite.html:222 msgid "Loading" msgstr "" -#: create/forms.py:10 -msgid "No flavor name has been entered" -msgstr "" - -#: create/forms.py:13 create/forms.py:37 -msgid "No VCPU has been entered" -msgstr "" - -#: create/forms.py:15 -msgid "No HDD image has been entered" -msgstr "" - -#: create/forms.py:17 create/forms.py:40 -msgid "No RAM size has been entered" -msgstr "" - -#: create/forms.py:34 +#: instances/forms.py:37 msgid "No Virtual Machine name has been entered" msgstr "" -#: create/forms.py:41 +#: instances/forms.py:39 +msgid "No VCPU has been entered" +msgstr "" + +#: instances/forms.py:42 +msgid "No RAM size has been entered" +msgstr "" + +#: instances/forms.py:43 msgid "No Network pool has been choosen" msgstr "" -#: create/forms.py:46 +#: instances/forms.py:48 msgid "Please select HDD cache mode" msgstr "" -#: create/forms.py:53 +#: instances/forms.py:55 msgid "Please select a graphics type" msgstr "" -#: create/forms.py:54 +#: instances/forms.py:56 msgid "Please select a video driver" msgstr "" -#: create/forms.py:61 +#: instances/forms.py:63 msgid "The name of the virtual machine must not contain any special characters" msgstr "" -#: create/forms.py:63 +#: instances/forms.py:65 msgid "The name of the virtual machine must not exceed 20 characters" msgstr "" -#: create/templates/create_flav_block.html:13 -msgid "Add New Flavor" +#: instances/models.py:11 +msgid "label" msgstr "" -#: create/templates/create_flav_block.html:21 -msgid "Micro" +#: instances/models.py:12 +msgid "memory" msgstr "" -#: create/templates/create_flav_block.html:26 -#: create/templates/create_instance_w2.html:82 -#: create/templates/create_instance_w2.html:327 -#: create/templates/create_instance_w2.html:540 -#: instances/templates/allinstances.html:58 -#: instances/templates/allinstances_index_grouped.html:9 -#: instances/templates/allinstances_index_nongrouped.html:8 -#: instances/templates/instance.html:40 instances/templates/instance.html:42 -#: instances/templates/instances.html:73 -msgid "VCPU" +#: instances/models.py:13 +msgid "vcpu" msgstr "" -#: create/templates/create_flav_block.html:33 -#: create/templates/create_instance_w2.html:83 -#: create/templates/create_instance_w2.html:356 -#: create/templates/create_instance_w2.html:567 -#: instances/templates/instance.html:45 -msgid "RAM" +#: instances/models.py:14 +msgid "disk" msgstr "" -#: create/templates/create_flav_block.html:38 -#: create/templates/create_instance_w2.html:94 -#: create/templates/create_instance_w2.html:360 -#: create/templates/create_instance_w2.html:571 -#: instances/templates/allinstances.html:78 -#: instances/templates/instance.html:45 instances/templates/instance.html:450 -#: instances/templates/instance.html:463 -msgid "MB" +#: instances/models.py:28 +msgid "uuid" msgstr "" -#: create/templates/create_flav_block.html:41 -#: create/templates/create_instance_w2.html:84 -#: create/templates/create_instance_w2.html:371 -msgid "HDD" +#: instances/models.py:29 +msgid "is template" msgstr "" -#: create/templates/create_flav_block.html:46 -#: create/templates/create_instance_w2.html:95 -#: instances/templates/add_instance_volume.html:60 -#: storages/templates/create_stg_vol_block.html:71 -msgid "GB" +#: instances/models.py:30 +msgid "created" msgstr "" -#: create/templates/create_instance_w1.html:4 -#: create/templates/create_instance_w2.html:4 -msgid "Create new instance" +#: instances/models.py:215 +msgid "Can access console without password" msgstr "" -#: create/templates/create_instance_w1.html:4 -msgid "Select Type" +#: instances/templates/add_instance_network_block.html:12 +msgid "Add Instance Network" msgstr "" -#: create/templates/create_instance_w1.html:10 -#: create/templates/create_instance_w2.html:13 -msgid "New instance on" -msgstr "" - -#: create/templates/create_instance_w1.html:45 -#: instances/templates/instance.html:643 networks/templates/network.html:75 -#: nwfilters/templates/nwfilter.html:52 -msgid "XML" -msgstr "" - -#: create/templates/create_instance_w1.html:66 -msgid "Chipset" -msgstr "" - -#: create/templates/create_instance_w1.html:76 -msgid "Next" -msgstr "" - -#: create/templates/create_instance_w2.html:49 -msgid "Flavor" -msgstr "" - -#: create/templates/create_instance_w2.html:54 -msgid "Custom" -msgstr "" - -#: create/templates/create_instance_w2.html:59 -msgid "Template" -msgstr "" - -#: create/templates/create_instance_w2.html:70 -msgid "Hypervisor doesn't have any Flavors" -msgstr "" - -#: create/templates/create_instance_w2.html:75 -msgid "Create from flavor" -msgstr "" - -#: create/templates/create_instance_w2.html:101 -msgid "Create Virtual Machine" -msgstr "" - -#: create/templates/create_instance_w2.html:119 -#: create/templates/create_instance_w2.html:316 -#: create/templates/create_instance_w2.html:529 -msgid "Firmware" -msgstr "" - -#: create/templates/create_instance_w2.html:131 -#: create/templates/create_instance_w2.html:334 -#: create/templates/create_instance_w2.html:546 -msgid "VCPU Config" -msgstr "" - -#: create/templates/create_instance_w2.html:134 -#: create/templates/create_instance_w2.html:337 -#: create/templates/create_instance_w2.html:549 -msgid "no-mode" -msgstr "" - -#: create/templates/create_instance_w2.html:153 -#: create/templates/create_instance_w2.html:595 -#: instances/templates/add_instance_volume.html:30 -#: instances/templates/add_instance_volume.html:100 -#: instances/templates/instance.html:829 storages/templates/storage.html:4 -#: storages/templates/storage.html:14 -msgid "Storage" -msgstr "" - -#: create/templates/create_instance_w2.html:162 -#: create/templates/create_instance_w2.html:190 -#: create/templates/create_instance_w2.html:381 -#: create/templates/create_instance_w2.html:436 -#: create/templates/create_instance_w2.html:584 -#: create/templates/create_instance_w2.html:603 -#: create/templates/create_instance_w2.html:649 -#: instances/templates/add_instance_network_block.html:40 -#: instances/templates/add_instance_volume.html:117 -#: instances/templates/create_inst_block.html:25 -#: instances/templates/instance.html:329 instances/templates/instance.html:776 -#: instances/templates/instance.html:972 instances/templates/instance.html:1649 -#: interfaces/templates/interface.html:42 -#: interfaces/templates/interface.html:44 nwfilters/templates/nwfilter.html:81 -#: storages/templates/create_stg_block.html:132 -#: storages/templates/storage.html:49 storages/templates/storage.html:51 -#: storages/templates/storage.html:53 -msgid "None" -msgstr "" - -#: create/templates/create_instance_w2.html:168 -#: create/templates/create_instance_w2.html:392 -#: create/templates/create_instance_w2.html:609 -#: instances/templates/add_instance_network_block.html:24 -#: instances/templates/instance.html:624 instances/templates/instance.html:959 -#: networks/templates/network.html:4 networks/templates/network.html:9 -#: networks/templates/network.html:110 networks/templates/network.html:221 -msgid "Network" -msgstr "" - -#: create/templates/create_instance_w2.html:178 -#: create/templates/create_instance_w2.html:406 -#: create/templates/create_instance_w2.html:619 -#: instances/templates/edit_instance_volume.html:25 -msgid "Advanced" -msgstr "" - -#: create/templates/create_instance_w2.html:187 -#: create/templates/create_instance_w2.html:433 -#: create/templates/create_instance_w2.html:646 -#: instances/templates/add_instance_network_block.html:37 -#: instances/templates/instance.html:968 nwfilters/templates/nwfilter.html:9 -msgid "NWFilter" -msgstr "" - -#: create/templates/create_instance_w2.html:198 -#: create/templates/create_instance_w2.html:635 -msgid "HDD cache mode" -msgstr "" - -#: create/templates/create_instance_w2.html:209 #: instances/templates/add_instance_network_block.html:18 -#: instances/templates/instance.html:924 instances/templates/instance.html:947 -#: instances/templates/instance.html:1047 +#: instances/templates/create_instance_w2.html:210 +#: instances/templates/instances/settings_tab.html:358 +#: instances/templates/instances/settings_tab.html:381 +#: instances/templates/instances/settings_tab.html:482 #: interfaces/templates/interface.html:46 #: interfaces/templates/interface.html:75 #: interfaces/templates/interfaces.html:63 @@ -1404,116 +1319,46 @@ msgstr "" msgid "MAC" msgstr "" -#: create/templates/create_instance_w2.html:216 -#: create/templates/create_instance_w2.html:445 -#: create/templates/create_instance_w2.html:658 -msgid "Graphics" +#: instances/templates/add_instance_network_block.html:24 +#: instances/templates/create_instance_w2.html:169 +#: instances/templates/create_instance_w2.html:393 +#: instances/templates/create_instance_w2.html:610 +#: instances/templates/instances/settings_tab.html:30 +#: instances/templates/instances/settings_tab.html:393 +#: networks/templates/network.html:4 networks/templates/network.html:9 +#: networks/templates/network.html:110 networks/templates/network.html:221 +msgid "Network" msgstr "" -#: create/templates/create_instance_w2.html:227 -#: create/templates/create_instance_w2.html:456 -#: create/templates/create_instance_w2.html:669 -msgid "Video" +#: instances/templates/add_instance_network_block.html:37 +#: instances/templates/create_instance_w2.html:188 +#: instances/templates/create_instance_w2.html:434 +#: instances/templates/create_instance_w2.html:647 +#: instances/templates/instances/settings_tab.html:402 +#: nwfilters/templates/nwfilter.html:9 +msgid "NWFilter" msgstr "" -#: create/templates/create_instance_w2.html:241 -#: create/templates/create_instance_w2.html:470 -#: create/templates/create_instance_w2.html:683 -msgid "Console Access" -msgstr "" - -#: create/templates/create_instance_w2.html:251 -#: create/templates/create_instance_w2.html:253 -#: create/templates/create_instance_w2.html:480 -#: create/templates/create_instance_w2.html:482 -#: create/templates/create_instance_w2.html:693 -#: create/templates/create_instance_w2.html:695 -msgid "Console Password" -msgstr "" - -#: create/templates/create_instance_w2.html:257 -#: create/templates/create_instance_w2.html:486 -#: create/templates/create_instance_w2.html:699 -msgid "Guest Agent" -msgstr "" - -#: create/templates/create_instance_w2.html:264 -#: create/templates/create_instance_w2.html:493 -#: create/templates/create_instance_w2.html:706 -msgid "VirtIO" -msgstr "" - -#: create/templates/create_instance_w2.html:363 -msgid "Added Disks" -msgstr "" - -#: create/templates/create_instance_w2.html:376 -#: create/templates/create_instance_w2.html:579 -msgid "Select pool" -msgstr "" - -#: create/templates/create_instance_w2.html:415 -#: create/templates/create_instance_w2.html:628 -msgid "Disk Metadata" -msgstr "" - -#: create/templates/create_instance_w2.html:417 -#: create/templates/create_instance_w2.html:630 -msgid "Metadata preallocation" -msgstr "" - -#: create/templates/create_instance_w2.html:419 -#: create/templates/create_instance_w2.html:632 -#: venv/lib/python3.6/site-packages/django/db/models/fields/files.py:360 -msgid "Image" -msgstr "" - -#: create/templates/create_instance_w2.html:422 -msgid "HDD Cache Mode" -msgstr "" - -#: create/templates/create_instance_w2.html:574 -msgid "Template Disk" -msgstr "" - -#: create/views.py:52 create/views.py:164 -msgid "A virtual machine with this name already exists" -msgstr "" - -#: create/views.py:133 -msgid "You haven't defined any storage pools" -msgstr "" - -#: create/views.py:136 -msgid "You haven't defined any network pools" -msgstr "" - -#: create/views.py:167 -msgid "There is an instance with same name. Are you sure?" -msgstr "" - -#: create/views.py:171 -msgid "No Virtual Machine MAC has been entered" -msgstr "" - -#: create/views.py:204 -msgid "Image has already exist. Please check volumes or change instance name" -msgstr "" - -#: create/views.py:230 -msgid "First you need to create or select an image" -msgstr "" - -#: create/views.py:252 -msgid "Invalid cache mode" -msgstr "" - -#: create/views.py:290 -msgid "Instance is created" -msgstr "" - -#: instances/templates/add_instance_network_block.html:12 -msgid "Add Instance Network" +#: instances/templates/add_instance_network_block.html:40 +#: instances/templates/add_instance_volume.html:117 +#: instances/templates/create_inst_block.html:25 +#: instances/templates/create_instance_w2.html:163 +#: instances/templates/create_instance_w2.html:191 +#: instances/templates/create_instance_w2.html:382 +#: instances/templates/create_instance_w2.html:437 +#: instances/templates/create_instance_w2.html:585 +#: instances/templates/create_instance_w2.html:604 +#: instances/templates/create_instance_w2.html:650 +#: instances/templates/instances/access_tab.html:135 +#: instances/templates/instances/settings_tab.html:183 +#: instances/templates/instances/settings_tab.html:406 +#: instances/templates/instances/stats_tab.html:90 +#: interfaces/templates/interface.html:42 +#: interfaces/templates/interface.html:44 nwfilters/templates/nwfilter.html:81 +#: storages/templates/create_stg_block.html:132 +#: storages/templates/storage.html:48 storages/templates/storage.html:50 +#: storages/templates/storage.html:52 +msgid "None" msgstr "" #: instances/templates/add_instance_owner_block.html:12 @@ -1543,24 +1388,36 @@ msgstr "" msgid "Volume parameters" msgstr "" +#: instances/templates/add_instance_volume.html:30 +#: instances/templates/add_instance_volume.html:100 +#: instances/templates/create_instance_w2.html:154 +#: instances/templates/create_instance_w2.html:596 +#: instances/templates/instances/settings_tab.html:237 +#: storages/templates/storage.html:4 storages/templates/storage.html:14 +msgid "Storage" +msgstr "" + #: instances/templates/add_instance_volume.html:46 #: storages/templates/create_stg_block.html:183 -#: storages/templates/create_stg_vol_block.html:57 -#: storages/templates/storage.html:101 storages/templates/storage.html:139 +#: storages/templates/storage.html:100 storages/templates/storage.html:138 msgid "Format" msgstr "" #: instances/templates/add_instance_volume.html:56 -#: storages/templates/create_stg_vol_block.html:67 -#: storages/templates/storage.html:54 storages/templates/storage.html:100 +#: storages/templates/storage.html:53 storages/templates/storage.html:99 #: storages/templates/storages.html:66 msgid "Size" msgstr "" +#: instances/templates/add_instance_volume.html:60 +#: instances/templates/create_instance_w2.html:96 +msgid "GB" +msgstr "" + #: instances/templates/add_instance_volume.html:63 #: instances/templates/add_instance_volume.html:123 #: instances/templates/edit_instance_volume.html:53 -#: instances/templates/instance.html:763 +#: instances/templates/instances/settings_tab.html:168 msgid "Bus" msgstr "" @@ -1570,9 +1427,8 @@ msgid "Cache" msgstr "" #: instances/templates/add_instance_volume.html:83 -#: instances/templates/instance.html:1416 -#: storages/templates/create_stg_vol_block.html:74 -#: storages/templates/storage.html:149 +#: instances/templates/instances/settings_tab.html:755 +#: storages/templates/storage.html:148 msgid "Metadata" msgstr "" @@ -1584,55 +1440,23 @@ msgstr "" msgid "Volume" msgstr "" -#: instances/templates/allinstances.html:33 -#: instances/templates/allinstances.html:49 -msgid "You don't have any Instance" +#: instances/templates/allinstances.html:24 +msgid "Problem occurred with host" msgstr "" -#: instances/templates/allinstances.html:71 -#: instances/templates/allinstances_index_grouped.html:57 -#: instances/templates/allinstances_index_nongrouped.html:21 -#: instances/templates/instance.html:14 instances/templates/instances.html:86 -msgid "Off" -msgstr "" - -#: instances/templates/allinstances.html:74 -#: instances/templates/allinstances_index_grouped.html:58 -#: instances/templates/allinstances_index_nongrouped.html:22 -#: instances/templates/instance.html:20 instances/templates/instance.html:143 -#: instances/templates/instance.html:198 -#: instances/templates/instance_actions.html:15 -#: instances/templates/instance_actions.html:32 -#: instances/templates/instance_actions.html:49 -#: instances/templates/instances.html:87 instances/views.py:699 -#: instances/views.py:1239 -msgid "Suspend" -msgstr "" - -#: instances/templates/allinstances_index_grouped.html:6 -#: instances/templates/allinstances_index_nongrouped.html:5 -#: instances/templates/instance.html:1438 -#: instances/templates/instance.html:1461 instances/templates/instances.html:70 -msgid "Description" -msgstr "" - -#: instances/templates/allinstances_index_grouped.html:11 +#: instances/templates/allinstances_index_grouped.html:12 msgid "Mem Usage" msgstr "" -#: instances/templates/allinstances_index_grouped.html:27 -msgid "Not Active" -msgstr "" - -#: instances/templates/allinstances_index_grouped.html:28 -msgid "Connection Failed" -msgstr "" - #: instances/templates/bottom_bar.html:4 msgid "HOST" msgstr "" -#: instances/templates/create_inst_block.html:12 +#: instances/templates/create_flav_block.html:14 +msgid "Add New Flavor" +msgstr "" + +#: instances/templates/create_inst_block.html:11 msgid "Choose a compute for new instance" msgstr "" @@ -1649,6 +1473,183 @@ msgstr "" msgid "Choose" msgstr "" +#: instances/templates/create_instance_w1.html:4 +#: instances/templates/create_instance_w2.html:5 +msgid "Create new instance" +msgstr "" + +#: instances/templates/create_instance_w1.html:4 +msgid "Select Type" +msgstr "" + +#: instances/templates/create_instance_w1.html:11 +#: instances/templates/create_instance_w2.html:14 +#, python-format +msgid "New instance on %(host)s " +msgstr "" + +#: instances/templates/create_instance_w1.html:47 +#: instances/templates/instances/settings_tab.html:49 +#: networks/templates/network.html:75 nwfilters/templates/nwfilter.html:52 +msgid "XML" +msgstr "" + +#: instances/templates/create_instance_w1.html:68 +msgid "Chipset" +msgstr "" + +#: instances/templates/create_instance_w1.html:78 +msgid "Next" +msgstr "" + +#: instances/templates/create_instance_w2.html:50 +msgid "Flavor" +msgstr "" + +#: instances/templates/create_instance_w2.html:55 +msgid "Custom" +msgstr "" + +#: instances/templates/create_instance_w2.html:60 +msgid "Template" +msgstr "" + +#: instances/templates/create_instance_w2.html:71 +msgid "Hypervisor doesn't have any Flavors" +msgstr "" + +#: instances/templates/create_instance_w2.html:76 +msgid "Create from flavor" +msgstr "" + +#: instances/templates/create_instance_w2.html:84 +#: instances/templates/create_instance_w2.html:357 +#: instances/templates/create_instance_w2.html:568 +#: instances/templates/instance.html:45 +msgid "RAM" +msgstr "" + +#: instances/templates/create_instance_w2.html:85 +#: instances/templates/create_instance_w2.html:372 +msgid "HDD" +msgstr "" + +#: instances/templates/create_instance_w2.html:95 +#: instances/templates/create_instance_w2.html:361 +#: instances/templates/create_instance_w2.html:572 +#: instances/templates/instance.html:45 +#: instances/templates/instances/resize_tab.html:95 +#: instances/templates/instances/resize_tab.html:108 +msgid "MB" +msgstr "" + +#: instances/templates/create_instance_w2.html:102 +msgid "Create Virtual Machine" +msgstr "" + +#: instances/templates/create_instance_w2.html:120 +#: instances/templates/create_instance_w2.html:317 +#: instances/templates/create_instance_w2.html:530 +msgid "Firmware" +msgstr "" + +#: instances/templates/create_instance_w2.html:132 +#: instances/templates/create_instance_w2.html:335 +#: instances/templates/create_instance_w2.html:547 +msgid "VCPU Config" +msgstr "" + +#: instances/templates/create_instance_w2.html:135 +#: instances/templates/create_instance_w2.html:338 +#: instances/templates/create_instance_w2.html:550 +msgid "no-mode" +msgstr "" + +#: instances/templates/create_instance_w2.html:179 +#: instances/templates/create_instance_w2.html:407 +#: instances/templates/create_instance_w2.html:620 +#: instances/templates/edit_instance_volume.html:25 +msgid "Advanced" +msgstr "" + +#: instances/templates/create_instance_w2.html:199 +#: instances/templates/create_instance_w2.html:636 +msgid "HDD cache mode" +msgstr "" + +#: instances/templates/create_instance_w2.html:217 +#: instances/templates/create_instance_w2.html:446 +#: instances/templates/create_instance_w2.html:659 +msgid "Graphics" +msgstr "" + +#: instances/templates/create_instance_w2.html:228 +#: instances/templates/create_instance_w2.html:457 +#: instances/templates/create_instance_w2.html:670 +msgid "Video" +msgstr "" + +#: instances/templates/create_instance_w2.html:242 +#: instances/templates/create_instance_w2.html:471 +#: instances/templates/create_instance_w2.html:684 +msgid "Console Access" +msgstr "" + +#: instances/templates/create_instance_w2.html:252 +#: instances/templates/create_instance_w2.html:254 +#: instances/templates/create_instance_w2.html:481 +#: instances/templates/create_instance_w2.html:483 +#: instances/templates/create_instance_w2.html:694 +#: instances/templates/create_instance_w2.html:696 +msgid "Console Password" +msgstr "" + +#: instances/templates/create_instance_w2.html:258 +#: instances/templates/create_instance_w2.html:487 +#: instances/templates/create_instance_w2.html:700 +msgid "Guest Agent" +msgstr "" + +#: instances/templates/create_instance_w2.html:265 +#: instances/templates/create_instance_w2.html:494 +#: instances/templates/create_instance_w2.html:707 +msgid "VirtIO" +msgstr "" + +#: instances/templates/create_instance_w2.html:364 +msgid "Added Disks" +msgstr "" + +#: instances/templates/create_instance_w2.html:377 +#: instances/templates/create_instance_w2.html:580 +msgid "Select pool" +msgstr "" + +#: instances/templates/create_instance_w2.html:416 +#: instances/templates/create_instance_w2.html:629 +msgid "Disk Metadata" +msgstr "" + +#: instances/templates/create_instance_w2.html:418 +#: instances/templates/create_instance_w2.html:631 +msgid "Metadata preallocation" +msgstr "" + +#: instances/templates/create_instance_w2.html:420 +#: instances/templates/create_instance_w2.html:633 +#: venv/lib/python3.6/site-packages/django/db/models/fields/files.py:360 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/files.py:391 +msgid "Image" +msgstr "" + +#: instances/templates/create_instance_w2.html:423 +msgid "HDD Cache Mode" +msgstr "" + +#: instances/templates/create_instance_w2.html:575 +msgid "Template Disk" +msgstr "" + #: instances/templates/edit_instance_volume.html:3 msgid "Edit Volume" msgstr "" @@ -1697,6 +1698,15 @@ msgstr "" msgid "Detect zeroes" msgstr "" +#: instances/templates/instance.html:20 +#: instances/templates/instance_actions.html:14 +#: instances/templates/instance_actions.html:25 +#: instances/templates/instance_actions.html:37 +#: instances/templates/instances/power_tab.html:25 +#: instances/templates/instances/power_tab.html:82 instances/views.py:287 +msgid "Suspend" +msgstr "" + #: instances/templates/instance.html:26 msgid "Guest Agent Enabled & Connected" msgstr "" @@ -1709,8 +1719,9 @@ msgstr "" msgid "Guest Agent Not Enabled & Not Connected" msgstr "" -#: instances/templates/instance.html:48 instances/templates/instance.html:374 -#: instances/templates/instance.html:610 +#: instances/templates/instance.html:48 +#: instances/templates/instances/resize_tab.html:18 +#: instances/templates/instances/settings_tab.html:16 msgid "Disk" msgstr "" @@ -1722,808 +1733,820 @@ msgstr "" msgid "quota reached" msgstr "" -#: instances/templates/instance.html:76 +#: instances/templates/instance.html:75 msgid "Power" msgstr "" -#: instances/templates/instance.html:82 +#: instances/templates/instance.html:81 msgid "Access" msgstr "" -#: instances/templates/instance.html:95 +#: instances/templates/instance.html:94 msgid "Snapshot" msgstr "" -#: instances/templates/instance.html:102 templates/navbar.html:32 +#: instances/templates/instance.html:101 templates/navbar.html:32 msgid "Settings" msgstr "" -#: instances/templates/instance.html:108 +#: instances/templates/instance.html:107 msgid "Stats" msgstr "" -#: instances/templates/instance.html:114 instances/templates/instance.html:1674 -#: instances/templates/instance.html:1691 -#: instances/templates/instance.html:1695 instances/views.py:421 +#: instances/templates/instance.html:113 +#: instances/templates/instances/destroy_instance_form.html:40 +#: instances/templates/instances/destroy_tab.html:18 +#: instances/templates/instances/destroy_tab.html:20 +#: instances/templates/instances/destroy_tab.html:23 instances/views.py:329 msgid "Destroy" msgstr "" -#: instances/templates/instance.html:127 instances/templates/instance.html:176 -#: instances/templates/instance_actions.html:18 -#: instances/templates/instance_actions.html:52 instances/views.py:387 -#: instances/views.py:1199 -msgid "Power Off" -msgstr "" - -#: instances/templates/instance.html:132 instances/templates/instance.html:183 -#: instances/templates/instance_actions.html:21 -#: instances/templates/instance_actions.html:38 -#: instances/templates/instance_actions.html:55 instances/views.py:381 -#: instances/views.py:1211 -msgid "Power Cycle" -msgstr "" - -#: instances/templates/instance.html:137 instances/templates/instance.html:157 -#: instances/templates/instance.html:190 instances/templates/instance.html:216 -#: instances/templates/instance_actions.html:35 instances/views.py:393 -#: instances/views.py:1206 -msgid "Force Off" -msgstr "" - -#: instances/templates/instance.html:152 instances/templates/instance.html:209 -#: instances/templates/instance.html:224 -#: instances/templates/instance_actions.html:29 instances/views.py:705 -#: instances/views.py:1245 -msgid "Resume" -msgstr "" - -#: instances/templates/instance.html:165 instances/templates/instance.html:236 -#: instances/templates/instance.html:238 -#: instances/templates/instance_actions.html:11 -#: instances/templates/instance_actions.html:46 instances/views.py:374 -#: instances/views.py:1193 +#: instances/templates/instance_actions.html:10 +#: instances/templates/instance_actions.html:35 +#: instances/templates/instances/power_tab.html:47 +#: instances/templates/instances/power_tab.html:121 +#: instances/templates/instances/power_tab.html:123 instances/views.py:262 msgid "Power On" msgstr "" -#: instances/templates/instance.html:174 -msgid "This action sends an ACPI shutdown signal to the instance." +#: instances/templates/instance_actions.html:15 +#: instances/templates/instances/power_tab.html:9 +#: instances/templates/instances/power_tab.html:59 instances/views.py:278 +msgid "Power Off" msgstr "" -#: instances/templates/instance.html:181 -msgid "" -"This action forcibly powers off and start the instance and may cause data " -"corruption." +#: instances/templates/instance_actions.html:16 +#: instances/templates/instance_actions.html:29 +#: instances/templates/instances/power_tab.html:14 +#: instances/templates/instances/power_tab.html:66 instances/views.py:271 +msgid "Power Cycle" msgstr "" -#: instances/templates/instance.html:188 instances/templates/instance.html:214 -msgid "" -"This action forcibly powers off the instance and may cause data corruption." +#: instances/templates/instance_actions.html:17 +#: instances/templates/instance_actions.html:30 +msgid "VNC Console" msgstr "" -#: instances/templates/instance.html:196 -msgid "This action suspends the instance." +#: instances/templates/instance_actions.html:22 +#: instances/templates/instances/power_tab.html:34 +#: instances/templates/instances/power_tab.html:93 +#: instances/templates/instances/power_tab.html:108 instances/views.py:295 +msgid "Resume" msgstr "" -#: instances/templates/instance.html:207 -msgid "This action restore the instance after suspend." +#: instances/templates/instance_actions.html:26 +#: instances/templates/instances/power_tab.html:19 +#: instances/templates/instances/power_tab.html:39 +#: instances/templates/instances/power_tab.html:74 +#: instances/templates/instances/power_tab.html:100 instances/views.py:302 +msgid "Force Off" msgstr "" -#: instances/templates/instance.html:222 -msgid "Administrator blocked your instance." -msgstr "" - -#: instances/templates/instance.html:232 -msgid "Click on Power On button to start this instance." -msgstr "" - -#: instances/templates/instance.html:235 -msgid "Template instance cannot be started." -msgstr "" - -#: instances/templates/instance.html:253 instances/templates/instance.html:285 -#: instances/templates/instance.html:290 instances/templates/instance.html:291 -#: instances/templates/instance.html:295 instances/templates/instance.html:617 -#: instances/templates/instance_actions.html:58 +#: instances/templates/instance_actions.html:41 +#: instances/templates/instances/access_tab.html:9 +#: instances/templates/instances/access_tab.html:79 +#: instances/templates/instances/access_tab.html:87 +#: instances/templates/instances/access_tab.html:90 +#: instances/templates/instances/access_tab.html:94 +#: instances/templates/instances/settings_tab.html:23 msgid "Console" msgstr "" -#: instances/templates/instance.html:259 +#: instances/templates/instances/access_tab.html:16 msgid "Root Password" msgstr "" -#: instances/templates/instance.html:273 instances/templates/instance.html:349 +#: instances/templates/instances/access_tab.html:31 +#: instances/templates/instances/access_tab.html:156 msgid "VDI" msgstr "" -#: instances/templates/instance.html:281 +#: instances/templates/instances/access_tab.html:39 +#, python-format msgid "" -"This action opens a new window with a VNC connection to the console of the " -"instance." +" This action opens a new window with a %(type)s connection to the console of " +"the instance." msgstr "" -#: instances/templates/instance.html:287 +#: instances/templates/instances/access_tab.html:47 +msgid "Scale" +msgstr "" + +#: instances/templates/instances/access_tab.html:55 +msgid "View Only" +msgstr "" + +#: instances/templates/instances/access_tab.html:63 +msgid "Resize Session" +msgstr "" + +#: instances/templates/instances/access_tab.html:71 +msgid "View Clipboard" +msgstr "" + +#: instances/templates/instances/access_tab.html:82 msgid "Toggle Dropdown" msgstr "" -#: instances/templates/instance.html:290 instances/templates/instance.html:291 +#: instances/templates/instances/access_tab.html:86 +#: instances/templates/instances/access_tab.html:89 msgid "Console port" msgstr "" -#: instances/templates/instance.html:290 +#: instances/templates/instances/access_tab.html:87 msgid "Lite" msgstr "" -#: instances/templates/instance.html:291 +#: instances/templates/instances/access_tab.html:90 msgid "Full" msgstr "" -#: instances/templates/instance.html:301 +#: instances/templates/instances/access_tab.html:100 msgid "You need shut down your instance and enter a new root password." msgstr "" -#: instances/templates/instance.html:305 +#: instances/templates/instances/access_tab.html:107 msgid "Enter Password" msgstr "" -#: instances/templates/instance.html:309 instances/templates/instance.html:311 +#: instances/templates/instances/access_tab.html:112 +#: instances/templates/instances/access_tab.html:115 msgid "Reset Root Password" msgstr "" -#: instances/templates/instance.html:319 +#: instances/templates/instances/access_tab.html:123 msgid "You need shut down your instance and choose your public key." msgstr "" -#: instances/templates/instance.html:335 instances/templates/instance.html:337 +#: instances/templates/instances/access_tab.html:142 +#: instances/templates/instances/access_tab.html:144 msgid "Add Public Key" msgstr "" -#: instances/templates/instance.html:345 +#: instances/templates/instances/access_tab.html:152 msgid "" "This action opens a remote viewer with a connection to the console of the " "instance." msgstr "" -#: instances/templates/instance.html:364 +#: instances/templates/instances/destroy_instance_form.html:4 +msgid "Confirm Destroy" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:8 +msgid "Destroy instance" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:15 +msgid "Instance is suspended, cannot destroy!" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:19 +msgid "This action is irreversible!" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:26 +msgid "Remove Instance's data" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:34 +msgid "Remove Instance's NVRAM" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:46 +msgid "You cannot destroy instance!" +msgstr "" + +#: instances/templates/instances/destroy_tab.html:8 +msgid "Destroy Instance" +msgstr "" + +#: instances/templates/instances/destroy_tab.html:15 +msgid "This action starts remove instance process" +msgstr "" + +#: instances/templates/instances/power_tab.html:56 +msgid "This action sends an ACPI shutdown signal to the instance." +msgstr "" + +#: instances/templates/instances/power_tab.html:64 +msgid "" +"This action forcibly powers off and start the instance and may cause data " +"corruption." +msgstr "" + +#: instances/templates/instances/power_tab.html:71 +#: instances/templates/instances/power_tab.html:98 +msgid "" +"This action forcibly powers off the instance and may cause data corruption." +msgstr "" + +#: instances/templates/instances/power_tab.html:80 +msgid "This action suspends the instance." +msgstr "" + +#: instances/templates/instances/power_tab.html:91 +msgid "This action restore the instance after suspend." +msgstr "" + +#: instances/templates/instances/power_tab.html:106 +msgid "Administrator blocked your instance." +msgstr "" + +#: instances/templates/instances/power_tab.html:116 +msgid "Click on Power On button to start this instance." +msgstr "" + +#: instances/templates/instances/power_tab.html:120 +msgid "Template instance cannot be started." +msgstr "" + +#: instances/templates/instances/resize_tab.html:8 msgid "CPU" msgstr "" -#: instances/templates/instance.html:385 +#: instances/templates/instances/resize_tab.html:29 msgid "Logical host CPUs" msgstr "" -#: instances/templates/instance.html:387 instances/templates/instance.html:450 -#: instances/templates/instance.html:490 +#: instances/templates/instances/resize_tab.html:31 +#: instances/templates/instances/resize_tab.html:95 +#: instances/templates/instances/resize_tab.html:136 msgid "Current Allocation" msgstr "" -#: instances/templates/instance.html:401 instances/templates/instance.html:463 +#: instances/templates/instances/resize_tab.html:45 +#: instances/templates/instances/resize_tab.html:108 msgid "Maximum Allocation" msgstr "" -#: instances/templates/instance.html:419 +#: instances/templates/instances/resize_tab.html:63 msgid "Logical Instance Active/Maximum CPUs" msgstr "" -#: instances/templates/instance.html:427 instances/templates/instance.html:674 -#: instances/templates/instance.html:689 networks/templates/network.html:65 -#: storages/templates/storage.html:79 +#: instances/templates/instances/resize_tab.html:71 +#: instances/templates/instances/settings_tab.html:79 +#: instances/templates/instances/settings_tab.html:95 +#: networks/templates/network.html:65 storages/templates/storage.html:78 msgid "Disable" msgstr "" -#: instances/templates/instance.html:429 +#: instances/templates/instances/resize_tab.html:73 msgid "Constant" msgstr "" -#: instances/templates/instance.html:431 instances/templates/instance.html:672 -#: instances/templates/instance.html:687 networks/templates/network.html:63 -#: storages/templates/storage.html:76 +#: instances/templates/instances/resize_tab.html:75 +#: instances/templates/instances/settings_tab.html:77 +#: instances/templates/instances/settings_tab.html:91 +#: networks/templates/network.html:63 storages/templates/storage.html:75 msgid "Enable" msgstr "" -#: instances/templates/instance.html:440 instances/templates/instance.html:479 -#: instances/templates/instance.html:503 +#: instances/templates/instances/resize_tab.html:84 +#: instances/templates/instances/resize_tab.html:124 +#: instances/templates/instances/resize_tab.html:157 msgid "You don't have permission for resizing instance" msgstr "" -#: instances/templates/instance.html:448 +#: instances/templates/instances/resize_tab.html:93 msgid "Total host memory" msgstr "" -#: instances/templates/instance.html:458 instances/templates/instance.html:473 +#: instances/templates/instances/resize_tab.html:103 +#: instances/templates/instances/resize_tab.html:118 msgid "Custom value" msgstr "" -#: instances/templates/instance.html:487 +#: instances/templates/instances/resize_tab.html:133 msgid "Disk allocation (GB)" msgstr "" -#: instances/templates/instance.html:517 instances/templates/instance.html:538 -#: instances/templates/instance.html:540 -msgid "Take Snapshot" +#: instances/templates/instances/resize_tab.html:140 +#: instances/templates/instances/settings_tab.html:269 +msgid "Error getting disk info" msgstr "" -#: instances/templates/instance.html:522 -msgid "Manage Snapshots" -msgstr "" - -#: instances/templates/instance.html:530 -msgid "" -"This may take more than an hour, depending on how much content is on your " -"droplet and how large the disk is." -msgstr "" - -#: instances/templates/instance.html:534 -msgid "Enter Snapshot Name" -msgstr "" - -#: instances/templates/instance.html:545 -msgid "To take a snapshot please Power Off the instance." -msgstr "" - -#: instances/templates/instance.html:550 -msgid "Choose a snapshot for restore/delete" -msgstr "" - -#: instances/templates/instance.html:567 -msgid "Revert to this Snapshot" -msgstr "" - -#: instances/templates/instance.html:572 -msgid "To restore snapshots you need Power Off the instance." -msgstr "" - -#: instances/templates/instance.html:581 -msgid "Delete Snapshot" -msgstr "" - -#: instances/templates/instance.html:592 -msgid "You do not have any snapshots" -msgstr "" - -#: instances/templates/instance.html:605 +#: instances/templates/instances/settings_tab.html:11 msgid "Boot" msgstr "" -#: instances/templates/instance.html:638 instances/templates/instance.html:1174 -#: instances/templates/instance.html:1176 +#: instances/templates/instances/settings_tab.html:44 +#: instances/templates/instances/settings_tab.html:616 +#: instances/templates/instances/settings_tab.html:618 msgid "Migrate" msgstr "" -#: instances/templates/instance.html:650 +#: instances/templates/instances/settings_tab.html:56 msgid "Options" msgstr "" -#: instances/templates/instance.html:666 networks/templates/network.html:59 -#: storages/templates/storage.html:71 +#: instances/templates/instances/settings_tab.html:72 +#: networks/templates/network.html:59 storages/templates/storage.html:70 msgid "Autostart" msgstr "" -#: instances/templates/instance.html:670 +#: instances/templates/instances/settings_tab.html:75 msgid "Autostart your instance when host server is power on " msgstr "" -#: instances/templates/instance.html:680 +#: instances/templates/instances/settings_tab.html:84 msgid "Boot Order" msgstr "" -#: instances/templates/instance.html:685 +#: instances/templates/instances/settings_tab.html:88 msgid "Enable Boot Menu for your instance when it starts up " msgstr "" -#: instances/templates/instance.html:687 +#: instances/templates/instances/settings_tab.html:91 msgid "Show boot menu" msgstr "" -#: instances/templates/instance.html:689 +#: instances/templates/instances/settings_tab.html:95 msgid "Hide boot menu" msgstr "" -#: instances/templates/instance.html:693 +#: instances/templates/instances/settings_tab.html:100 msgid "Please shutdown instance to modify boot menu" msgstr "" -#: instances/templates/instance.html:724 +#: instances/templates/instances/settings_tab.html:130 msgid "up: move selected devices" msgstr "" -#: instances/templates/instance.html:727 +#: instances/templates/instances/settings_tab.html:133 msgid "down: move selected devices" msgstr "" -#: instances/templates/instance.html:733 instances/templates/instance.html:994 +#: instances/templates/instances/settings_tab.html:139 +#: instances/templates/instances/settings_tab.html:428 msgid "Apply" msgstr "" -#: instances/templates/instance.html:743 +#: instances/templates/instances/settings_tab.html:149 msgid "Instance Media" msgstr "" -#: instances/templates/instance.html:746 +#: instances/templates/instances/settings_tab.html:152 msgid "Add CD-ROM" msgstr "" -#: instances/templates/instance.html:764 instances/templates/instance.html:826 +#: instances/templates/instances/settings_tab.html:169 +#: instances/templates/instances/settings_tab.html:234 #: interfaces/templates/create_iface_block.html:34 #: networks/templates/network.html:46 networks/templates/networks.html:63 #: storages/templates/create_stg_block.html:77 msgid "Device" msgstr "" -#: instances/templates/instance.html:765 +#: instances/templates/instances/settings_tab.html:170 msgid "CD-ROM" msgstr "" -#: instances/templates/instance.html:781 instances/templates/instance.html:783 +#: instances/templates/instances/settings_tab.html:188 +#: instances/templates/instances/settings_tab.html:190 msgid "Mount" msgstr "" -#: instances/templates/instance.html:786 +#: instances/templates/instances/settings_tab.html:193 msgid "Detach CD-ROM (remove device)" msgstr "" -#: instances/templates/instance.html:800 instances/templates/instance.html:802 +#: instances/templates/instances/settings_tab.html:208 +#: instances/templates/instances/settings_tab.html:210 msgid "Unmount" msgstr "" -#: instances/templates/instance.html:812 +#: instances/templates/instances/settings_tab.html:220 msgid "There is not any CD-ROM device." msgstr "" -#: instances/templates/instance.html:817 +#: instances/templates/instances/settings_tab.html:225 msgid "Instance Volume" msgstr "" -#: instances/templates/instance.html:827 +#: instances/templates/instances/settings_tab.html:235 msgid "Used" msgstr "" -#: instances/templates/instance.html:828 +#: instances/templates/instances/settings_tab.html:236 msgid "Capacity" msgstr "" -#: instances/templates/instance.html:830 instances/templates/instance.html:928 +#: instances/templates/instances/settings_tab.html:238 +#: instances/templates/instances/settings_tab.html:362 msgid "Source" msgstr "" -#: instances/templates/instance.html:870 instances/templates/instance.html:877 +#: instances/templates/instances/settings_tab.html:294 +#: instances/templates/instances/settings_tab.html:298 msgid "Detach" msgstr "" -#: instances/templates/instance.html:870 +#: instances/templates/instances/settings_tab.html:294 msgid "Are you sure to detach volume?" msgstr "" -#: instances/templates/instance.html:873 -msgid "Are you sure to delete volume?" -msgstr "" - -#: instances/templates/instance.html:877 instances/templates/instance.html:880 +#: instances/templates/instances/settings_tab.html:298 +#: instances/templates/instances/settings_tab.html:314 msgid "Are you sure? This may lead data corruption!" msgstr "" -#: instances/templates/instance.html:896 +#: instances/templates/instances/settings_tab.html:310 +msgid "Are you sure to delete volume?" +msgstr "" + +#: instances/templates/instances/settings_tab.html:330 msgid "Add a network device" msgstr "" -#: instances/templates/instance.html:902 +#: instances/templates/instances/settings_tab.html:336 msgid "Network Devices" msgstr "" -#: instances/templates/instance.html:907 instances/templates/instance.html:908 +#: instances/templates/instances/settings_tab.html:341 +#: instances/templates/instances/settings_tab.html:342 msgid "Info" msgstr "" -#: instances/templates/instance.html:921 +#: instances/templates/instances/settings_tab.html:355 msgid "active" msgstr "" -#: instances/templates/instance.html:926 nwfilters/templates/nwfilter.html:78 +#: instances/templates/instances/settings_tab.html:360 +#: nwfilters/templates/nwfilter.html:78 msgid "Filter" msgstr "" -#: instances/templates/instance.html:933 +#: instances/templates/instances/settings_tab.html:367 msgid "Edit NIC" msgstr "" -#: instances/templates/instance.html:941 +#: instances/templates/instances/settings_tab.html:375 msgid "Edit Instance Network" msgstr "" -#: instances/templates/instance.html:954 +#: instances/templates/instances/settings_tab.html:388 msgid "Net Source" msgstr "" -#: instances/templates/instance.html:962 interfaces/templates/interface.html:3 -#: interfaces/templates/interface.html:8 interfaces/templates/interface.html:40 +#: instances/templates/instances/settings_tab.html:396 +#: interfaces/templates/interface.html:3 interfaces/templates/interface.html:8 +#: interfaces/templates/interface.html:40 msgid "Interface" msgstr "" -#: instances/templates/instance.html:980 instances/templates/instance.html:1019 +#: instances/templates/instances/settings_tab.html:414 +#: instances/templates/instances/settings_tab.html:453 msgid "Model" msgstr "" -#: instances/templates/instance.html:994 +#: instances/templates/instances/settings_tab.html:428 msgid "Apply network changes" msgstr "" -#: instances/templates/instance.html:1003 +#: instances/templates/instances/settings_tab.html:437 msgid "Delete Device" msgstr "" -#: instances/templates/instance.html:1011 +#: instances/templates/instances/settings_tab.html:445 #: interfaces/templates/create_iface_block.html:71 #: interfaces/templates/interface.html:42 msgid "IPv4" msgstr "" -#: instances/templates/instance.html:1015 +#: instances/templates/instances/settings_tab.html:449 #: interfaces/templates/create_iface_block.html:74 #: interfaces/templates/interface.html:44 msgid "IPv6" msgstr "" -#: instances/templates/instance.html:1021 +#: instances/templates/instances/settings_tab.html:455 msgid "QoS" msgstr "" -#: instances/templates/instance.html:1041 networks/templates/network.html:325 +#: instances/templates/instances/settings_tab.html:476 +#: networks/templates/network.html:325 msgid "QoS Configuration" msgstr "" -#: instances/templates/instance.html:1047 +#: instances/templates/instances/settings_tab.html:482 #: networks/templates/add_network_qos.html:18 #: networks/templates/network.html:331 nwfilters/templates/nwfilter.html:134 msgid "Direction" msgstr "" -#: instances/templates/instance.html:1048 +#: instances/templates/instances/settings_tab.html:483 #: networks/templates/add_network_qos.html:27 #: networks/templates/network.html:332 msgid "Average" msgstr "" -#: instances/templates/instance.html:1049 +#: instances/templates/instances/settings_tab.html:484 #: networks/templates/add_network_qos.html:34 #: networks/templates/network.html:333 msgid "Peak" msgstr "" -#: instances/templates/instance.html:1050 +#: instances/templates/instances/settings_tab.html:485 #: networks/templates/add_network_qos.html:41 #: networks/templates/network.html:334 msgid "Burst" msgstr "" -#: instances/templates/instance.html:1074 networks/templates/network.html:356 +#: instances/templates/instances/settings_tab.html:510 +#: networks/templates/network.html:356 msgid "Edit QoS" msgstr "" -#: instances/templates/instance.html:1079 networks/templates/network.html:361 +#: instances/templates/instances/settings_tab.html:520 +#: networks/templates/network.html:361 msgid "Delete QoS" msgstr "" -#: instances/templates/instance.html:1095 +#: instances/templates/instances/settings_tab.html:536 msgid "For migration both host servers must have equal settings and OS type" msgstr "" -#: instances/templates/instance.html:1098 +#: instances/templates/instances/settings_tab.html:540 msgid "Original host" msgstr "" -#: instances/templates/instance.html:1104 +#: instances/templates/instances/settings_tab.html:546 msgid "Host migration" msgstr "" -#: instances/templates/instance.html:1121 +#: instances/templates/instances/settings_tab.html:563 msgid "Live migration" msgstr "" -#: instances/templates/instance.html:1129 +#: instances/templates/instances/settings_tab.html:571 msgid "Unsafe migration" msgstr "" -#: instances/templates/instance.html:1137 +#: instances/templates/instances/settings_tab.html:579 msgid "Delete original" msgstr "" -#: instances/templates/instance.html:1145 +#: instances/templates/instances/settings_tab.html:587 msgid "Offline migration" msgstr "" -#: instances/templates/instance.html:1153 +#: instances/templates/instances/settings_tab.html:595 msgid "Post copy" msgstr "" -#: instances/templates/instance.html:1161 +#: instances/templates/instances/settings_tab.html:603 msgid "Forces CPU convergence during live migration" msgstr "" -#: instances/templates/instance.html:1161 +#: instances/templates/instances/settings_tab.html:603 msgid "Auto converge" msgstr "" -#: instances/templates/instance.html:1169 +#: instances/templates/instances/settings_tab.html:611 msgid "Compress instance memory for fast migration" msgstr "" -#: instances/templates/instance.html:1169 +#: instances/templates/instances/settings_tab.html:611 msgid "Compressed" msgstr "" -#: instances/templates/instance.html:1182 +#: instances/templates/instances/settings_tab.html:624 msgid "If you need to edit XML please Power Off the instance" msgstr "" -#: instances/templates/instance.html:1203 +#: instances/templates/instances/settings_tab.html:646 msgid "Instance owners" msgstr "" -#: instances/templates/instance.html:1216 -msgid "Delete Ownership" +#: instances/templates/instances/settings_tab.html:675 +msgid "To change console settings, shutdown the instance." msgstr "" -#: instances/templates/instance.html:1231 -msgid "To set console's type, shutdown the instance." +#: instances/templates/instances/settings_tab.html:681 +#: instances/templates/instances/settings_tab.html:683 +msgid "Update" msgstr "" -#: instances/templates/instance.html:1234 -#: interfaces/templates/create_iface_block.html:44 -#: interfaces/templates/interface.html:77 -#: interfaces/templates/interfaces.html:62 -#: storages/templates/create_stg_block.html:35 -#: storages/templates/create_stg_block.html:64 -#: storages/templates/create_stg_block.html:93 -#: storages/templates/create_stg_block.html:158 -#: storages/templates/storages.html:64 -msgid "Type" -msgstr "" - -#: instances/templates/instance.html:1238 -#: instances/templates/instance.html:1262 -#: instances/templates/instance.html:1331 -#: instances/templates/instance.html:1495 -msgid "please choose" -msgstr "" - -#: instances/templates/instance.html:1246 -#: instances/templates/instance.html:1248 -#: instances/templates/instance.html:1269 -#: instances/templates/instance.html:1271 -#: instances/templates/instance.html:1307 -#: instances/templates/instance.html:1309 -#: instances/templates/instance.html:1339 -#: instances/templates/instance.html:1341 -#: instances/templates/instance.html:1502 -#: instances/templates/instance.html:1504 -#: instances/templates/instance.html:1524 -#: instances/templates/instance.html:1526 -#: instances/templates/instance.html:1554 secrets/templates/secrets.html:103 -msgid "Set" -msgstr "" - -#: instances/templates/instance.html:1255 -msgid "To set console listen address, shutdown the instance." -msgstr "" - -#: instances/templates/instance.html:1258 -msgid "Listen on" -msgstr "" - -#: instances/templates/instance.html:1278 -msgid "To create console password, shutdown the instance." -msgstr "" - -#: instances/templates/instance.html:1284 -msgid "Generate" -msgstr "" - -#: instances/templates/instance.html:1288 -#: instances/templates/instance.html:1322 networks/templates/network.html:169 -#: networks/templates/network.html:279 -#: venv/lib/python3.6/site-packages/django/forms/widgets.py:395 -msgid "Clear" -msgstr "" - -#: instances/templates/instance.html:1304 networks/templates/network.html:161 -#: networks/templates/network.html:271 nwfilters/templates/nwfilters.html:88 -msgid "Show" -msgstr "" - -#: instances/templates/instance.html:1316 -msgid "To set console's keymap, shutdown the instance." -msgstr "" - -#: instances/templates/instance.html:1327 -msgid "Keymap" -msgstr "" - -#: instances/templates/instance.html:1353 +#: instances/templates/instances/settings_tab.html:692 msgid "Create a clone" msgstr "" -#: instances/templates/instance.html:1356 +#: instances/templates/instances/settings_tab.html:695 msgid "Clone Name" msgstr "" -#: instances/templates/instance.html:1363 -#: instances/templates/instance.html:1394 +#: instances/templates/instances/settings_tab.html:702 +#: instances/templates/instances/settings_tab.html:733 msgid "Guess" msgstr "" -#: instances/templates/instance.html:1382 +#: instances/templates/instances/settings_tab.html:721 msgid "Network devices" msgstr "" -#: instances/templates/instance.html:1392 +#: instances/templates/instances/settings_tab.html:731 msgid "Random" msgstr "" -#: instances/templates/instance.html:1407 +#: instances/templates/instances/settings_tab.html:746 msgid "Storage devices" msgstr "" -#: instances/templates/instance.html:1432 -#: instances/templates/instance.html:1455 +#: instances/templates/instances/settings_tab.html:771 +#: instances/templates/instances/settings_tab.html:794 msgid "Title" msgstr "" -#: instances/templates/instance.html:1452 +#: instances/templates/instances/settings_tab.html:791 msgid "To set instance template name description, shutdown the instance." msgstr "" -#: instances/templates/instance.html:1467 +#: instances/templates/instances/settings_tab.html:806 msgid "Is template" msgstr "" -#: instances/templates/instance.html:1488 +#: instances/templates/instances/settings_tab.html:827 msgid "To set instance video model, shutdown the instance." msgstr "" -#: instances/templates/instance.html:1491 +#: instances/templates/instances/settings_tab.html:830 msgid "Primary Video Model" msgstr "" -#: instances/templates/instance.html:1512 +#: instances/templates/instances/settings_tab.html:834 +msgid "please choose" +msgstr "" + +#: instances/templates/instances/settings_tab.html:841 +#: instances/templates/instances/settings_tab.html:843 +#: instances/templates/instances/settings_tab.html:863 +#: instances/templates/instances/settings_tab.html:865 +#: instances/templates/instances/settings_tab.html:893 +#: secrets/templates/secrets.html:103 +msgid "Set" +msgstr "" + +#: instances/templates/instances/settings_tab.html:851 msgid "To set instance vCPUs hotpluggable" msgstr "" -#: instances/templates/instance.html:1515 +#: instances/templates/instances/settings_tab.html:854 msgid "vCPU Hot Plug" msgstr "" -#: instances/templates/instance.html:1519 -#: instances/templates/instance.html:1550 +#: instances/templates/instances/settings_tab.html:858 +#: instances/templates/instances/settings_tab.html:889 msgid "Enabled" msgstr "" -#: instances/templates/instance.html:1520 -#: instances/templates/instance.html:1551 +#: instances/templates/instances/settings_tab.html:859 +#: instances/templates/instances/settings_tab.html:890 msgid "Disabled" msgstr "" -#: instances/templates/instance.html:1534 +#: instances/templates/instances/settings_tab.html:873 msgid "To Enable/Disable Qemu Guest Agent. Status" msgstr "" -#: instances/templates/instance.html:1539 +#: instances/templates/instances/settings_tab.html:878 msgid "Disconnected" msgstr "" -#: instances/templates/instance.html:1542 +#: instances/templates/instances/settings_tab.html:881 #: venv/lib/python3.6/site-packages/django/forms/widgets.py:709 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:703 msgid "Unknown" msgstr "" -#: instances/templates/instance.html:1546 +#: instances/templates/instances/settings_tab.html:885 msgid "Qemu Guest Agent" msgstr "" -#: instances/templates/instance.html:1572 +#: instances/templates/instances/snapshots_tab.html:9 +#: instances/templates/instances/snapshots_tab.html:31 +#: instances/templates/instances/snapshots_tab.html:33 +msgid "Take Snapshot" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:14 +msgid "Manage Snapshots" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:22 +msgid "" +"This may take more than an hour, depending on how much content is on your " +"droplet and how large the disk is." +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:27 +msgid "Enter Snapshot Name" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:38 +msgid "To take a snapshot please Power Off the instance." +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:43 +msgid "Choose a snapshot for restore/delete" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:61 +msgid "Revert to this Snapshot" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:66 +msgid "To restore snapshots you need Power Off the instance." +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:75 +msgid "Delete Snapshot" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:86 +msgid "You do not have any snapshots" +msgstr "" + +#: instances/templates/instances/stats_tab.html:8 msgid "Real Time" msgstr "" -#: instances/templates/instance.html:1586 +#: instances/templates/instances/stats_tab.html:23 msgid "CPU Usage" msgstr "" -#: instances/templates/instance.html:1598 +#: instances/templates/instances/stats_tab.html:36 msgid "Memory Usage" msgstr "" -#: instances/templates/instance.html:1611 +#: instances/templates/instances/stats_tab.html:50 msgid "Bandwidth Device" msgstr "" -#: instances/templates/instance.html:1625 +#: instances/templates/instances/stats_tab.html:65 msgid "Disk I/O device" msgstr "" -#: instances/templates/instance.html:1664 -msgid "Destroy Instance" -msgstr "" - -#: instances/templates/instance.html:1671 -msgid "Delete storage for instance?" -msgstr "" - -#: instances/templates/instance.html:1680 -msgid "Remove Instance's data" -msgstr "" - -#: instances/templates/instance.html:1687 -msgid "Remove Instance's NVRAM" -msgstr "" - -#: instances/templates/instance_actions.html:24 -#: instances/templates/instance_actions.html:41 -msgid "VNC Console" -msgstr "" - -#: instances/templates/instances.html:61 -msgid "Hypervisor doesn't have any Instances" -msgstr "" - -#: instances/views.py:224 +#: instances/utils.py:122 msgid "None available device name" msgstr "" -#: instances/views.py:260 +#: instances/utils.py:239 +msgid "Deleting due to multiple(Instance Name) records." +msgstr "" + +#: instances/utils.py:247 +msgid "Deleting due to multiple(UUID) records." +msgstr "" + +#: instances/views.py:259 +msgid "Templates cannot be started." +msgstr "" + +#: instances/views.py:362 #, python-brace-format msgid "Migrate to {new_compute.hostname}" msgstr "" -#: instances/views.py:340 -#, python-brace-format -msgid "Fixing UUID {uuid}" -msgstr "" - -#: instances/views.py:345 -msgid "Instance does not exist: Creating new instance" -msgstr "" - -#: instances/views.py:370 instances/views.py:1190 -msgid "Templates cannot be started." -msgstr "" - -#: instances/views.py:437 +#: instances/views.py:385 msgid "Reset root password" msgstr "" -#: instances/views.py:445 instances/views.py:467 +#: instances/views.py:391 instances/views.py:417 msgid "Please shutdown down your instance and then try again" msgstr "" -#: instances/views.py:459 +#: instances/views.py:409 #, python-brace-format msgid "Installed new SSH public key {publickey.keyname}" msgstr "" -#: instances/views.py:477 +#: instances/views.py:436 #, python-brace-format msgid "User {quota_msg} quota reached, cannot resize CPU of '{instance.name}'!" msgstr "" -#: instances/views.py:483 +#: instances/views.py:442 msgid "Resize CPU" msgstr "" -#: instances/views.py:501 +#: instances/views.py:470 #, python-brace-format msgid "" "User {quota_msg} quota reached, cannot resize memory of '{instance.name}'!" msgstr "" -#: instances/views.py:507 +#: instances/views.py:476 msgid "Resize Memory" msgstr "" -#: instances/views.py:524 +#: instances/views.py:506 #, python-brace-format msgid "" "User {quota_msg} quota reached, cannot resize disks of '{instance.name}'!" msgstr "" -#: instances/views.py:528 +#: instances/views.py:510 msgid "Disk resize" msgstr "" @@ -2532,259 +2555,289 @@ msgstr "" msgid "Attach new disk {name} ({format})" msgstr "" -#: instances/views.py:571 +#: instances/views.py:580 #, python-brace-format msgid "Attach Existing disk: {target_dev}" msgstr "" -#: instances/views.py:603 +#: instances/views.py:636 msgid "Volume changes are applied. But it will be activated after shutdown" msgstr "" -#: instances/views.py:606 +#: instances/views.py:638 msgid "Volume is changed successfully." msgstr "" -#: instances/views.py:607 +#: instances/views.py:639 #, python-brace-format msgid "Edit disk: {target_dev}" msgstr "" -#: instances/views.py:623 +#: instances/views.py:661 #, python-brace-format msgid "Delete disk: {dev}" msgstr "" -#: instances/views.py:628 -#, python-brace-format -msgid "The disk: {dev} is detached but not deleted. Error: {err}" -msgstr "" - -#: instances/views.py:638 +#: instances/views.py:677 #, python-brace-format msgid "Detach disk: {dev}" msgstr "" -#: instances/views.py:646 +#: instances/views.py:690 #, python-brace-format msgid "Add CD-ROM: {target}" msgstr "" -#: instances/views.py:653 +#: instances/views.py:703 #, python-brace-format msgid "Detach CD-ROM: {dev}" msgstr "" -#: instances/views.py:661 +#: instances/views.py:716 #, python-brace-format msgid "Mount media: {dev}" msgstr "" -#: instances/views.py:669 +#: instances/views.py:729 #, python-brace-format msgid "Umount media: {dev}" msgstr "" -#: instances/views.py:676 +#: instances/views.py:742 #, python-brace-format msgid "New snapshot : {name}" msgstr "" -#: instances/views.py:683 +#: instances/views.py:753 #, python-brace-format msgid "Delete snapshot : {snap_name}" msgstr "" -#: instances/views.py:690 +#: instances/views.py:764 msgid "Successful revert snapshot: " msgstr "" -#: instances/views.py:693 +#: instances/views.py:767 msgid "Revert snapshot" msgstr "" -#: instances/views.py:716 +#: instances/views.py:781 #, python-brace-format msgid "VCPU {id} is enabled={enabled}" msgstr "" -#: instances/views.py:723 +#: instances/views.py:792 #, python-brace-format msgid "VCPU Hot-plug is enabled={status}" msgstr "" -#: instances/views.py:734 +#: instances/views.py:803 msgid "Set autostart" msgstr "" -#: instances/views.py:740 +#: instances/views.py:812 msgid "Unset autostart" msgstr "" -#: instances/views.py:746 +#: instances/views.py:821 msgid "Enable boot menu" msgstr "" -#: instances/views.py:752 +#: instances/views.py:830 msgid "Disable boot menu" msgstr "" -#: instances/views.py:764 +#: instances/views.py:845 msgid "Set boot order" msgstr "" -#: instances/views.py:767 +#: instances/views.py:848 msgid "Boot menu changes applied. But it will be activated after shutdown" msgstr "" -#: instances/views.py:770 +#: instances/views.py:850 msgid "Boot order changed successfully." msgstr "" -#: instances/views.py:778 +#: instances/views.py:861 msgid "Edit XML" msgstr "" -#: instances/views.py:792 -msgid "Enter the console password or select Generate" +#: instances/views.py:875 +#, python-brace-format +msgid "Set Quest Agent {status}" msgstr "" -#: instances/views.py:796 +#: instances/views.py:885 +msgid "Set Video Model" +msgstr "" + +#: instances/views.py:894 +msgid "Change network" +msgstr "" + +#: instances/views.py:907 +msgid "Network Device Config is changed. Please shutdown instance to activate." +msgstr "" + +#: instances/views.py:915 +msgid "Add network" +msgstr "" + +#: instances/views.py:929 +msgid "Delete network" +msgstr "" + +#: instances/views.py:945 +#, python-brace-format +msgid "Set Link State: {state}" +msgstr "" + +#: instances/views.py:964 +msgid "{qos_dir.capitalize()} QoS is set" +msgstr "" + +#: instances/views.py:968 networks/views.py:216 +msgid "{qos_dir.capitalize()} QoS is set. Network XML is changed." +msgstr "" + +#: instances/views.py:969 networks/views.py:217 +msgid "Stop and start network to activate new config" +msgstr "" + +#: instances/views.py:983 networks/views.py:233 +msgid "{qos_dir.capitalize()} QoS is deleted" +msgstr "" + +#: instances/views.py:987 networks/views.py:230 +msgid "{qos_dir.capitalize()} QoS is deleted. Network XML is changed. " +msgstr "" + +#: instances/views.py:988 networks/views.py:231 +msgid "Stop and start network to activate new config." +msgstr "" + +#: instances/views.py:1004 +msgid "Only one owner is allowed and the one already added" +msgstr "" + +#: instances/views.py:1009 +#, python-format +msgid "Added owner %(user)s" +msgstr "" + +#: instances/views.py:1020 +#, python-brace-format +msgid "Deleted owner {userinstance_id}" +msgstr "" + +#: instances/views.py:1052 +msgid "User '{quota_msg}' quota reached, cannot create '{clone_data['name']}'!" +msgstr "" + +#: instances/views.py:1055 +msgid "Instance '{clone_data['name']}' already exists!" +msgstr "" + +#: instances/views.py:1058 +msgid "Instance name '{clone_data['name']}' contains invalid characters!" +msgstr "" + +#: instances/views.py:1061 +msgid "Instance MAC '{clone_data['clone-net-mac-0']}' invalid format!" +msgstr "" + +#: instances/views.py:1071 +#, python-brace-format +msgid "Clone of '{instance.name}'" +msgstr "" + +#: instances/views.py:1104 msgid "" "Error setting console password. You should check that your instance have an " "graphic device." msgstr "" -#: instances/views.py:800 +#: instances/views.py:1107 msgid "Set VNC password" msgstr "" -#: instances/views.py:811 +#: instances/views.py:1115 msgid "Set VNC keymap" msgstr "" -#: instances/views.py:817 +#: instances/views.py:1120 msgid "Set VNC type" msgstr "" -#: instances/views.py:821 -msgid "Console type not supported" -msgstr "" - -#: instances/views.py:828 +#: instances/views.py:1125 msgid "Set VNC listen address" msgstr "" -#: instances/views.py:840 -#, python-brace-format -msgid "Set Quest Agent {status}" -msgstr "" - -#: instances/views.py:847 -msgid "Set Video Model" -msgstr "" - -#: instances/views.py:872 -msgid "Change network" -msgstr "" - -#: instances/views.py:885 -msgid "Network Device Config is changed. Please shutdown instance to activate." -msgstr "" - -#: instances/views.py:890 -msgid "Add network" -msgstr "" - -#: instances/views.py:900 -msgid "Delete network" -msgstr "" - -#: instances/views.py:912 -#, python-brace-format -msgid "Set Link State: {state}" -msgstr "" - -#: instances/views.py:928 -msgid "{qos_dir.capitalize()} QoS is set" -msgstr "" - -#: instances/views.py:931 networks/views.py:216 -msgid "{qos_dir.capitalize()} QoS is set. Network XML is changed." -msgstr "" - -#: instances/views.py:932 networks/views.py:217 -msgid "Stop and start network to activate new config" -msgstr "" - -#: instances/views.py:943 networks/views.py:233 -msgid "{qos_dir.capitalize()} QoS is deleted" -msgstr "" - -#: instances/views.py:946 networks/views.py:230 -msgid "{qos_dir.capitalize()} QoS is deleted. Network XML is changed. " -msgstr "" - -#: instances/views.py:947 networks/views.py:231 -msgid "Stop and start network to activate new config." -msgstr "" - -#: instances/views.py:959 -msgid "Only one owner is allowed and the one already added" -msgstr "" - -#: instances/views.py:964 -#, python-brace-format -msgid "Added owner {user_id}" -msgstr "" - -#: instances/views.py:972 -#, python-brace-format -msgid "Deleted owner {userinstance_id}" -msgstr "" - -#: instances/views.py:1001 -msgid "User '{quota_msg}' quota reached, cannot create '{clone_data['name']}'!" -msgstr "" - -#: instances/views.py:1004 -msgid "Instance '{clone_data['name']}' already exists!" -msgstr "" - -#: instances/views.py:1007 -msgid "Instance name '{clone_data['name']}' contains invalid characters!" -msgstr "" - -#: instances/views.py:1011 -msgid "Instance MAC '{clone_data['clone-net-mac-0']}' invalid format!" -msgstr "" - -#: instances/views.py:1027 -#, python-brace-format -msgid "Clone of '{instance.name}'" -msgstr "" - -#: instances/views.py:1046 +#: instances/views.py:1148 msgid "Edit options" msgstr "" -#: instances/views.py:1103 -msgid "Deleting due to multiple(Instance Name) records." -msgstr "" - -#: instances/views.py:1111 -msgid "Deleting due to multiple(UUID) records." -msgstr "" - -#: instances/views.py:1160 -#, python-brace-format -msgid "Problem occurred with host: {comp.name} - {status}" -msgstr "" - -#: instances/views.py:1218 +#: instances/views.py:1162 msgid "Send console.vv file" msgstr "" +#: instances/views.py:1214 instances/views.py:1307 +msgid "A virtual machine with this name already exists" +msgstr "" + +#: instances/views.py:1288 +msgid "You haven't defined any storage pools" +msgstr "" + +#: instances/views.py:1291 +msgid "You haven't defined any network pools" +msgstr "" + +#: instances/views.py:1310 +msgid "There is an instance with same name. Are you sure?" +msgstr "" + +#: instances/views.py:1313 +msgid "No Virtual Machine MAC has been entered" +msgstr "" + +#: instances/views.py:1337 +msgid "Image has already exist. Please check volumes or change instance name" +msgstr "" + +#: instances/views.py:1358 +msgid "First you need to create or select an image" +msgstr "" + +#: instances/views.py:1377 +msgid "Invalid cache mode" +msgstr "" + +#: instances/views.py:1414 +msgid "Instance is created" +msgstr "" + +#: instances/views.py:1433 +msgid "Flavor Created" +msgstr "" + +#: instances/views.py:1441 +msgid "Create Flavor" +msgstr "" + +#: instances/views.py:1452 +msgid "Flavor Updated" +msgstr "" + +#: instances/views.py:1460 +msgid "Update Flavor" +msgstr "" + +#: instances/views.py:1470 +msgid "Flavor Deleted" +msgstr "" + #: interfaces/forms.py:25 msgid "The IPv4 address must not contain any special characters" msgstr "" @@ -2845,6 +2898,17 @@ msgstr "" msgid "hotplug" msgstr "" +#: interfaces/templates/create_iface_block.html:44 +#: interfaces/templates/interface.html:77 +#: interfaces/templates/interfaces.html:62 +#: storages/templates/create_stg_block.html:35 +#: storages/templates/create_stg_block.html:64 +#: storages/templates/create_stg_block.html:93 +#: storages/templates/create_stg_block.html:158 +#: storages/templates/storages.html:64 +msgid "Type" +msgstr "" + #: interfaces/templates/create_iface_block.html:47 msgid "bridge" msgstr "" @@ -2923,12 +2987,12 @@ msgstr "" #: interfaces/templates/interface.html:56 #: interfaces/templates/interface.html:79 networks/templates/network.html:48 -#: storages/templates/storage.html:58 +#: storages/templates/storage.html:57 msgid "State" msgstr "" #: interfaces/templates/interface.html:63 networks/templates/network.html:55 -#: storages/templates/storage.html:66 +#: storages/templates/storage.html:65 msgid "Stop" msgstr "" @@ -2944,6 +3008,22 @@ msgstr "" msgid "Hypervisor doesn't have any Interfaces" msgstr "" +#: logs/models.py:6 +msgid "user" +msgstr "" + +#: logs/models.py:7 +msgid "instance" +msgstr "" + +#: logs/models.py:8 +msgid "message" +msgstr "" + +#: logs/models.py:9 +msgid "date" +msgstr "" + #: networks/forms.py:7 storages/forms.py:7 msgid "No pool name has been entered" msgstr "" @@ -2956,11 +3036,11 @@ msgstr "" msgid "No IPv6 subnet has been entered" msgstr "" -#: networks/forms.py:24 storages/forms.py:25 +#: networks/forms.py:24 storages/forms.py:22 msgid "The pool name must not contain any special characters" msgstr "" -#: networks/forms.py:26 storages/forms.py:27 +#: networks/forms.py:26 storages/forms.py:24 msgid "The pool name must not exceed 20 characters" msgstr "" @@ -3129,6 +3209,17 @@ msgstr "" msgid "IPv4 Fixed Addresses" msgstr "" +#: networks/templates/network.html:161 networks/templates/network.html:271 +#: nwfilters/templates/nwfilters.html:88 +msgid "Show" +msgstr "" + +#: networks/templates/network.html:169 networks/templates/network.html:279 +#: venv/lib/python3.6/site-packages/django/forms/widgets.py:395 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:377 +msgid "Clear" +msgstr "" + #: networks/templates/network.html:192 networks/templates/network.html:301 msgid "Edit entry" msgstr "" @@ -3310,7 +3401,7 @@ msgid "Private" msgstr "" #: secrets/templates/create_secret_block.html:36 -#: storages/templates/storage.html:56 +#: storages/templates/storage.html:55 msgid "Usage" msgstr "" @@ -3335,27 +3426,27 @@ msgstr "" msgid "Value" msgstr "" -#: storages/forms.py:10 storages/forms.py:39 +#: storages/forms.py:9 storages/forms.py:36 msgid "No path has been entered" msgstr "" -#: storages/forms.py:36 +#: storages/forms.py:33 msgid "The target must not contain any special characters" msgstr "" -#: storages/forms.py:48 +#: storages/forms.py:45 msgid "No device or path has been entered" msgstr "" -#: storages/forms.py:50 +#: storages/forms.py:47 msgid "The disk source must not contain any special characters" msgstr "" -#: storages/forms.py:66 storages/forms.py:85 +#: storages/forms.py:61 storages/forms.py:76 msgid "The image name must not contain any special characters" msgstr "" -#: storages/forms.py:68 storages/forms.py:87 +#: storages/forms.py:78 msgid "The image name must not exceed 120 characters" msgstr "" @@ -3424,66 +3515,63 @@ msgstr "" msgid "Local Path" msgstr "" -#: storages/templates/create_stg_vol_block.html:14 +#: storages/templates/create_stg_vol_block.html:15 msgid "Upload ISO Image" msgstr "" -#: storages/templates/create_stg_vol_block.html:28 +#: storages/templates/create_stg_vol_block.html:29 msgid "Upload" msgstr "" -#: storages/templates/create_stg_vol_block.html:45 +#: storages/templates/create_stg_vol_block.html:46 msgid "Add New Volume" msgstr "" -#: storages/templates/create_stg_vol_block.html:60 -#: storages/templates/storage.html:144 -msgid "qcow2" -msgstr "" - -#: storages/templates/create_stg_vol_block.html:61 -#: storages/templates/storage.html:143 -msgid "qcow" -msgstr "" - -#: storages/templates/create_stg_vol_block.html:62 -#: storages/templates/storage.html:142 -msgid "raw" -msgstr "" - -#: storages/templates/storage.html:46 +#: storages/templates/storage.html:45 msgid "Pool name" msgstr "" -#: storages/templates/storage.html:48 +#: storages/templates/storage.html:47 msgid "Pool type" msgstr "" -#: storages/templates/storage.html:50 +#: storages/templates/storage.html:49 msgid "Pool path" msgstr "" -#: storages/templates/storage.html:52 +#: storages/templates/storage.html:51 msgid "Pool status" msgstr "" -#: storages/templates/storage.html:87 storages/templates/storages.html:68 +#: storages/templates/storage.html:86 storages/templates/storages.html:68 msgid "Volumes" msgstr "" -#: storages/templates/storage.html:99 +#: storages/templates/storage.html:98 msgid "Allocated" msgstr "" -#: storages/templates/storage.html:120 +#: storages/templates/storage.html:119 msgid "Clone image" msgstr "" -#: storages/templates/storage.html:133 +#: storages/templates/storage.html:132 msgid "Convert" msgstr "" -#: storages/templates/storage.html:189 +#: storages/templates/storage.html:141 +msgid "raw" +msgstr "" + +#: storages/templates/storage.html:142 +msgid "qcow" +msgstr "" + +#: storages/templates/storage.html:143 +msgid "qcow2" +msgstr "" + +#: storages/templates/storage.html:188 msgid "Hypervisor doesn't have any Volumes" msgstr "" @@ -3491,44 +3579,44 @@ msgstr "" msgid "Hypervisor doesn't have any Storages" msgstr "" -#: storages/views.py:38 +#: storages/views.py:40 msgid "Pool name already use" msgstr "" -#: storages/views.py:42 +#: storages/views.py:44 msgid "You need create secret for pool" msgstr "" -#: storages/views.py:45 +#: storages/views.py:47 msgid "You need input all fields for creating ceph pool" msgstr "" -#: storages/views.py:153 -#, python-brace-format -msgid "Image file {name} is created successfully" -msgstr "" - -#: storages/views.py:165 +#: storages/views.py:129 #, python-brace-format msgid "Volume: {volname} is deleted." msgstr "" -#: storages/views.py:171 +#: storages/views.py:134 msgid "ISO image already exist" msgstr "" -#: storages/views.py:175 +#: storages/views.py:138 msgid "ISO: {request.FILES['file']} is uploaded." msgstr "" -#: storages/views.py:184 +#: storages/views.py:147 msgid "Name of volume already in use" msgstr "" -#: storages/views.py:195 +#: storages/views.py:157 msgid "{data['image']} image cloned as {name} successfully" msgstr "" +#: storages/views.py:196 +#, python-brace-format +msgid "Image file {name} is created successfully" +msgstr "" + #: templates/403.html:3 msgid "403" msgstr "" @@ -3575,6 +3663,10 @@ msgid "" "to complete you request." msgstr "" +#: templates/common/confirm_delete.html:12 +msgid "Are you sure you want to delete" +msgstr "" + #: templates/errors_block.html:8 msgid "Error" msgstr "" @@ -3598,57 +3690,71 @@ msgid "close" msgstr "" #: venv/lib/python3.6/site-packages/django/contrib/messages/apps.py:7 +#: venv2/lib/python2.7/site-packages/django/contrib/messages/apps.py:7 msgid "Messages" msgstr "" #: venv/lib/python3.6/site-packages/django/contrib/sitemaps/apps.py:7 +#: venv2/lib/python2.7/site-packages/django/contrib/sitemaps/apps.py:7 msgid "Site Maps" msgstr "" #: venv/lib/python3.6/site-packages/django/contrib/staticfiles/apps.py:9 +#: venv2/lib/python2.7/site-packages/django/contrib/staticfiles/apps.py:7 msgid "Static Files" msgstr "" #: venv/lib/python3.6/site-packages/django/contrib/syndication/apps.py:7 +#: venv2/lib/python2.7/site-packages/django/contrib/syndication/apps.py:7 msgid "Syndication" msgstr "" #: venv/lib/python3.6/site-packages/django/core/paginator.py:45 +#: venv2/lib/python2.7/site-packages/django/core/paginator.py:43 msgid "That page number is not an integer" msgstr "" #: venv/lib/python3.6/site-packages/django/core/paginator.py:47 +#: venv2/lib/python2.7/site-packages/django/core/paginator.py:45 msgid "That page number is less than 1" msgstr "" #: venv/lib/python3.6/site-packages/django/core/paginator.py:52 +#: venv2/lib/python2.7/site-packages/django/core/paginator.py:50 msgid "That page contains no results" msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:31 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:34 msgid "Enter a valid value." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:102 #: venv/lib/python3.6/site-packages/django/forms/fields.py:658 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:107 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:671 msgid "Enter a valid URL." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:154 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:160 msgid "Enter a valid integer." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:165 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:171 msgid "Enter a valid email address." msgstr "" #. Translators: "letters" means latin letters: a-z and A-Z. #: venv/lib/python3.6/site-packages/django/core/validators.py:239 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:245 msgid "" "Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:246 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:252 msgid "" "Enter a valid 'slug' consisting of Unicode letters, numbers, underscores, or " "hyphens." @@ -3656,39 +3762,51 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:255 #: venv/lib/python3.6/site-packages/django/core/validators.py:275 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:257 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:277 msgid "Enter a valid IPv4 address." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:260 #: venv/lib/python3.6/site-packages/django/core/validators.py:276 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:262 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:278 msgid "Enter a valid IPv6 address." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:270 #: venv/lib/python3.6/site-packages/django/core/validators.py:274 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:272 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:276 msgid "Enter a valid IPv4 or IPv6 address." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:304 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:308 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1131 msgid "Enter only digits separated by commas." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:310 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:314 #, python-format msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:342 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:345 #, python-format msgid "Ensure this value is less than or equal to %(limit_value)s." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:351 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:354 #, python-format msgid "Ensure this value is greater than or equal to %(limit_value)s." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:361 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:364 #, python-format msgid "" "Ensure this value has at least %(limit_value)d character (it has " @@ -3700,6 +3818,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:376 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:379 #, python-format msgid "" "Ensure this value has at most %(limit_value)d character (it has " @@ -3713,10 +3832,13 @@ msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:395 #: venv/lib/python3.6/site-packages/django/forms/fields.py:290 #: venv/lib/python3.6/site-packages/django/forms/fields.py:325 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:303 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:340 msgid "Enter a number." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:397 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:399 #, python-format msgid "Ensure that there are no more than %(max)s digit in total." msgid_plural "Ensure that there are no more than %(max)s digits in total." @@ -3724,6 +3846,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:402 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:404 #, python-format msgid "Ensure that there are no more than %(max)s decimal place." msgid_plural "Ensure that there are no more than %(max)s decimal places." @@ -3731,6 +3854,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:407 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:409 #, python-format msgid "" "Ensure that there are no more than %(max)s digit before the decimal point." @@ -3740,6 +3864,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:469 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:463 #, python-format msgid "" "File extension '%(extension)s' is not allowed. Allowed extensions are: " @@ -3752,28 +3877,35 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/base.py:1162 #: venv/lib/python3.6/site-packages/django/forms/models.py:756 +#: venv2/lib/python2.7/site-packages/django/db/models/base.py:1209 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:749 msgid "and" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/base.py:1164 +#: venv2/lib/python2.7/site-packages/django/db/models/base.py:1211 #, python-format msgid "%(model_name)s with this %(field_labels)s already exists." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:104 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:116 #, python-format msgid "Value %(value)r is not a valid choice." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:105 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:117 msgid "This field cannot be null." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:106 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:118 msgid "This field cannot be blank." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:107 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:119 #, python-format msgid "%(model_name)s with this %(field_label)s already exists." msgstr "" @@ -3781,33 +3913,42 @@ msgstr "" #. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. #. Eg: "Title must be unique for pub_date year" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:111 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:123 #, python-format msgid "" "%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:128 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:140 #, python-format msgid "Field of type: %(field_type)s" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:905 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1772 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:901 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1809 msgid "Integer" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:909 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1770 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:905 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1807 #, python-format msgid "'%(value)s' value must be an integer." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:984 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1850 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:978 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1878 msgid "Big (8 byte) integer" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:996 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:990 #, python-format msgid "'%(value)s' value must be either True or False." msgstr "" @@ -3818,19 +3959,23 @@ msgid "'%(value)s' value must be either True, False, or None." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:999 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:992 msgid "Boolean (Either True or False)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1040 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1058 #, python-format msgid "String (up to %(max_length)s)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1104 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1115 msgid "Comma-separated integers" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1153 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1172 #, python-format msgid "" "'%(value)s' value has an invalid date format. It must be in YYYY-MM-DD " @@ -3839,6 +3984,8 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1155 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1298 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1174 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1319 #, python-format msgid "" "'%(value)s' value has the correct format (YYYY-MM-DD) but it is an invalid " @@ -3846,10 +3993,12 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1158 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1177 msgid "Date (without time)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1296 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1317 #, python-format msgid "" "'%(value)s' value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." @@ -3857,6 +4006,7 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1300 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1321 #, python-format msgid "" "'%(value)s' value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" @@ -3864,19 +4014,23 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1304 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1325 msgid "Date (with time)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1452 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1475 #, python-format msgid "'%(value)s' value must be a decimal number." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1454 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1477 msgid "Decimal number" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1593 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1628 #, python-format msgid "" "'%(value)s' value has an invalid format. It must be in [DD] [HH:[MM:]]ss[." @@ -3884,66 +4038,81 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1596 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1631 msgid "Duration" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1646 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1683 msgid "Email address" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1669 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1707 msgid "File path" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1735 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1773 #, python-format msgid "'%(value)s' value must be a float." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1737 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1775 msgid "Floating point number" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1866 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1893 msgid "IPv4 address" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1897 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1924 msgid "IP address" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1977 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1978 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2006 #, python-format msgid "'%(value)s' value must be either None, True or False." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1980 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2008 msgid "Boolean (Either True, False or None)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2015 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2071 msgid "Positive integer" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2028 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2083 msgid "Positive small integer" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2042 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2096 #, python-format msgid "Slug (up to %(max_length)s)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2074 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2130 msgid "Small integer" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2081 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2137 msgid "Text" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2109 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2163 #, python-format msgid "" "'%(value)s' value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " @@ -3951,6 +4120,7 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2111 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2165 #, python-format msgid "" "'%(value)s' value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " @@ -3958,18 +4128,22 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2114 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2168 msgid "Time" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2240 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2296 msgid "URL" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2262 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2319 msgid "Raw binary data" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2312 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2366 #, python-format msgid "'%(value)s' is not a valid UUID." msgstr "" @@ -3979,65 +4153,81 @@ msgid "Universally unique identifier" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/files.py:221 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/files.py:228 msgid "File" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:778 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:788 #, python-format msgid "%(model)s instance with %(field)s %(value)r does not exist." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:780 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:790 msgid "Foreign Key (type determined by related field)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:1007 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:1029 msgid "One-to-one relationship" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:1057 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:1104 #, python-format msgid "%(from)s-%(to)s relationship" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:1058 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:1105 #, python-format msgid "%(from)s-%(to)s relationships" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:1100 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:1147 msgid "Many-to-many relationship" msgstr "" #. Translators: If found as last label character, these punctuation #. characters will prevent the default label_suffix to be appended to the label #: venv/lib/python3.6/site-packages/django/forms/boundfield.py:146 +#: venv2/lib/python2.7/site-packages/django/forms/boundfield.py:181 msgid ":?.!" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:53 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:56 msgid "This field is required." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:245 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:258 msgid "Enter a whole number." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:396 #: venv/lib/python3.6/site-packages/django/forms/fields.py:1126 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:418 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:1149 msgid "Enter a valid date." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:420 #: venv/lib/python3.6/site-packages/django/forms/fields.py:1127 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:442 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:1150 msgid "Enter a valid time." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:442 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:464 msgid "Enter a valid date/time." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:471 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:493 msgid "Enter a valid duration." msgstr "" @@ -4047,18 +4237,22 @@ msgid "The number of days must be between {min_days} and {max_days}." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:532 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:547 msgid "No file was submitted. Check the encoding type on the form." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:533 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:548 msgid "No file was submitted." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:534 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:549 msgid "The submitted file is empty." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:536 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:551 #, python-format msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." msgid_plural "" @@ -4067,10 +4261,12 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:539 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:554 msgid "Please either submit a file or check the clear checkbox, not both." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:600 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:619 msgid "" "Upload a valid image. The file you uploaded was either not an image or a " "corrupted image." @@ -4079,6 +4275,9 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:762 #: venv/lib/python3.6/site-packages/django/forms/fields.py:852 #: venv/lib/python3.6/site-packages/django/forms/models.py:1270 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:776 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:872 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1265 #, python-format msgid "Select a valid choice. %(value)s is not one of the available choices." msgstr "" @@ -4086,32 +4285,41 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:853 #: venv/lib/python3.6/site-packages/django/forms/fields.py:968 #: venv/lib/python3.6/site-packages/django/forms/models.py:1269 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:873 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:990 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1264 msgid "Enter a list of values." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:969 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:991 msgid "Enter a complete value." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:1185 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:1208 msgid "Enter a valid UUID." msgstr "" #. Translators: This is the default suffix added to form field labels #: venv/lib/python3.6/site-packages/django/forms/forms.py:86 +#: venv2/lib/python2.7/site-packages/django/forms/forms.py:87 msgid ":" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/forms.py:212 +#: venv2/lib/python2.7/site-packages/django/forms/forms.py:213 #, python-format msgid "(Hidden field %(name)s) %(error)s" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/formsets.py:91 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:97 msgid "ManagementForm data is missing or has been tampered with" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/formsets.py:338 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:355 #, python-format msgid "Please submit %d or fewer forms." msgid_plural "Please submit %d or fewer forms." @@ -4119,6 +4327,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/forms/formsets.py:345 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:362 #, python-format msgid "Please submit %d or more forms." msgid_plural "Please submit %d or more forms." @@ -4127,20 +4336,25 @@ msgstr[1] "" #: venv/lib/python3.6/site-packages/django/forms/formsets.py:371 #: venv/lib/python3.6/site-packages/django/forms/formsets.py:373 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:390 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:392 msgid "Order" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:751 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:744 #, python-format msgid "Please correct the duplicate data for %(field)s." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:755 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:748 #, python-format msgid "Please correct the duplicate data for %(field)s, which must be unique." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:761 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:754 #, python-format msgid "" "Please correct the duplicate data for %(field_name)s which must be unique " @@ -4148,6 +4362,7 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:770 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:763 msgid "Please correct the duplicate values below." msgstr "" @@ -4156,6 +4371,7 @@ msgid "The inline value did not match the parent instance." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:1158 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1154 msgid "Select a valid choice. That choice is not one of the available choices." msgstr "" @@ -4165,6 +4381,7 @@ msgid "\"%(pk)s\" is not a valid value." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/utils.py:162 +#: venv2/lib/python2.7/site-packages/django/forms/utils.py:172 #, python-format msgid "" "%(datetime)s couldn't be interpreted in time zone %(current_timezone)s; it " @@ -4172,23 +4389,29 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/widgets.py:396 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:378 msgid "Currently" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/widgets.py:710 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:704 msgid "Yes" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/widgets.py:711 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:705 msgid "No" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:788 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:851 msgid "yes,no,maybe" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:817 #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:834 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:880 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:897 #, python-format msgid "%(size)d byte" msgid_plural "%(size)d bytes" @@ -4196,327 +4419,401 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:836 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:899 #, python-format msgid "%s KB" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:838 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:901 #, python-format msgid "%s MB" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:840 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:903 #, python-format msgid "%s GB" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:842 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:905 #, python-format msgid "%s TB" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:844 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:907 #, python-format msgid "%s PB" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:62 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:66 msgid "p.m." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:63 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:67 msgid "a.m." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:68 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:72 msgid "PM" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:69 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:73 msgid "AM" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:150 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:158 msgid "midnight" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:152 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:160 msgid "noon" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Monday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Tuesday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Wednesday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Thursday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Friday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:7 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:7 msgid "Saturday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:7 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:7 msgid "Sunday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Mon" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Tue" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Wed" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Thu" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Fri" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:11 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:11 msgid "Sat" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:11 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:11 msgid "Sun" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "January" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "February" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "March" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "April" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "May" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "June" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "July" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "August" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "September" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "October" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "November" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:16 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:20 msgid "December" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "jan" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "feb" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "mar" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "apr" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "may" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "jun" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "jul" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "aug" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "sep" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "oct" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "nov" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "dec" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:23 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:31 msgctxt "abbrev. month" msgid "Jan." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:24 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:32 msgctxt "abbrev. month" msgid "Feb." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:25 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:33 msgctxt "abbrev. month" msgid "March" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:26 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:34 msgctxt "abbrev. month" msgid "April" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:27 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:35 msgctxt "abbrev. month" msgid "May" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:28 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:36 msgctxt "abbrev. month" msgid "June" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:29 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:37 msgctxt "abbrev. month" msgid "July" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:30 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:38 msgctxt "abbrev. month" msgid "Aug." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:31 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:39 msgctxt "abbrev. month" msgid "Sept." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:32 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:40 msgctxt "abbrev. month" msgid "Oct." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:33 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:41 msgctxt "abbrev. month" msgid "Nov." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:34 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:42 msgctxt "abbrev. month" msgid "Dec." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:37 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:45 msgctxt "alt. month" msgid "January" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:38 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:46 msgctxt "alt. month" msgid "February" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:39 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:47 msgctxt "alt. month" msgid "March" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:40 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:48 msgctxt "alt. month" msgid "April" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:41 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:49 msgctxt "alt. month" msgid "May" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:42 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:50 msgctxt "alt. month" msgid "June" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:43 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:51 msgctxt "alt. month" msgid "July" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:44 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:52 msgctxt "alt. month" msgid "August" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:45 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:53 msgctxt "alt. month" msgid "September" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:46 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:54 msgctxt "alt. month" msgid "October" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:47 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:55 msgctxt "alt. month" msgid "November" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:48 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:56 msgctxt "alt. month" msgid "December" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/ipv6.py:8 +#: venv2/lib/python2.7/site-packages/django/utils/ipv6.py:12 msgid "This is not a valid IPv6 address." msgstr "" @@ -4527,16 +4824,20 @@ msgid "%(truncated_text)s…" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/text.py:233 +#: venv2/lib/python2.7/site-packages/django/utils/text.py:251 msgid "or" msgstr "" #. Translators: This string is used as a separator between list elements #: venv/lib/python3.6/site-packages/django/utils/text.py:252 #: venv/lib/python3.6/site-packages/django/utils/timesince.py:83 +#: venv2/lib/python2.7/site-packages/django/utils/text.py:270 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:71 msgid ", " msgstr "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:9 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:11 #, python-format msgid "%d year" msgid_plural "%d years" @@ -4544,6 +4845,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:12 #, python-format msgid "%d month" msgid_plural "%d months" @@ -4551,6 +4853,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:11 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:13 #, python-format msgid "%d week" msgid_plural "%d weeks" @@ -4558,6 +4861,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:12 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:14 #, python-format msgid "%d day" msgid_plural "%d days" @@ -4565,6 +4869,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:13 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:15 #, python-format msgid "%d hour" msgid_plural "%d hours" @@ -4572,6 +4877,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:16 #, python-format msgid "%d minute" msgid_plural "%d minutes" @@ -4579,18 +4885,22 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:72 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:60 msgid "0 minutes" msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:110 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:109 msgid "Forbidden" msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:111 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:110 msgid "CSRF verification failed. Request aborted." msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:115 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:114 msgid "" "You are seeing this message because this HTTPS site requires a 'Referer " "header' to be sent by your Web browser, but none was sent. This header is " @@ -4599,6 +4909,7 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:120 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:119 msgid "" "If you have configured your browser to disable 'Referer' headers, please re-" "enable them, at least for this site, or for HTTPS connections, or for 'same-" @@ -4615,6 +4926,7 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:132 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:124 msgid "" "You are seeing this message because this site requires a CSRF cookie when " "submitting forms. This cookie is required for security reasons, to ensure " @@ -4622,44 +4934,56 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:137 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:129 msgid "" "If you have configured your browser to disable cookies, please re-enable " "them, at least for this site, or for 'same-origin' requests." msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:142 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:134 msgid "More information is available with DEBUG=True." msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:41 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:48 msgid "No year specified" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:61 #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:111 #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:208 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:72 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:132 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:249 msgid "Date out of range" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:90 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:107 msgid "No month specified" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:142 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:169 msgid "No day specified" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:188 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:225 msgid "No week specified" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:338 #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:367 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:387 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:415 #, python-format msgid "No %(verbose_name_plural)s available" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:589 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:669 #, python-format msgid "" "Future %(verbose_name_plural)s not available because %(class_name)s." @@ -4667,39 +4991,47 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:623 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:703 #, python-format msgid "Invalid date string '%(datestr)s' given format '%(format)s'" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/detail.py:54 +#: venv2/lib/python2.7/site-packages/django/views/generic/detail.py:55 #, python-format msgid "No %(verbose_name)s found matching the query" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/list.py:67 +#: venv2/lib/python2.7/site-packages/django/views/generic/list.py:77 msgid "Page is not 'last', nor can it be converted to an int." msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/list.py:72 +#: venv2/lib/python2.7/site-packages/django/views/generic/list.py:82 #, python-format msgid "Invalid page (%(page_number)s): %(message)s" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/list.py:154 +#: venv2/lib/python2.7/site-packages/django/views/generic/list.py:172 #, python-format msgid "Empty list and '%(class_name)s.allow_empty' is False." msgstr "" #: venv/lib/python3.6/site-packages/django/views/static.py:40 +#: venv2/lib/python2.7/site-packages/django/views/static.py:44 msgid "Directory indexes are not allowed here." msgstr "" #: venv/lib/python3.6/site-packages/django/views/static.py:42 +#: venv2/lib/python2.7/site-packages/django/views/static.py:46 #, python-format msgid "\"%(path)s\" does not exist" msgstr "" #: venv/lib/python3.6/site-packages/django/views/static.py:80 +#: venv2/lib/python2.7/site-packages/django/views/static.py:86 #, python-format msgid "Index of %(directory)s" msgstr "" @@ -4751,3 +5083,271 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/views/templates/default_urlconf.html:408 msgid "Connect, get help, or contribute" msgstr "" + +#: venv/lib/python3.6/site-packages/django_icons/renderers/image.py:217 +msgid "Icon of {}" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:58 +msgid "Please enter your OTP token." +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:59 +#, python-brace-format +msgid "Error generating challenge: {0}" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:60 +msgid "The selected OTP device is not interactive" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:61 +#, python-brace-format +msgid "OTP Challenge: {0}" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:62 +msgid "Invalid token. Please make sure you have entered it correctly." +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:64 +#, python-format +msgid "" +"Verification temporarily disabled because of %(failure_count)d failed " +"attempt, please try again soon." +msgid_plural "" +"Verification temporarily disabled because of %(failure_count)d failed " +"attempts, please try again soon." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:67 +msgid "Verification of the token is currently disabled" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:36 +msgid "Please correct the error below." +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:36 +msgid "Please correct the errors below." +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:52 +#, python-format +msgid "" +"You are authenticated as %(username)s, but are not authorized to access this " +"page. Would you like to login to a different account?" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:72 +msgid "OTP Device:" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:77 +msgid "OTP Token:" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:82 +msgid "Forgotten your password or username?" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:86 +msgid "Log in" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:88 +msgid "Get OTP Challenge" +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1093 +msgid "The inline foreign key did not match the parent instance primary key." +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1267 +#, python-format +msgid "\"%(pk)s\" is not a valid value for a primary key." +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/utils/text.py:81 +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s..." +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:520 +msgid "Welcome to Django" +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:521 +msgid "It worked!" +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:522 +msgid "Congratulations on your first Django-powered page." +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:524 +msgid "" +"Next, start your first app by running python manage.py startapp " +"[app_label]." +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:527 +msgid "" +"You're seeing this message because you have DEBUG = True in " +"your Django settings file and you haven't configured any URLs. Get to work!" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:313 +msgid "usage: " +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:821 +msgid ".__call__() not defined" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1105 +#, python-format +msgid "unknown parser %r (choices: %s)" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1146 +#, python-format +msgid "argument \"-\" with mode %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1349 +#, python-format +msgid "cannot merge actions - two groups are named %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1387 +msgid "'required' is an invalid argument for positionals" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1407 +#, python-format +msgid "invalid option string %r: must start with a character %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1428 +#, python-format +msgid "dest= is required for options like %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1445 +#, python-format +msgid "invalid conflict_resolution value: %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1463 +#, python-format +msgid "conflicting option string(s): %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1526 +msgid "mutually exclusive arguments must be optional" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1596 +msgid "positional arguments" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1597 +msgid "optional arguments" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1615 +msgid "show this help message and exit" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1621 +msgid "show program's version number and exit" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1653 +msgid "cannot have multiple subparser arguments" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1705 +#, python-format +msgid "unrecognized arguments: %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1802 +#, python-format +msgid "not allowed with argument %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1848 +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1862 +#, python-format +msgid "ignored explicit argument %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1952 +msgid "too few arguments" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1959 +#, python-format +msgid "argument %s is required" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1973 +#, python-format +msgid "one of the arguments %s is required" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2019 +msgid "expected one argument" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2020 +msgid "expected at most one argument" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2021 +msgid "expected at least one argument" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2023 +#, python-format +msgid "expected %s argument(s)" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2080 +#, python-format +msgid "ambiguous option: %s could match %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2142 +#, python-format +msgid "unexpected option string: %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2243 +#, python-format +msgid "%r is not callable" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2259 +#, python-format +msgid "invalid %s value: %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2269 +#, python-format +msgid "invalid choice: %r (choose from %s)" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2362 +#, python-format +msgid "%s: error: %s\n" +msgstr "" + +#: webvirtcloud/middleware.py:21 +#, python-format +msgid "libvirt Error - %(exception)s" +msgstr "" diff --git a/locale/fr/LC_MESSAGES/django.po b/locale/fr/LC_MESSAGES/django.po index 6690c2e..3414395 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-12 06:11+0000\n" +"POT-Creation-Date: 2020-07-20 09:29+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,228 +18,181 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: accounts/forms.py:10 -msgid "No username has been entered" +#: accounts/forms.py:24 +msgid "Instance owned by another user" msgstr "" -#: accounts/forms.py:13 -msgid "No password has been entered" +#: accounts/models.py:24 +#, python-format +msgid "Instance \"%(inst)s\" of user %(user)s" msgstr "" -#: accounts/forms.py:19 create/forms.py:23 -msgid "The flavor name must not contain any special characters" -msgstr "" - -#: accounts/forms.py:21 create/forms.py:25 -msgid "The flavor name must not exceed 20 characters" -msgstr "" - -#: accounts/forms.py:26 create/forms.py:30 -msgid "Flavor name is already use" +#: accounts/models.py:32 +msgid "key name" msgstr "" #: accounts/models.py:33 +msgid "public key" +msgstr "" + +#: accounts/models.py:42 +msgid "max instances" +msgstr "" + +#: accounts/models.py:44 accounts/models.py:51 accounts/models.py:57 +#: accounts/models.py:63 msgid "-1 for unlimited. Any integer value" msgstr "" -#: accounts/models.py:85 +#: accounts/models.py:49 +msgid "max CPUs" +msgstr "" + +#: accounts/models.py:55 +msgid "max memory" +msgstr "" + +#: accounts/models.py:61 +msgid "max disk size" +msgstr "" + +#: accounts/models.py:77 msgid "Can change password" msgstr "" -#: accounts/templates/account.html:3 admin/templates/admin/common/form.html:6 -#: admin/templates/admin/logs.html:32 admin/templates/admin/user_form.html:6 -#: instances/templates/add_instance_owner_block.html:18 -#: instances/templates/allinstances_index_grouped.html:7 -#: instances/templates/allinstances_index_nongrouped.html:6 -#: instances/templates/instance.html:1644 instances/templates/instances.html:71 -msgid "User" +#: accounts/templates/account.html:4 accounts/templates/account.html:12 +msgid "User Profile" msgstr "" -#: accounts/templates/account.html:23 accounts/templates/profile.html:98 -msgid "Key name" +#: accounts/templates/account.html:21 +#: computes/templates/computes/instances.html:5 +#: computes/templates/computes/instances.html:32 +#: computes/templates/overview.html:16 instances/templates/allinstances.html:5 +#: instances/templates/allinstances.html:9 +#: instances/templates/bottom_bar.html:17 +#: interfaces/templates/interface.html:14 +#: interfaces/templates/interfaces.html:17 networks/templates/network.html:16 +#: networks/templates/networks.html:20 nwfilters/templates/nwfilter.html:15 +#: nwfilters/templates/nwfilters.html:24 secrets/templates/secrets.html:20 +#: storages/templates/storage.html:20 storages/templates/storages.html:20 +#: templates/navbar.html:14 +msgid "Instances" msgstr "" -#: accounts/templates/account.html:24 accounts/templates/profile.html:104 -msgid "Public key" +#: accounts/templates/account.html:24 +msgid "Public Keys" msgstr "" -#: accounts/templates/account.html:47 accounts/templates/accounts-list.html:25 -#: accounts/templates/accounts.html:21 admin/templates/admin/group_list.html:24 -#: admin/templates/admin/logs.html:21 admin/templates/admin/user_list.html:25 -#: computes/templates/computes.html:241 -#: create/templates/create_instance_w2.html:70 -#: instances/templates/allinstances.html:33 -#: instances/templates/allinstances.html:49 -#: instances/templates/instances.html:61 -#: interfaces/templates/interfaces.html:47 networks/templates/networks.html:50 -#: nwfilters/templates/nwfilters.html:138 secrets/templates/secrets.html:50 -#: storages/templates/storage.html:189 storages/templates/storages.html:50 -msgid "Warning" -msgstr "" - -#: accounts/templates/account.html:47 -msgid "User doesn't have any Instance" -msgstr "" - -#: accounts/templates/account.html:56 -#: accounts/templates/create_user_inst_block.html:18 -#: admin/templates/admin/logs.html:33 instances/templates/instance.html:4 +#: accounts/templates/account.html:34 admin/templates/admin/logs.html:34 +#: instances/templates/instance.html:4 msgid "Instance" msgstr "" -#: accounts/templates/account.html:57 accounts/templates/account.html:88 +#: accounts/templates/account.html:35 msgid "VNC" msgstr "" -#: accounts/templates/account.html:58 accounts/templates/account.html:97 -#: instances/templates/instance.html:88 instances/templates/instance.html:412 -#: instances/templates/instance.html:414 instances/templates/instance.html:441 -#: instances/templates/instance.html:476 instances/templates/instance.html:480 -#: instances/templates/instance.html:497 instances/templates/instance.html:499 -#: instances/templates/instance.html:504 +#: accounts/templates/account.html:36 instances/templates/instance.html:87 +#: instances/templates/instances/resize_tab.html:56 +#: instances/templates/instances/resize_tab.html:58 +#: instances/templates/instances/resize_tab.html:85 +#: instances/templates/instances/resize_tab.html:121 +#: instances/templates/instances/resize_tab.html:125 +#: instances/templates/instances/resize_tab.html:151 +#: instances/templates/instances/resize_tab.html:153 +#: instances/templates/instances/resize_tab.html:158 msgid "Resize" msgstr "" -#: accounts/templates/account.html:59 accounts/templates/account.html:106 -#: accounts/templates/account.html:127 +#: accounts/templates/account.html:37 accounts/templates/account.html:55 #: accounts/templates/accounts-list.html:133 -#: accounts/templates/accounts.html:126 accounts/templates/profile.html:84 -#: admin/templates/admin/common/confirm_delete.html:6 -#: admin/templates/admin/common/confirm_delete.html:16 +#: accounts/templates/accounts.html:126 accounts/templates/profile.html:60 #: admin/templates/admin/common/list.html:22 #: admin/templates/admin/group_list.html:47 -#: admin/templates/admin/user_list.html:67 computes/templates/computes.html:98 -#: computes/templates/computes.html:142 computes/templates/computes.html:190 -#: computes/templates/computes.html:220 instances/templates/instance.html:873 -#: instances/templates/instance.html:880 interfaces/templates/interface.html:61 -#: networks/templates/network.html:53 nwfilters/templates/nwfilter.html:114 -#: nwfilters/templates/nwfilter.html:154 nwfilters/templates/nwfilters.html:123 -#: secrets/templates/secrets.html:77 storages/templates/storage.html:63 -#: storages/templates/storage.html:176 +#: admin/templates/admin/user_list.html:67 +#: computes/templates/computes/list.html:55 +#: instances/templates/instances/settings_tab.html:310 +#: instances/templates/instances/settings_tab.html:314 +#: interfaces/templates/interface.html:61 networks/templates/network.html:53 +#: nwfilters/templates/nwfilter.html:114 nwfilters/templates/nwfilter.html:154 +#: nwfilters/templates/nwfilters.html:123 secrets/templates/secrets.html:77 +#: storages/templates/storage.html:62 storages/templates/storage.html:175 +#: templates/common/confirm_delete.html:6 +#: templates/common/confirm_delete.html:16 #: venv/lib/python3.6/site-packages/django/forms/formsets.py:375 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:394 msgid "Delete" msgstr "" -#: accounts/templates/account.html:60 -#: create/templates/create_instance_w2.html:85 -#: instances/templates/instance.html:556 instances/templates/instance.html:831 +#: accounts/templates/account.html:38 +#: instances/templates/create_instance_w2.html:86 +#: instances/templates/instances/settings_tab.html:239 +#: instances/templates/instances/snapshots_tab.html:49 #: nwfilters/templates/nwfilter.html:104 nwfilters/templates/nwfilter.html:138 #: nwfilters/templates/nwfilters.html:60 secrets/templates/secrets.html:62 -#: storages/templates/storage.html:102 +#: storages/templates/storage.html:101 msgid "Action" msgstr "" -#: accounts/templates/account.html:81 -msgid "Edit privilegies for" +#: accounts/templates/account.html:50 +msgid "edit" msgstr "" -#: accounts/templates/account.html:91 accounts/templates/account.html:100 -#: accounts/templates/account.html:109 -msgid "False" +#: accounts/templates/account.html:68 accounts/templates/profile.html:74 +msgid "Key name" msgstr "" -#: accounts/templates/account.html:116 -#: accounts/templates/accounts-list.html:145 -#: accounts/templates/accounts.html:138 -#: accounts/templates/create_user_block.html:31 -#: accounts/templates/create_user_inst_block.html:29 -#: computes/templates/computes.html:101 computes/templates/computes.html:145 -#: computes/templates/computes.html:193 computes/templates/computes.html:223 -#: create/templates/create_flav_block.html:51 -#: create/templates/create_instance_w2.html:273 -#: instances/templates/add_instance_network_block.html:49 -#: instances/templates/add_instance_owner_block.html:29 -#: instances/templates/add_instance_volume.html:89 -#: instances/templates/add_instance_volume.html:144 -#: instances/templates/create_inst_block.html:34 -#: instances/templates/edit_instance_volume.html:123 -#: instances/templates/instance.html:993 -#: interfaces/templates/create_iface_block.html:135 -#: networks/templates/add_network_qos.html:50 -#: networks/templates/create_net_block.html:84 -#: networks/templates/modify_ipv4_fixed_address.html:44 -#: networks/templates/modify_ipv6_fixed_address.html:44 -#: nwfilters/templates/add_nwf_rule.html:25 -#: nwfilters/templates/create_nwfilter_block.html:23 -#: nwfilters/templates/nwfilters.html:83 nwfilters/templates/nwfilters.html:111 -#: secrets/templates/create_secret_block.html:54 -#: secrets/templates/secrets.html:102 -#: storages/templates/create_stg_block.html:55 -#: storages/templates/create_stg_block.html:84 -#: storages/templates/create_stg_block.html:140 -#: storages/templates/create_stg_block.html:202 -#: storages/templates/create_stg_block.html:230 -#: storages/templates/create_stg_vol_block.html:27 -#: storages/templates/create_stg_vol_block.html:81 -#: storages/templates/storage.html:156 -msgid "Close" -msgstr "" - -#: accounts/templates/account.html:117 accounts/templates/accounts-list.html:45 -#: accounts/templates/accounts-list.html:148 -#: accounts/templates/accounts.html:36 accounts/templates/accounts.html:141 -#: admin/templates/admin/common/list.html:16 -#: admin/templates/admin/group_list.html:44 -#: admin/templates/admin/user_list.html:61 computes/templates/computes.html:33 -#: networks/templates/network.html:85 nwfilters/templates/nwfilter.html:62 -#: secrets/templates/secrets.html:74 -msgid "Edit" -msgstr "" - -#: accounts/templates/account.html:127 accounts/templates/profile.html:84 -#: create/templates/create_instance_w2.html:291 -#: instances/templates/instance.html:581 instances/templates/instance.html:1004 -#: instances/templates/instance.html:1074 -#: instances/templates/instance.html:1079 -#: interfaces/templates/interface.html:61 -#: interfaces/templates/interface.html:63 networks/templates/network.html:53 -#: networks/templates/network.html:55 networks/templates/network.html:65 -#: networks/templates/network.html:139 networks/templates/network.html:192 -#: networks/templates/network.html:197 networks/templates/network.html:252 -#: networks/templates/network.html:301 networks/templates/network.html:306 -#: networks/templates/network.html:356 networks/templates/network.html:361 -#: nwfilters/templates/nwfilter.html:114 nwfilters/templates/nwfilter.html:154 -#: nwfilters/templates/nwfilters.html:123 secrets/templates/secrets.html:77 -#: storages/templates/storage.html:64 storages/templates/storage.html:67 -#: storages/templates/storage.html:79 storages/templates/storage.html:176 -msgid "Are you sure?" +#: accounts/templates/account.html:69 accounts/templates/profile.html:80 +msgid "Public key" msgstr "" #: accounts/templates/accounts-list.html:4 #: accounts/templates/accounts-list.html:13 accounts/templates/accounts.html:3 #: accounts/templates/accounts.html:9 admin/templates/admin/group_list.html:5 #: admin/templates/admin/user_list.html:6 -#: admin/templates/admin/user_list.html:16 admin/views.py:83 -#: instances/templates/instance.html:657 templates/navbar.html:29 +#: admin/templates/admin/user_list.html:16 admin/views.py:84 +#: instances/templates/instances/settings_tab.html:63 templates/navbar.html:29 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 +#: computes/templates/computes/instances.html:18 +#: instances/templates/allinstances.html:16 +#: nwfilters/templates/nwfilters.html:11 storages/templates/storage.html:88 +#: templates/search_block.html:3 msgid "Search" msgstr "" +#: accounts/templates/accounts-list.html:25 accounts/templates/accounts.html:21 +#: admin/templates/admin/group_list.html:24 admin/templates/admin/logs.html:22 +#: admin/templates/admin/user_list.html:25 +#: computes/templates/computes/instances.html:57 +#: computes/templates/computes/list.html:21 +#: instances/templates/create_instance_w2.html:71 +#: interfaces/templates/interfaces.html:47 networks/templates/networks.html:50 +#: nwfilters/templates/nwfilters.html:138 secrets/templates/secrets.html:50 +#: storages/templates/storage.html:188 storages/templates/storages.html:50 +msgid "Warning" +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" msgstr "" -#: accounts/templates/accounts-list.html:33 accounts/templates/profile.html:27 -#: admin/templates/admin/user_list.html:33 computes/templates/computes.html:79 -#: computes/templates/computes.html:127 computes/templates/computes.html:170 +#: accounts/templates/accounts-list.html:33 accounts/templates/profile.html:31 +#: admin/templates/admin/user_list.html:33 msgid "Username" msgstr "" #: accounts/templates/accounts-list.html:34 accounts/templates/accounts.html:44 -#: admin/templates/admin/user_list.html:34 computes/templates/computes.html:40 -#: instances/templates/allinstances.html:57 -#: instances/templates/allinstances_index_grouped.html:8 -#: instances/templates/allinstances_index_nongrouped.html:7 -#: instances/templates/instances.html:72 +#: admin/templates/admin/user_list.html:34 +#: computes/templates/computes/instances.html:68 +#: computes/templates/computes/list.html:30 +#: instances/templates/allinstances_index_grouped.html:9 +#: instances/templates/allinstances_index_nongrouped.html:9 msgid "Status" msgstr "" @@ -254,22 +207,33 @@ msgid "Superuser" msgstr "" #: accounts/templates/accounts-list.html:37 -#: instances/templates/instance.html:631 instances/templates/instance.html:1444 -#: instances/templates/instance.html:1446 -#: instances/templates/instance_actions.html:7 +#: instances/templates/instance_actions.html:6 +#: instances/templates/instances/settings_tab.html:37 +#: instances/templates/instances/settings_tab.html:783 +#: instances/templates/instances/settings_tab.html:785 #: nwfilters/templates/nwfilters.html:112 -#: nwfilters/templates/nwfilters.html:118 storages/templates/storage.html:157 -#: storages/templates/storage.html:164 +#: nwfilters/templates/nwfilters.html:118 storages/templates/storage.html:156 +#: storages/templates/storage.html:163 msgid "Clone" msgstr "" +#: accounts/templates/accounts-list.html:45 +#: accounts/templates/accounts-list.html:148 +#: accounts/templates/accounts.html:36 accounts/templates/accounts.html:141 +#: admin/templates/admin/common/list.html:16 +#: admin/templates/admin/group_list.html:44 +#: admin/templates/admin/user_list.html:61 +#: computes/templates/computes/list.html:54 networks/templates/network.html:85 +#: nwfilters/templates/nwfilter.html:62 secrets/templates/secrets.html:74 +msgid "Edit" +msgstr "" + #: accounts/templates/accounts-list.html:51 accounts/templates/accounts.html:48 #: admin/templates/admin/user_list.html:50 -#: instances/templates/allinstances.html:68 -#: instances/templates/allinstances_index_grouped.html:26 -#: instances/templates/allinstances_index_grouped.html:56 -#: instances/templates/allinstances_index_nongrouped.html:20 -#: instances/templates/instance.html:17 instances/templates/instances.html:85 +#: computes/templates/computes/instances.html:94 +#: instances/templates/allinstances_index_grouped.html:57 +#: instances/templates/allinstances_index_nongrouped.html:40 +#: instances/templates/instance.html:17 msgid "Active" msgstr "" @@ -284,22 +248,21 @@ msgstr "" #: accounts/templates/accounts-list.html:76 accounts/templates/accounts.html:69 #: accounts/templates/create_user_block.html:18 -#: computes/templates/computes.html:172 -#: create/templates/create_flav_block.html:19 -#: create/templates/create_instance_w2.html:81 -#: create/templates/create_instance_w2.html:107 -#: create/templates/create_instance_w2.html:110 -#: create/templates/create_instance_w2.html:309 -#: create/templates/create_instance_w2.html:311 -#: create/templates/create_instance_w2.html:522 -#: create/templates/create_instance_w2.html:524 +#: computes/templates/computes/instances.html:66 +#: computes/templates/computes/list.html:29 #: instances/templates/add_instance_volume.html:40 #: instances/templates/add_instance_volume.html:42 -#: instances/templates/allinstances.html:56 -#: instances/templates/allinstances_index_grouped.html:6 +#: instances/templates/allinstances_index_grouped.html:7 #: instances/templates/allinstances_index_nongrouped.html:5 -#: instances/templates/instance.html:554 instances/templates/instance.html:906 -#: instances/templates/instances.html:70 +#: instances/templates/create_instance_w2.html:82 +#: instances/templates/create_instance_w2.html:108 +#: instances/templates/create_instance_w2.html:111 +#: instances/templates/create_instance_w2.html:310 +#: instances/templates/create_instance_w2.html:312 +#: instances/templates/create_instance_w2.html:523 +#: instances/templates/create_instance_w2.html:525 +#: instances/templates/instances/settings_tab.html:340 +#: instances/templates/instances/snapshots_tab.html:47 #: interfaces/templates/create_iface_block.html:18 #: interfaces/templates/interface.html:76 #: networks/templates/create_net_block.html:18 @@ -314,21 +277,18 @@ msgstr "" #: storages/templates/create_stg_block.html:100 #: storages/templates/create_stg_block.html:165 #: storages/templates/create_stg_block.html:214 -#: storages/templates/create_stg_vol_block.html:20 -#: storages/templates/create_stg_vol_block.html:51 -#: storages/templates/create_stg_vol_block.html:53 -#: storages/templates/storage.html:98 storages/templates/storage.html:126 -#: storages/templates/storage.html:128 +#: storages/templates/create_stg_vol_block.html:21 +#: storages/templates/storage.html:97 storages/templates/storage.html:125 +#: storages/templates/storage.html:127 msgid "Name" msgstr "" #: accounts/templates/accounts-list.html:83 accounts/templates/accounts.html:76 #: accounts/templates/create_user_block.html:24 -#: accounts/templates/login.html:19 computes/templates/computes.html:85 -#: computes/templates/computes.html:176 -#: console/templates/console-spice-full.html:200 -#: instances/templates/instance.html:1293 -#: instances/templates/instance.html:1300 +#: accounts/templates/login.html:19 +#: console/templates/console-spice-full.html:201 +#: console/templates/console-spice-lite.html:58 +#: console/templates/console-spice-lite.html:99 msgid "Password" msgstr "" @@ -341,7 +301,7 @@ msgid "Is superuser" msgstr "" #: accounts/templates/accounts-list.html:101 -#: accounts/templates/accounts.html:94 instances/models.py:25 +#: accounts/templates/accounts.html:94 msgid "Can clone instances" msgstr "" @@ -375,6 +335,63 @@ msgstr "" msgid "Unblock" msgstr "" +#: accounts/templates/accounts-list.html:145 +#: accounts/templates/accounts.html:138 +#: accounts/templates/create_user_block.html:31 +#: instances/templates/add_instance_network_block.html:49 +#: instances/templates/add_instance_owner_block.html:30 +#: instances/templates/add_instance_volume.html:89 +#: instances/templates/add_instance_volume.html:144 +#: instances/templates/create_flav_block.html:25 +#: instances/templates/create_inst_block.html:34 +#: instances/templates/create_instance_w2.html:274 +#: instances/templates/edit_instance_volume.html:123 +#: instances/templates/instances/settings_tab.html:427 +#: interfaces/templates/create_iface_block.html:135 +#: networks/templates/add_network_qos.html:50 +#: networks/templates/create_net_block.html:84 +#: networks/templates/modify_ipv4_fixed_address.html:44 +#: networks/templates/modify_ipv6_fixed_address.html:44 +#: nwfilters/templates/add_nwf_rule.html:25 +#: nwfilters/templates/create_nwfilter_block.html:23 +#: nwfilters/templates/nwfilters.html:83 nwfilters/templates/nwfilters.html:111 +#: secrets/templates/create_secret_block.html:54 +#: secrets/templates/secrets.html:102 +#: storages/templates/create_stg_block.html:55 +#: storages/templates/create_stg_block.html:84 +#: storages/templates/create_stg_block.html:140 +#: storages/templates/create_stg_block.html:202 +#: storages/templates/create_stg_block.html:230 +#: storages/templates/create_stg_vol_block.html:28 +#: storages/templates/create_stg_vol_block.html:56 +#: storages/templates/storage.html:155 +msgid "Close" +msgstr "" + +#: accounts/templates/accounts/change_password_form.html:7 +#: accounts/templates/accounts/change_password_form.html:12 +#: accounts/templates/profile.html:21 +msgid "Change Password" +msgstr "" + +#: accounts/templates/accounts/change_password_form.html:22 +#: admin/templates/admin/user_form.html:22 +#: computes/templates/computes/form.html:21 +#: templates/common/confirm_delete.html:14 templates/common/form.html:20 +msgid "Cancel" +msgstr "" + +#: accounts/templates/accounts/change_password_form.html:24 +#: accounts/templates/profile.html:44 +#: instances/templates/instances/settings_tab.html:633 +#: instances/templates/instances/settings_tab.html:637 +#: instances/templates/instances/settings_tab.html:819 +#: instances/templates/instances/settings_tab.html:821 +#: venv/lib/python3.6/site-packages/django/forms/widgets.py:397 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:379 +msgid "Change" +msgstr "" + #: accounts/templates/create_user_block.html:13 msgid "Add New User" msgstr "" @@ -384,13 +401,13 @@ msgid "john" msgstr "" #: accounts/templates/create_user_block.html:32 -#: create/templates/create_instance_w1.html:93 -#: create/templates/create_instance_w2.html:275 -#: create/templates/create_instance_w2.html:277 -#: create/templates/create_instance_w2.html:504 -#: create/templates/create_instance_w2.html:508 -#: create/templates/create_instance_w2.html:717 -#: create/templates/create_instance_w2.html:721 +#: instances/templates/create_instance_w1.html:95 +#: instances/templates/create_instance_w2.html:276 +#: instances/templates/create_instance_w2.html:278 +#: instances/templates/create_instance_w2.html:505 +#: instances/templates/create_instance_w2.html:509 +#: instances/templates/create_instance_w2.html:718 +#: instances/templates/create_instance_w2.html:722 #: interfaces/templates/create_iface_block.html:138 #: networks/templates/create_net_block.html:85 #: networks/templates/modify_ipv4_fixed_address.html:45 @@ -403,29 +420,10 @@ msgstr "" #: storages/templates/create_stg_block.html:148 #: storages/templates/create_stg_block.html:205 #: storages/templates/create_stg_block.html:233 -#: storages/templates/create_stg_vol_block.html:82 +#: storages/templates/create_stg_vol_block.html:57 msgid "Create" msgstr "" -#: accounts/templates/create_user_inst_block.html:12 -msgid "Add Instance for User" -msgstr "" - -#: accounts/templates/create_user_inst_block.html:18 -#: console/templates/console-spice-full.html:198 -#: instances/templates/allinstances_index_nongrouped.html:6 -msgid "Host" -msgstr "" - -#: accounts/templates/create_user_inst_block.html:30 -#: accounts/templates/profile.html:111 -#: create/templates/create_flav_block.html:54 -#: instances/templates/add_instance_network_block.html:50 -#: instances/templates/add_instance_owner_block.html:30 -#: nwfilters/templates/add_nwf_rule.html:26 -msgid "Add" -msgstr "" - #: accounts/templates/login.html:3 accounts/templates/logout.html:4 msgid "WebVirtCloud" msgstr "" @@ -439,7 +437,7 @@ msgstr "" msgid "Incorrect username or password." msgstr "" -#: accounts/templates/login.html:18 accounts/templates/profile.html:21 +#: accounts/templates/login.html:18 accounts/templates/profile.html:25 msgid "Login" msgstr "" @@ -451,72 +449,86 @@ msgstr "" msgid "Successful log out" msgstr "" -#: accounts/templates/profile.html:4 accounts/templates/profile.html:9 +#: accounts/templates/profile.html:5 accounts/templates/profile.html:10 #: templates/navbar.html:45 msgid "Profile" msgstr "" -#: accounts/templates/profile.html:18 +#: accounts/templates/profile.html:19 msgid "Edit Profile" msgstr "" -#: accounts/templates/profile.html:33 +#: accounts/templates/profile.html:37 msgid "Email" msgstr "" -#: accounts/templates/profile.html:40 accounts/templates/profile.html:67 -#: computes/templates/computes.html:104 computes/templates/computes.html:148 -#: computes/templates/computes.html:196 computes/templates/computes.html:225 -#: instances/templates/instance.html:1190 -#: instances/templates/instance.html:1194 -#: instances/templates/instance.html:1480 -#: instances/templates/instance.html:1482 -#: venv/lib/python3.6/site-packages/django/forms/widgets.py:397 -msgid "Change" -msgstr "" - -#: accounts/templates/profile.html:45 -msgid "Edit Password" -msgstr "" - #: accounts/templates/profile.html:48 -msgid "Old" -msgstr "" - -#: accounts/templates/profile.html:54 -msgid "New" -msgstr "" - -#: accounts/templates/profile.html:60 -msgid "Retry" -msgstr "" - -#: accounts/templates/profile.html:72 instances/templates/instance.html:266 +#: instances/templates/instances/access_tab.html:23 msgid "SSH Keys" msgstr "" -#: accounts/templates/profile.html:100 +#: accounts/templates/profile.html:60 +#: instances/templates/create_instance_w2.html:292 +#: instances/templates/instances/settings_tab.html:438 +#: instances/templates/instances/settings_tab.html:510 +#: instances/templates/instances/settings_tab.html:520 +#: instances/templates/instances/snapshots_tab.html:75 +#: interfaces/templates/interface.html:61 +#: interfaces/templates/interface.html:63 networks/templates/network.html:53 +#: networks/templates/network.html:55 networks/templates/network.html:65 +#: networks/templates/network.html:139 networks/templates/network.html:192 +#: networks/templates/network.html:197 networks/templates/network.html:252 +#: networks/templates/network.html:301 networks/templates/network.html:306 +#: networks/templates/network.html:356 networks/templates/network.html:361 +#: nwfilters/templates/nwfilter.html:114 nwfilters/templates/nwfilter.html:154 +#: nwfilters/templates/nwfilters.html:123 secrets/templates/secrets.html:77 +#: storages/templates/storage.html:63 storages/templates/storage.html:66 +#: storages/templates/storage.html:78 storages/templates/storage.html:175 +msgid "Are you sure?" +msgstr "" + +#: accounts/templates/profile.html:76 msgid "Enter Name" msgstr "" -#: accounts/templates/profile.html:106 +#: accounts/templates/profile.html:82 msgid "Enter Public Key" msgstr "" -#: accounts/views.py:52 +#: accounts/templates/profile.html:87 +#: instances/templates/add_instance_network_block.html:50 +#: instances/templates/add_instance_owner_block.html:31 +#: instances/templates/create_flav_block.html:28 +#: nwfilters/templates/add_nwf_rule.html:26 +msgid "Add" +msgstr "" + +#: accounts/views.py:39 msgid "Key name already exist" msgstr "" -#: accounts/views.py:55 +#: accounts/views.py:42 msgid "Public key already exist" msgstr "" -#: accounts/views.py:58 +#: accounts/views.py:45 msgid "Invalid characters in public key" msgstr "" -#: accounts/views.py:112 -msgid "Instance already added" +#: accounts/views.py:77 +msgid "Password Changed" +msgstr "" + +#: accounts/views.py:80 +msgid "Wrong Data Provided" +msgstr "" + +#: accounts/views.py:100 +msgid "Create User Instance" +msgstr "" + +#: accounts/views.py:118 +msgid "Update User Instance" msgstr "" #: admin/forms.py:46 @@ -528,25 +540,6 @@ msgstr "" msgid "Groups" msgstr "" -#: admin/templates/admin/common/confirm_delete.html:12 -msgid "Are you sure you want to delete" -msgstr "" - -#: admin/templates/admin/common/confirm_delete.html:14 -#: admin/templates/admin/common/form.html:22 -#: admin/templates/admin/user_form.html:22 -#: computes/templates/computes/form.html:22 -msgid "Cancel" -msgstr "" - -#: admin/templates/admin/common/form.html:24 -#: admin/templates/admin/user_form.html:24 -#: computes/templates/computes/form.html:24 -#: instances/templates/edit_instance_volume.html:124 -#: networks/templates/add_network_qos.html:51 -msgid "Save" -msgstr "" - #: admin/templates/admin/common/list.html:9 msgid "Create New" msgstr "" @@ -561,33 +554,53 @@ 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 -#: instances/templates/instance.html:909 instances/templates/instance.html:1051 -#: instances/templates/instances.html:75 networks/templates/network.html:178 -#: networks/templates/network.html:287 networks/templates/network.html:335 +#: computes/templates/computes/instances.html:71 +#: computes/templates/computes/list.html:32 +#: instances/templates/allinstances_index_grouped.html:12 +#: instances/templates/allinstances_index_nongrouped.html:12 +#: instances/templates/instances/settings_tab.html:343 +#: instances/templates/instances/settings_tab.html:486 +#: networks/templates/network.html:178 networks/templates/network.html:287 +#: networks/templates/network.html:335 msgid "Actions" msgstr "" -#: admin/templates/admin/logs.html:3 admin/templates/admin/logs.html:8 -#: instances/templates/instance.html:1577 templates/navbar.html:31 +#: admin/templates/admin/logs.html:4 admin/templates/admin/logs.html:9 +#: instances/templates/instances/stats_tab.html:13 templates/navbar.html:31 msgid "Logs" msgstr "" -#: admin/templates/admin/logs.html:21 +#: admin/templates/admin/logs.html:22 msgid "You don't have any Logs" msgstr "" -#: admin/templates/admin/logs.html:31 instances/templates/instance.html:555 -#: instances/templates/instance.html:1643 +#: admin/templates/admin/logs.html:32 +#: instances/templates/instances/snapshots_tab.html:48 +#: instances/templates/instances/stats_tab.html:83 msgid "Date" msgstr "" -#: admin/templates/admin/logs.html:34 instances/templates/instance.html:1645 +#: admin/templates/admin/logs.html:33 admin/templates/admin/user_form.html:6 +#: computes/templates/computes/instances.html:67 +#: instances/templates/add_instance_owner_block.html:18 +#: instances/templates/allinstances_index_grouped.html:8 +#: instances/templates/allinstances_index_nongrouped.html:7 +#: instances/templates/instances/stats_tab.html:84 +msgid "User" +msgstr "" + +#: admin/templates/admin/logs.html:35 +#: instances/templates/instances/stats_tab.html:85 msgid "Message" msgstr "" +#: admin/templates/admin/user_form.html:24 +#: computes/templates/computes/form.html:23 +#: instances/templates/edit_instance_volume.html:124 +#: networks/templates/add_network_qos.html:51 templates/common/form.html:22 +msgid "Save" +msgstr "" + #: admin/templates/admin/user_list.html:37 msgid "Can Clone" msgstr "" @@ -596,19 +609,19 @@ msgstr "" msgid "View Profile" msgstr "" -#: admin/views.py:38 +#: admin/views.py:39 msgid "Create Group" msgstr "" -#: admin/views.py:56 +#: admin/views.py:57 msgid "Update Group" msgstr "" -#: admin/views.py:108 +#: admin/views.py:110 msgid "Create User" msgstr "" -#: admin/views.py:130 +#: admin/views.py:132 msgid "Update User" msgstr "" @@ -820,24 +833,76 @@ msgstr "" msgid "Show access ssh keys" msgstr "" +#: appsettings/migrations/0004_auto_20200716_0637.py:11 +msgid "Console Scale" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:11 +msgid "Allow console to scaling view" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:12 +msgid "Console View-Only" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:12 +msgid "Allow only view not modify" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:13 +msgid "Console Resize Session" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:13 +msgid "Allow to resize session for console" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:14 +msgid "Console Clip Viewport" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:14 +msgid "Clip console viewport" +msgstr "" + +#: appsettings/models.py:9 computes/models.py:11 instances/models.py:27 +msgid "name" +msgstr "" + +#: appsettings/models.py:10 +msgid "key" +msgstr "" + +#: appsettings/models.py:11 +msgid "value" +msgstr "" + +#: appsettings/models.py:12 +msgid "choices" +msgstr "" + +#: appsettings/models.py:13 +msgid "description" +msgstr "" + #: appsettings/templates/appsettings.html:3 #: appsettings/templates/appsettings.html:8 msgid "Edit Settings" msgstr "" -#: appsettings/templates/appsettings.html:18 +#: appsettings/templates/appsettings.html:17 msgid "App Settings" msgstr "" -#: appsettings/templates/appsettings.html:22 templates/navbar.html:43 +#: appsettings/templates/appsettings.html:21 templates/navbar.html:43 msgid "Language" msgstr "" -#: appsettings/templates/appsettings.html:55 +#: appsettings/templates/appsettings.html:54 msgid "After change please full refresh page with 'Ctrl + F5' " msgstr "" -#: appsettings/templates/appsettings.html:60 +#: appsettings/templates/appsettings.html:59 msgid "Other Settings" msgstr "" @@ -860,106 +925,22 @@ msgstr "" msgid "FQDN/IP" msgstr "" -#: computes/forms.py:47 -msgid "No hostname has been entered" -msgstr "" - -#: computes/forms.py:48 -msgid "No IP / Domain name has been entered" -msgstr "" - -#: computes/forms.py:49 -msgid "No login has been entered" -msgstr "" - -#: computes/forms.py:57 -msgid "The name of the host must not contain any special characters" -msgstr "" - -#: computes/forms.py:59 -msgid "The name of the host must not exceed 20 characters" -msgstr "" - -#: computes/forms.py:67 computes/validators.py:16 -msgid "" -"Hostname must contain only numbers, or the domain name separated by \".\"" -msgstr "" - -#: computes/forms.py:69 computes/validators.py:18 -msgid "Wrong IP address" -msgstr "" - -#: computes/models.py:5 -msgid "name" -msgstr "" - -#: computes/models.py:6 +#: computes/models.py:12 msgid "hostname" msgstr "" -#: computes/models.py:7 +#: computes/models.py:13 msgid "login" msgstr "" -#: computes/models.py:8 +#: computes/models.py:14 msgid "password" msgstr "" -#: computes/models.py:9 +#: computes/models.py:15 msgid "details" msgstr "" -#: computes/templates/computes.html:3 computes/templates/computes.html:9 -#: templates/navbar.html:18 -msgid "Computes" -msgstr "" - -#: computes/templates/computes.html:42 instances/templates/instance.html:1537 -msgid "Connected" -msgstr "" - -#: computes/templates/computes.html:44 -msgid "Not Connected" -msgstr "" - -#: computes/templates/computes.html:46 computes/templates/computes.html:91 -#: 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 "" - -#: computes/templates/computes.html:50 -msgid "No details available" -msgstr "" - -#: computes/templates/computes.html:59 -msgid "Edit connection" -msgstr "" - -#: computes/templates/computes.html:66 computes/templates/computes.html:114 -#: computes/templates/computes.html:157 computes/templates/computes.html:205 -msgid "Label" -msgstr "" - -#: computes/templates/computes.html:73 computes/templates/computes.html:121 -#: computes/templates/computes.html:164 -msgid "FQDN / IP" -msgstr "" - -#: computes/templates/computes.html:112 -msgid "" -"Need create ssh authorization key. If you have another SSH port on " -"your server, you can add IP:PORT like '192.168.1.1:2222'." -msgstr "" - -#: computes/templates/computes.html:241 -msgid "Hypervisor doesn't have any Computes" -msgstr "" - #: computes/templates/computes/form.html:6 msgid "Add Compute" msgstr "" @@ -968,6 +949,137 @@ msgstr "" msgid "Create Compute" msgstr "" +#: computes/templates/computes/instances.html:29 +#: computes/templates/computes/list.html:50 +#: computes/templates/computes/list.html:52 computes/templates/overview.html:4 +#: computes/templates/overview.html:13 interfaces/templates/interface.html:11 +#: interfaces/templates/interfaces.html:14 networks/templates/network.html:13 +#: networks/templates/networks.html:17 nwfilters/templates/nwfilter.html:12 +#: nwfilters/templates/nwfilters.html:21 secrets/templates/secrets.html:17 +#: storages/templates/storage.html:17 storages/templates/storages.html:17 +msgid "Overview" +msgstr "" + +#: computes/templates/computes/instances.html:35 +#: computes/templates/overview.html:19 interfaces/templates/interface.html:17 +#: interfaces/templates/interfaces.html:20 networks/templates/network.html:19 +#: networks/templates/networks.html:23 nwfilters/templates/nwfilter.html:18 +#: nwfilters/templates/nwfilters.html:27 secrets/templates/secrets.html:23 +#: storages/templates/storage.html:23 storages/templates/storages.html:3 +#: storages/templates/storages.html:9 storages/templates/storages.html:23 +msgid "Storages" +msgstr "" + +#: computes/templates/computes/instances.html:38 +#: computes/templates/overview.html:22 interfaces/templates/interface.html:20 +#: interfaces/templates/interfaces.html:23 networks/templates/network.html:22 +#: networks/templates/networks.html:3 networks/templates/networks.html:9 +#: networks/templates/networks.html:26 nwfilters/templates/nwfilter.html:21 +#: nwfilters/templates/nwfilters.html:30 secrets/templates/secrets.html:26 +#: storages/templates/storage.html:26 storages/templates/storages.html:26 +msgid "Networks" +msgstr "" + +#: computes/templates/computes/instances.html:41 +#: computes/templates/overview.html:25 interfaces/templates/interface.html:23 +#: interfaces/templates/interfaces.html:4 +#: interfaces/templates/interfaces.html:26 networks/templates/network.html:25 +#: networks/templates/networks.html:29 nwfilters/templates/nwfilter.html:24 +#: nwfilters/templates/nwfilters.html:33 secrets/templates/secrets.html:29 +#: storages/templates/storage.html:29 storages/templates/storages.html:29 +msgid "Interfaces" +msgstr "" + +#: computes/templates/computes/instances.html:44 +#: computes/templates/overview.html:28 interfaces/templates/interface.html:26 +#: interfaces/templates/interfaces.html:29 networks/templates/network.html:28 +#: networks/templates/networks.html:32 nwfilters/templates/nwfilter.html:4 +#: nwfilters/templates/nwfilter.html:27 nwfilters/templates/nwfilters.html:4 +#: nwfilters/templates/nwfilters.html:13 nwfilters/templates/nwfilters.html:36 +#: secrets/templates/secrets.html:32 storages/templates/storage.html:32 +#: storages/templates/storages.html:32 +msgid "NWFilters" +msgstr "" + +#: computes/templates/computes/instances.html:47 +#: computes/templates/overview.html:31 interfaces/templates/interface.html:29 +#: interfaces/templates/interfaces.html:32 networks/templates/network.html:31 +#: networks/templates/networks.html:35 nwfilters/templates/nwfilter.html:30 +#: nwfilters/templates/nwfilters.html:39 secrets/templates/secrets.html:4 +#: secrets/templates/secrets.html:13 secrets/templates/secrets.html:35 +#: storages/templates/create_stg_block.html:124 +#: storages/templates/storage.html:35 storages/templates/storages.html:35 +msgid "Secrets" +msgstr "" + +#: computes/templates/computes/instances.html:58 +msgid "Hypervisor doesn't have any Instances" +msgstr "" + +#: computes/templates/computes/instances.html:66 +#: instances/templates/allinstances_index_grouped.html:7 +#: instances/templates/allinstances_index_nongrouped.html:5 +#: instances/templates/instances/settings_tab.html:777 +#: instances/templates/instances/settings_tab.html:800 +msgid "Description" +msgstr "" + +#: computes/templates/computes/instances.html:69 +#: instances/templates/allinstances_index_grouped.html:10 +#: instances/templates/allinstances_index_nongrouped.html:10 +#: instances/templates/create_instance_w2.html:83 +#: instances/templates/create_instance_w2.html:328 +#: instances/templates/create_instance_w2.html:541 +#: instances/templates/instance.html:40 instances/templates/instance.html:42 +msgid "VCPU" +msgstr "" + +#: computes/templates/computes/instances.html:70 +#: computes/templates/overview.html:82 +#: instances/templates/allinstances_index_grouped.html:11 +#: instances/templates/allinstances_index_nongrouped.html:11 +#: instances/templates/instances/resize_tab.html:13 +msgid "Memory" +msgstr "" + +#: computes/templates/computes/instances.html:96 +#: instances/templates/allinstances_index_grouped.html:58 +#: instances/templates/allinstances_index_nongrouped.html:42 +#: instances/templates/instance.html:14 +msgid "Off" +msgstr "" + +#: computes/templates/computes/instances.html:98 +#: instances/templates/allinstances_index_grouped.html:60 +#: instances/templates/allinstances_index_nongrouped.html:44 +msgid "Suspended" +msgstr "" + +#: computes/templates/computes/list.html:6 +#: computes/templates/computes/list.html:12 templates/navbar.html:18 +msgid "Computes" +msgstr "" + +#: computes/templates/computes/list.html:21 +msgid "You don't have any computes" +msgstr "" + +#: computes/templates/computes/list.html:31 computes/templates/overview.html:92 +#: instances/templates/instances/settings_tab.html:163 +#: instances/templates/instances/settings_tab.html:248 +msgid "Details" +msgstr "" + +#: computes/templates/computes/list.html:42 +#: instances/templates/allinstances_index_grouped.html:28 +#: instances/templates/instances/settings_tab.html:876 +msgid "Connected" +msgstr "" + +#: computes/templates/computes/list.html:42 +msgid "Not Connected" +msgstr "" + #: computes/templates/create_comp_block.html:5 msgid "TCP" msgstr "" @@ -988,79 +1100,6 @@ msgstr "" msgid "Add new host" msgstr "" -#: computes/templates/overview.html:4 computes/templates/overview.html:13 -#: instances/templates/instances.html:30 interfaces/templates/interface.html:11 -#: interfaces/templates/interfaces.html:14 networks/templates/network.html:13 -#: networks/templates/networks.html:17 nwfilters/templates/nwfilter.html:12 -#: nwfilters/templates/nwfilters.html:21 secrets/templates/secrets.html:17 -#: storages/templates/storage.html:17 storages/templates/storages.html:17 -msgid "Overview" -msgstr "" - -#: computes/templates/overview.html:16 instances/templates/allinstances.html:4 -#: instances/templates/allinstances.html:20 -#: instances/templates/bottom_bar.html:17 instances/templates/instances.html:4 -#: instances/templates/instances.html:33 interfaces/templates/interface.html:14 -#: interfaces/templates/interfaces.html:17 networks/templates/network.html:16 -#: networks/templates/networks.html:20 nwfilters/templates/nwfilter.html:15 -#: nwfilters/templates/nwfilters.html:24 secrets/templates/secrets.html:20 -#: storages/templates/storage.html:20 storages/templates/storages.html:20 -#: templates/navbar.html:14 -msgid "Instances" -msgstr "" - -#: computes/templates/overview.html:19 instances/templates/instances.html:36 -#: interfaces/templates/interface.html:17 -#: interfaces/templates/interfaces.html:20 networks/templates/network.html:19 -#: networks/templates/networks.html:23 nwfilters/templates/nwfilter.html:18 -#: nwfilters/templates/nwfilters.html:27 secrets/templates/secrets.html:23 -#: storages/templates/storage.html:23 storages/templates/storages.html:3 -#: storages/templates/storages.html:9 storages/templates/storages.html:23 -msgid "Storages" -msgstr "" - -#: computes/templates/overview.html:22 instances/templates/instances.html:39 -#: interfaces/templates/interface.html:20 -#: interfaces/templates/interfaces.html:23 networks/templates/network.html:22 -#: networks/templates/networks.html:3 networks/templates/networks.html:9 -#: networks/templates/networks.html:26 nwfilters/templates/nwfilter.html:21 -#: nwfilters/templates/nwfilters.html:30 secrets/templates/secrets.html:26 -#: storages/templates/storage.html:26 storages/templates/storages.html:26 -msgid "Networks" -msgstr "" - -#: computes/templates/overview.html:25 instances/templates/instances.html:42 -#: interfaces/templates/interface.html:23 -#: interfaces/templates/interfaces.html:4 -#: interfaces/templates/interfaces.html:26 networks/templates/network.html:25 -#: networks/templates/networks.html:29 nwfilters/templates/nwfilter.html:24 -#: nwfilters/templates/nwfilters.html:33 secrets/templates/secrets.html:29 -#: storages/templates/storage.html:29 storages/templates/storages.html:29 -msgid "Interfaces" -msgstr "" - -#: computes/templates/overview.html:28 instances/templates/instances.html:45 -#: interfaces/templates/interface.html:26 -#: interfaces/templates/interfaces.html:29 networks/templates/network.html:28 -#: networks/templates/networks.html:32 nwfilters/templates/nwfilter.html:4 -#: nwfilters/templates/nwfilter.html:27 nwfilters/templates/nwfilters.html:4 -#: nwfilters/templates/nwfilters.html:13 nwfilters/templates/nwfilters.html:36 -#: secrets/templates/secrets.html:32 storages/templates/storage.html:32 -#: storages/templates/storages.html:32 -msgid "NWFilters" -msgstr "" - -#: computes/templates/overview.html:31 instances/templates/instances.html:48 -#: interfaces/templates/interface.html:29 -#: interfaces/templates/interfaces.html:32 networks/templates/network.html:31 -#: networks/templates/networks.html:35 nwfilters/templates/nwfilter.html:30 -#: nwfilters/templates/nwfilters.html:39 secrets/templates/secrets.html:4 -#: secrets/templates/secrets.html:13 secrets/templates/secrets.html:35 -#: storages/templates/create_stg_block.html:124 -#: storages/templates/storage.html:35 storages/templates/storages.html:35 -msgid "Secrets" -msgstr "" - #: computes/templates/overview.html:42 msgid "Basic details" msgstr "" @@ -1094,16 +1133,9 @@ msgstr "" msgid "Libvirt" msgstr "" -#: computes/templates/overview.html:82 instances/templates/allinstances.html:59 -#: instances/templates/allinstances_index_grouped.html:10 -#: instances/templates/allinstances_index_nongrouped.html:9 -#: instances/templates/instance.html:369 instances/templates/instances.html:74 -msgid "Memory" -msgstr "" - #: computes/templates/overview.html:84 -#: create/templates/create_instance_w1.html:40 -#: create/templates/create_instance_w1.html:56 +#: instances/templates/create_instance_w1.html:42 +#: instances/templates/create_instance_w1.html:58 msgid "Architecture" msgstr "" @@ -1132,270 +1164,153 @@ msgstr "" msgid "RAM Utilization" msgstr "" +#: computes/validators.py:16 +msgid "" +"Hostname must contain only numbers, or the domain name separated by \".\"" +msgstr "" + +#: computes/validators.py:18 +msgid "Wrong IP address" +msgstr "" + #: computes/validators.py:24 msgid "The hostname must not contain any special characters" msgstr "" -#: console/templates/console-base.html:69 +#: console/templates/console-base.html:51 msgid "Send key(s)" msgstr "" -#: console/templates/console-base.html:89 +#: console/templates/console-base.html:71 msgid "Fullscreen" msgstr "" +#: console/templates/console-spice-full.html:56 +msgid "must set host and port" +msgstr "" + +#: console/templates/console-spice-full.html:83 +#: console/templates/console-spice-full.html:97 +#: console/templates/console-spice-lite.html:138 +#: console/templates/console-spice-lite.html:150 +msgid "disconnect" +msgstr "" + +#: console/templates/console-spice-full.html:114 +#: console/templates/console-spice-lite.html:167 +msgid "File API is not supported" +msgstr "" + +#: console/templates/console-spice-full.html:197 +#: instances/templates/allinstances_index_nongrouped.html:7 +msgid "Host" +msgstr "" + #: console/templates/console-spice-full.html:199 msgid "Port" msgstr "" -#: console/templates/console-spice-full.html:201 +#: console/templates/console-spice-full.html:207 msgid "Show console" msgstr "" -#: console/templates/console-spice-full.html:202 +#: console/templates/console-spice-full.html:209 #: interfaces/templates/interface.html:60 networks/templates/network.html:52 #: networks/templates/network.html:122 networks/templates/network.html:128 #: networks/templates/network.html:234 networks/templates/network.html:240 -#: storages/templates/storage.html:62 +#: storages/templates/storage.html:61 msgid "Start" msgstr "" -#: console/templates/console-vnc-full.html:83 +#: console/templates/console-spice-lite.html:109 +msgid "must specify host and port in URL" +msgstr "" + +#: console/templates/console-vnc-full.html:78 msgid "noVNC encountered an error" msgstr "" -#: console/templates/console-vnc-lite.html:297 +#: console/templates/console-vnc-lite.html:222 msgid "Loading" msgstr "" -#: create/forms.py:10 -msgid "No flavor name has been entered" -msgstr "" - -#: create/forms.py:13 create/forms.py:37 -msgid "No VCPU has been entered" -msgstr "" - -#: create/forms.py:15 -msgid "No HDD image has been entered" -msgstr "" - -#: create/forms.py:17 create/forms.py:40 -msgid "No RAM size has been entered" -msgstr "" - -#: create/forms.py:34 +#: instances/forms.py:37 msgid "No Virtual Machine name has been entered" msgstr "" -#: create/forms.py:41 +#: instances/forms.py:39 +msgid "No VCPU has been entered" +msgstr "" + +#: instances/forms.py:42 +msgid "No RAM size has been entered" +msgstr "" + +#: instances/forms.py:43 msgid "No Network pool has been choosen" msgstr "" -#: create/forms.py:46 +#: instances/forms.py:48 msgid "Please select HDD cache mode" msgstr "" -#: create/forms.py:53 +#: instances/forms.py:55 msgid "Please select a graphics type" msgstr "" -#: create/forms.py:54 +#: instances/forms.py:56 msgid "Please select a video driver" msgstr "" -#: create/forms.py:61 +#: instances/forms.py:63 msgid "The name of the virtual machine must not contain any special characters" msgstr "" -#: create/forms.py:63 +#: instances/forms.py:65 msgid "The name of the virtual machine must not exceed 20 characters" msgstr "" -#: create/templates/create_flav_block.html:13 -msgid "Add New Flavor" +#: instances/models.py:11 +msgid "label" msgstr "" -#: create/templates/create_flav_block.html:21 -msgid "Micro" +#: instances/models.py:12 +msgid "memory" msgstr "" -#: create/templates/create_flav_block.html:26 -#: create/templates/create_instance_w2.html:82 -#: create/templates/create_instance_w2.html:327 -#: create/templates/create_instance_w2.html:540 -#: instances/templates/allinstances.html:58 -#: instances/templates/allinstances_index_grouped.html:9 -#: instances/templates/allinstances_index_nongrouped.html:8 -#: instances/templates/instance.html:40 instances/templates/instance.html:42 -#: instances/templates/instances.html:73 -msgid "VCPU" +#: instances/models.py:13 +msgid "vcpu" msgstr "" -#: create/templates/create_flav_block.html:33 -#: create/templates/create_instance_w2.html:83 -#: create/templates/create_instance_w2.html:356 -#: create/templates/create_instance_w2.html:567 -#: instances/templates/instance.html:45 -msgid "RAM" +#: instances/models.py:14 +msgid "disk" msgstr "" -#: create/templates/create_flav_block.html:38 -#: create/templates/create_instance_w2.html:94 -#: create/templates/create_instance_w2.html:360 -#: create/templates/create_instance_w2.html:571 -#: instances/templates/allinstances.html:78 -#: instances/templates/instance.html:45 instances/templates/instance.html:450 -#: instances/templates/instance.html:463 -msgid "MB" +#: instances/models.py:28 +msgid "uuid" msgstr "" -#: create/templates/create_flav_block.html:41 -#: create/templates/create_instance_w2.html:84 -#: create/templates/create_instance_w2.html:371 -msgid "HDD" +#: instances/models.py:29 +msgid "is template" msgstr "" -#: create/templates/create_flav_block.html:46 -#: create/templates/create_instance_w2.html:95 -#: instances/templates/add_instance_volume.html:60 -#: storages/templates/create_stg_vol_block.html:71 -msgid "GB" +#: instances/models.py:30 +msgid "created" msgstr "" -#: create/templates/create_instance_w1.html:4 -#: create/templates/create_instance_w2.html:4 -msgid "Create new instance" +#: instances/models.py:215 +msgid "Can access console without password" msgstr "" -#: create/templates/create_instance_w1.html:4 -msgid "Select Type" +#: instances/templates/add_instance_network_block.html:12 +msgid "Add Instance Network" msgstr "" -#: create/templates/create_instance_w1.html:10 -#: create/templates/create_instance_w2.html:13 -msgid "New instance on" -msgstr "" - -#: create/templates/create_instance_w1.html:45 -#: instances/templates/instance.html:643 networks/templates/network.html:75 -#: nwfilters/templates/nwfilter.html:52 -msgid "XML" -msgstr "" - -#: create/templates/create_instance_w1.html:66 -msgid "Chipset" -msgstr "" - -#: create/templates/create_instance_w1.html:76 -msgid "Next" -msgstr "" - -#: create/templates/create_instance_w2.html:49 -msgid "Flavor" -msgstr "" - -#: create/templates/create_instance_w2.html:54 -msgid "Custom" -msgstr "" - -#: create/templates/create_instance_w2.html:59 -msgid "Template" -msgstr "" - -#: create/templates/create_instance_w2.html:70 -msgid "Hypervisor doesn't have any Flavors" -msgstr "" - -#: create/templates/create_instance_w2.html:75 -msgid "Create from flavor" -msgstr "" - -#: create/templates/create_instance_w2.html:101 -msgid "Create Virtual Machine" -msgstr "" - -#: create/templates/create_instance_w2.html:119 -#: create/templates/create_instance_w2.html:316 -#: create/templates/create_instance_w2.html:529 -msgid "Firmware" -msgstr "" - -#: create/templates/create_instance_w2.html:131 -#: create/templates/create_instance_w2.html:334 -#: create/templates/create_instance_w2.html:546 -msgid "VCPU Config" -msgstr "" - -#: create/templates/create_instance_w2.html:134 -#: create/templates/create_instance_w2.html:337 -#: create/templates/create_instance_w2.html:549 -msgid "no-mode" -msgstr "" - -#: create/templates/create_instance_w2.html:153 -#: create/templates/create_instance_w2.html:595 -#: instances/templates/add_instance_volume.html:30 -#: instances/templates/add_instance_volume.html:100 -#: instances/templates/instance.html:829 storages/templates/storage.html:4 -#: storages/templates/storage.html:14 -msgid "Storage" -msgstr "" - -#: create/templates/create_instance_w2.html:162 -#: create/templates/create_instance_w2.html:190 -#: create/templates/create_instance_w2.html:381 -#: create/templates/create_instance_w2.html:436 -#: create/templates/create_instance_w2.html:584 -#: create/templates/create_instance_w2.html:603 -#: create/templates/create_instance_w2.html:649 -#: instances/templates/add_instance_network_block.html:40 -#: instances/templates/add_instance_volume.html:117 -#: instances/templates/create_inst_block.html:25 -#: instances/templates/instance.html:329 instances/templates/instance.html:776 -#: instances/templates/instance.html:972 instances/templates/instance.html:1649 -#: interfaces/templates/interface.html:42 -#: interfaces/templates/interface.html:44 nwfilters/templates/nwfilter.html:81 -#: storages/templates/create_stg_block.html:132 -#: storages/templates/storage.html:49 storages/templates/storage.html:51 -#: storages/templates/storage.html:53 -msgid "None" -msgstr "" - -#: create/templates/create_instance_w2.html:168 -#: create/templates/create_instance_w2.html:392 -#: create/templates/create_instance_w2.html:609 -#: instances/templates/add_instance_network_block.html:24 -#: instances/templates/instance.html:624 instances/templates/instance.html:959 -#: networks/templates/network.html:4 networks/templates/network.html:9 -#: networks/templates/network.html:110 networks/templates/network.html:221 -msgid "Network" -msgstr "" - -#: create/templates/create_instance_w2.html:178 -#: create/templates/create_instance_w2.html:406 -#: create/templates/create_instance_w2.html:619 -#: instances/templates/edit_instance_volume.html:25 -msgid "Advanced" -msgstr "" - -#: create/templates/create_instance_w2.html:187 -#: create/templates/create_instance_w2.html:433 -#: create/templates/create_instance_w2.html:646 -#: instances/templates/add_instance_network_block.html:37 -#: instances/templates/instance.html:968 nwfilters/templates/nwfilter.html:9 -msgid "NWFilter" -msgstr "" - -#: create/templates/create_instance_w2.html:198 -#: create/templates/create_instance_w2.html:635 -msgid "HDD cache mode" -msgstr "" - -#: create/templates/create_instance_w2.html:209 #: instances/templates/add_instance_network_block.html:18 -#: instances/templates/instance.html:924 instances/templates/instance.html:947 -#: instances/templates/instance.html:1047 +#: instances/templates/create_instance_w2.html:210 +#: instances/templates/instances/settings_tab.html:358 +#: instances/templates/instances/settings_tab.html:381 +#: instances/templates/instances/settings_tab.html:482 #: interfaces/templates/interface.html:46 #: interfaces/templates/interface.html:75 #: interfaces/templates/interfaces.html:63 @@ -1404,116 +1319,46 @@ msgstr "" msgid "MAC" msgstr "" -#: create/templates/create_instance_w2.html:216 -#: create/templates/create_instance_w2.html:445 -#: create/templates/create_instance_w2.html:658 -msgid "Graphics" +#: instances/templates/add_instance_network_block.html:24 +#: instances/templates/create_instance_w2.html:169 +#: instances/templates/create_instance_w2.html:393 +#: instances/templates/create_instance_w2.html:610 +#: instances/templates/instances/settings_tab.html:30 +#: instances/templates/instances/settings_tab.html:393 +#: networks/templates/network.html:4 networks/templates/network.html:9 +#: networks/templates/network.html:110 networks/templates/network.html:221 +msgid "Network" msgstr "" -#: create/templates/create_instance_w2.html:227 -#: create/templates/create_instance_w2.html:456 -#: create/templates/create_instance_w2.html:669 -msgid "Video" +#: instances/templates/add_instance_network_block.html:37 +#: instances/templates/create_instance_w2.html:188 +#: instances/templates/create_instance_w2.html:434 +#: instances/templates/create_instance_w2.html:647 +#: instances/templates/instances/settings_tab.html:402 +#: nwfilters/templates/nwfilter.html:9 +msgid "NWFilter" msgstr "" -#: create/templates/create_instance_w2.html:241 -#: create/templates/create_instance_w2.html:470 -#: create/templates/create_instance_w2.html:683 -msgid "Console Access" -msgstr "" - -#: create/templates/create_instance_w2.html:251 -#: create/templates/create_instance_w2.html:253 -#: create/templates/create_instance_w2.html:480 -#: create/templates/create_instance_w2.html:482 -#: create/templates/create_instance_w2.html:693 -#: create/templates/create_instance_w2.html:695 -msgid "Console Password" -msgstr "" - -#: create/templates/create_instance_w2.html:257 -#: create/templates/create_instance_w2.html:486 -#: create/templates/create_instance_w2.html:699 -msgid "Guest Agent" -msgstr "" - -#: create/templates/create_instance_w2.html:264 -#: create/templates/create_instance_w2.html:493 -#: create/templates/create_instance_w2.html:706 -msgid "VirtIO" -msgstr "" - -#: create/templates/create_instance_w2.html:363 -msgid "Added Disks" -msgstr "" - -#: create/templates/create_instance_w2.html:376 -#: create/templates/create_instance_w2.html:579 -msgid "Select pool" -msgstr "" - -#: create/templates/create_instance_w2.html:415 -#: create/templates/create_instance_w2.html:628 -msgid "Disk Metadata" -msgstr "" - -#: create/templates/create_instance_w2.html:417 -#: create/templates/create_instance_w2.html:630 -msgid "Metadata preallocation" -msgstr "" - -#: create/templates/create_instance_w2.html:419 -#: create/templates/create_instance_w2.html:632 -#: venv/lib/python3.6/site-packages/django/db/models/fields/files.py:360 -msgid "Image" -msgstr "" - -#: create/templates/create_instance_w2.html:422 -msgid "HDD Cache Mode" -msgstr "" - -#: create/templates/create_instance_w2.html:574 -msgid "Template Disk" -msgstr "" - -#: create/views.py:52 create/views.py:164 -msgid "A virtual machine with this name already exists" -msgstr "" - -#: create/views.py:133 -msgid "You haven't defined any storage pools" -msgstr "" - -#: create/views.py:136 -msgid "You haven't defined any network pools" -msgstr "" - -#: create/views.py:167 -msgid "There is an instance with same name. Are you sure?" -msgstr "" - -#: create/views.py:171 -msgid "No Virtual Machine MAC has been entered" -msgstr "" - -#: create/views.py:204 -msgid "Image has already exist. Please check volumes or change instance name" -msgstr "" - -#: create/views.py:230 -msgid "First you need to create or select an image" -msgstr "" - -#: create/views.py:252 -msgid "Invalid cache mode" -msgstr "" - -#: create/views.py:290 -msgid "Instance is created" -msgstr "" - -#: instances/templates/add_instance_network_block.html:12 -msgid "Add Instance Network" +#: instances/templates/add_instance_network_block.html:40 +#: instances/templates/add_instance_volume.html:117 +#: instances/templates/create_inst_block.html:25 +#: instances/templates/create_instance_w2.html:163 +#: instances/templates/create_instance_w2.html:191 +#: instances/templates/create_instance_w2.html:382 +#: instances/templates/create_instance_w2.html:437 +#: instances/templates/create_instance_w2.html:585 +#: instances/templates/create_instance_w2.html:604 +#: instances/templates/create_instance_w2.html:650 +#: instances/templates/instances/access_tab.html:135 +#: instances/templates/instances/settings_tab.html:183 +#: instances/templates/instances/settings_tab.html:406 +#: instances/templates/instances/stats_tab.html:90 +#: interfaces/templates/interface.html:42 +#: interfaces/templates/interface.html:44 nwfilters/templates/nwfilter.html:81 +#: storages/templates/create_stg_block.html:132 +#: storages/templates/storage.html:48 storages/templates/storage.html:50 +#: storages/templates/storage.html:52 +msgid "None" msgstr "" #: instances/templates/add_instance_owner_block.html:12 @@ -1543,24 +1388,36 @@ msgstr "" msgid "Volume parameters" msgstr "" +#: instances/templates/add_instance_volume.html:30 +#: instances/templates/add_instance_volume.html:100 +#: instances/templates/create_instance_w2.html:154 +#: instances/templates/create_instance_w2.html:596 +#: instances/templates/instances/settings_tab.html:237 +#: storages/templates/storage.html:4 storages/templates/storage.html:14 +msgid "Storage" +msgstr "" + #: instances/templates/add_instance_volume.html:46 #: storages/templates/create_stg_block.html:183 -#: storages/templates/create_stg_vol_block.html:57 -#: storages/templates/storage.html:101 storages/templates/storage.html:139 +#: storages/templates/storage.html:100 storages/templates/storage.html:138 msgid "Format" msgstr "" #: instances/templates/add_instance_volume.html:56 -#: storages/templates/create_stg_vol_block.html:67 -#: storages/templates/storage.html:54 storages/templates/storage.html:100 +#: storages/templates/storage.html:53 storages/templates/storage.html:99 #: storages/templates/storages.html:66 msgid "Size" msgstr "" +#: instances/templates/add_instance_volume.html:60 +#: instances/templates/create_instance_w2.html:96 +msgid "GB" +msgstr "" + #: instances/templates/add_instance_volume.html:63 #: instances/templates/add_instance_volume.html:123 #: instances/templates/edit_instance_volume.html:53 -#: instances/templates/instance.html:763 +#: instances/templates/instances/settings_tab.html:168 msgid "Bus" msgstr "" @@ -1570,9 +1427,8 @@ msgid "Cache" msgstr "" #: instances/templates/add_instance_volume.html:83 -#: instances/templates/instance.html:1416 -#: storages/templates/create_stg_vol_block.html:74 -#: storages/templates/storage.html:149 +#: instances/templates/instances/settings_tab.html:755 +#: storages/templates/storage.html:148 msgid "Metadata" msgstr "" @@ -1584,55 +1440,23 @@ msgstr "" msgid "Volume" msgstr "" -#: instances/templates/allinstances.html:33 -#: instances/templates/allinstances.html:49 -msgid "You don't have any Instance" +#: instances/templates/allinstances.html:24 +msgid "Problem occurred with host" msgstr "" -#: instances/templates/allinstances.html:71 -#: instances/templates/allinstances_index_grouped.html:57 -#: instances/templates/allinstances_index_nongrouped.html:21 -#: instances/templates/instance.html:14 instances/templates/instances.html:86 -msgid "Off" -msgstr "" - -#: instances/templates/allinstances.html:74 -#: instances/templates/allinstances_index_grouped.html:58 -#: instances/templates/allinstances_index_nongrouped.html:22 -#: instances/templates/instance.html:20 instances/templates/instance.html:143 -#: instances/templates/instance.html:198 -#: instances/templates/instance_actions.html:15 -#: instances/templates/instance_actions.html:32 -#: instances/templates/instance_actions.html:49 -#: instances/templates/instances.html:87 instances/views.py:699 -#: instances/views.py:1239 -msgid "Suspend" -msgstr "" - -#: instances/templates/allinstances_index_grouped.html:6 -#: instances/templates/allinstances_index_nongrouped.html:5 -#: instances/templates/instance.html:1438 -#: instances/templates/instance.html:1461 instances/templates/instances.html:70 -msgid "Description" -msgstr "" - -#: instances/templates/allinstances_index_grouped.html:11 +#: instances/templates/allinstances_index_grouped.html:12 msgid "Mem Usage" msgstr "" -#: instances/templates/allinstances_index_grouped.html:27 -msgid "Not Active" -msgstr "" - -#: instances/templates/allinstances_index_grouped.html:28 -msgid "Connection Failed" -msgstr "" - #: instances/templates/bottom_bar.html:4 msgid "HOST" msgstr "" -#: instances/templates/create_inst_block.html:12 +#: instances/templates/create_flav_block.html:14 +msgid "Add New Flavor" +msgstr "" + +#: instances/templates/create_inst_block.html:11 msgid "Choose a compute for new instance" msgstr "" @@ -1649,6 +1473,183 @@ msgstr "" msgid "Choose" msgstr "" +#: instances/templates/create_instance_w1.html:4 +#: instances/templates/create_instance_w2.html:5 +msgid "Create new instance" +msgstr "" + +#: instances/templates/create_instance_w1.html:4 +msgid "Select Type" +msgstr "" + +#: instances/templates/create_instance_w1.html:11 +#: instances/templates/create_instance_w2.html:14 +#, python-format +msgid "New instance on %(host)s " +msgstr "" + +#: instances/templates/create_instance_w1.html:47 +#: instances/templates/instances/settings_tab.html:49 +#: networks/templates/network.html:75 nwfilters/templates/nwfilter.html:52 +msgid "XML" +msgstr "" + +#: instances/templates/create_instance_w1.html:68 +msgid "Chipset" +msgstr "" + +#: instances/templates/create_instance_w1.html:78 +msgid "Next" +msgstr "" + +#: instances/templates/create_instance_w2.html:50 +msgid "Flavor" +msgstr "" + +#: instances/templates/create_instance_w2.html:55 +msgid "Custom" +msgstr "" + +#: instances/templates/create_instance_w2.html:60 +msgid "Template" +msgstr "" + +#: instances/templates/create_instance_w2.html:71 +msgid "Hypervisor doesn't have any Flavors" +msgstr "" + +#: instances/templates/create_instance_w2.html:76 +msgid "Create from flavor" +msgstr "" + +#: instances/templates/create_instance_w2.html:84 +#: instances/templates/create_instance_w2.html:357 +#: instances/templates/create_instance_w2.html:568 +#: instances/templates/instance.html:45 +msgid "RAM" +msgstr "" + +#: instances/templates/create_instance_w2.html:85 +#: instances/templates/create_instance_w2.html:372 +msgid "HDD" +msgstr "" + +#: instances/templates/create_instance_w2.html:95 +#: instances/templates/create_instance_w2.html:361 +#: instances/templates/create_instance_w2.html:572 +#: instances/templates/instance.html:45 +#: instances/templates/instances/resize_tab.html:95 +#: instances/templates/instances/resize_tab.html:108 +msgid "MB" +msgstr "" + +#: instances/templates/create_instance_w2.html:102 +msgid "Create Virtual Machine" +msgstr "" + +#: instances/templates/create_instance_w2.html:120 +#: instances/templates/create_instance_w2.html:317 +#: instances/templates/create_instance_w2.html:530 +msgid "Firmware" +msgstr "" + +#: instances/templates/create_instance_w2.html:132 +#: instances/templates/create_instance_w2.html:335 +#: instances/templates/create_instance_w2.html:547 +msgid "VCPU Config" +msgstr "" + +#: instances/templates/create_instance_w2.html:135 +#: instances/templates/create_instance_w2.html:338 +#: instances/templates/create_instance_w2.html:550 +msgid "no-mode" +msgstr "" + +#: instances/templates/create_instance_w2.html:179 +#: instances/templates/create_instance_w2.html:407 +#: instances/templates/create_instance_w2.html:620 +#: instances/templates/edit_instance_volume.html:25 +msgid "Advanced" +msgstr "" + +#: instances/templates/create_instance_w2.html:199 +#: instances/templates/create_instance_w2.html:636 +msgid "HDD cache mode" +msgstr "" + +#: instances/templates/create_instance_w2.html:217 +#: instances/templates/create_instance_w2.html:446 +#: instances/templates/create_instance_w2.html:659 +msgid "Graphics" +msgstr "" + +#: instances/templates/create_instance_w2.html:228 +#: instances/templates/create_instance_w2.html:457 +#: instances/templates/create_instance_w2.html:670 +msgid "Video" +msgstr "" + +#: instances/templates/create_instance_w2.html:242 +#: instances/templates/create_instance_w2.html:471 +#: instances/templates/create_instance_w2.html:684 +msgid "Console Access" +msgstr "" + +#: instances/templates/create_instance_w2.html:252 +#: instances/templates/create_instance_w2.html:254 +#: instances/templates/create_instance_w2.html:481 +#: instances/templates/create_instance_w2.html:483 +#: instances/templates/create_instance_w2.html:694 +#: instances/templates/create_instance_w2.html:696 +msgid "Console Password" +msgstr "" + +#: instances/templates/create_instance_w2.html:258 +#: instances/templates/create_instance_w2.html:487 +#: instances/templates/create_instance_w2.html:700 +msgid "Guest Agent" +msgstr "" + +#: instances/templates/create_instance_w2.html:265 +#: instances/templates/create_instance_w2.html:494 +#: instances/templates/create_instance_w2.html:707 +msgid "VirtIO" +msgstr "" + +#: instances/templates/create_instance_w2.html:364 +msgid "Added Disks" +msgstr "" + +#: instances/templates/create_instance_w2.html:377 +#: instances/templates/create_instance_w2.html:580 +msgid "Select pool" +msgstr "" + +#: instances/templates/create_instance_w2.html:416 +#: instances/templates/create_instance_w2.html:629 +msgid "Disk Metadata" +msgstr "" + +#: instances/templates/create_instance_w2.html:418 +#: instances/templates/create_instance_w2.html:631 +msgid "Metadata preallocation" +msgstr "" + +#: instances/templates/create_instance_w2.html:420 +#: instances/templates/create_instance_w2.html:633 +#: venv/lib/python3.6/site-packages/django/db/models/fields/files.py:360 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/files.py:391 +msgid "Image" +msgstr "" + +#: instances/templates/create_instance_w2.html:423 +msgid "HDD Cache Mode" +msgstr "" + +#: instances/templates/create_instance_w2.html:575 +msgid "Template Disk" +msgstr "" + #: instances/templates/edit_instance_volume.html:3 msgid "Edit Volume" msgstr "" @@ -1697,6 +1698,15 @@ msgstr "" msgid "Detect zeroes" msgstr "" +#: instances/templates/instance.html:20 +#: instances/templates/instance_actions.html:14 +#: instances/templates/instance_actions.html:25 +#: instances/templates/instance_actions.html:37 +#: instances/templates/instances/power_tab.html:25 +#: instances/templates/instances/power_tab.html:82 instances/views.py:287 +msgid "Suspend" +msgstr "" + #: instances/templates/instance.html:26 msgid "Guest Agent Enabled & Connected" msgstr "" @@ -1709,8 +1719,9 @@ msgstr "" msgid "Guest Agent Not Enabled & Not Connected" msgstr "" -#: instances/templates/instance.html:48 instances/templates/instance.html:374 -#: instances/templates/instance.html:610 +#: instances/templates/instance.html:48 +#: instances/templates/instances/resize_tab.html:18 +#: instances/templates/instances/settings_tab.html:16 msgid "Disk" msgstr "" @@ -1722,808 +1733,820 @@ msgstr "" msgid "quota reached" msgstr "" -#: instances/templates/instance.html:76 +#: instances/templates/instance.html:75 msgid "Power" msgstr "" -#: instances/templates/instance.html:82 +#: instances/templates/instance.html:81 msgid "Access" msgstr "" -#: instances/templates/instance.html:95 +#: instances/templates/instance.html:94 msgid "Snapshot" msgstr "" -#: instances/templates/instance.html:102 templates/navbar.html:32 +#: instances/templates/instance.html:101 templates/navbar.html:32 msgid "Settings" msgstr "" -#: instances/templates/instance.html:108 +#: instances/templates/instance.html:107 msgid "Stats" msgstr "" -#: instances/templates/instance.html:114 instances/templates/instance.html:1674 -#: instances/templates/instance.html:1691 -#: instances/templates/instance.html:1695 instances/views.py:421 +#: instances/templates/instance.html:113 +#: instances/templates/instances/destroy_instance_form.html:40 +#: instances/templates/instances/destroy_tab.html:18 +#: instances/templates/instances/destroy_tab.html:20 +#: instances/templates/instances/destroy_tab.html:23 instances/views.py:329 msgid "Destroy" msgstr "" -#: instances/templates/instance.html:127 instances/templates/instance.html:176 -#: instances/templates/instance_actions.html:18 -#: instances/templates/instance_actions.html:52 instances/views.py:387 -#: instances/views.py:1199 -msgid "Power Off" -msgstr "" - -#: instances/templates/instance.html:132 instances/templates/instance.html:183 -#: instances/templates/instance_actions.html:21 -#: instances/templates/instance_actions.html:38 -#: instances/templates/instance_actions.html:55 instances/views.py:381 -#: instances/views.py:1211 -msgid "Power Cycle" -msgstr "" - -#: instances/templates/instance.html:137 instances/templates/instance.html:157 -#: instances/templates/instance.html:190 instances/templates/instance.html:216 -#: instances/templates/instance_actions.html:35 instances/views.py:393 -#: instances/views.py:1206 -msgid "Force Off" -msgstr "" - -#: instances/templates/instance.html:152 instances/templates/instance.html:209 -#: instances/templates/instance.html:224 -#: instances/templates/instance_actions.html:29 instances/views.py:705 -#: instances/views.py:1245 -msgid "Resume" -msgstr "" - -#: instances/templates/instance.html:165 instances/templates/instance.html:236 -#: instances/templates/instance.html:238 -#: instances/templates/instance_actions.html:11 -#: instances/templates/instance_actions.html:46 instances/views.py:374 -#: instances/views.py:1193 +#: instances/templates/instance_actions.html:10 +#: instances/templates/instance_actions.html:35 +#: instances/templates/instances/power_tab.html:47 +#: instances/templates/instances/power_tab.html:121 +#: instances/templates/instances/power_tab.html:123 instances/views.py:262 msgid "Power On" msgstr "" -#: instances/templates/instance.html:174 -msgid "This action sends an ACPI shutdown signal to the instance." +#: instances/templates/instance_actions.html:15 +#: instances/templates/instances/power_tab.html:9 +#: instances/templates/instances/power_tab.html:59 instances/views.py:278 +msgid "Power Off" msgstr "" -#: instances/templates/instance.html:181 -msgid "" -"This action forcibly powers off and start the instance and may cause data " -"corruption." +#: instances/templates/instance_actions.html:16 +#: instances/templates/instance_actions.html:29 +#: instances/templates/instances/power_tab.html:14 +#: instances/templates/instances/power_tab.html:66 instances/views.py:271 +msgid "Power Cycle" msgstr "" -#: instances/templates/instance.html:188 instances/templates/instance.html:214 -msgid "" -"This action forcibly powers off the instance and may cause data corruption." +#: instances/templates/instance_actions.html:17 +#: instances/templates/instance_actions.html:30 +msgid "VNC Console" msgstr "" -#: instances/templates/instance.html:196 -msgid "This action suspends the instance." +#: instances/templates/instance_actions.html:22 +#: instances/templates/instances/power_tab.html:34 +#: instances/templates/instances/power_tab.html:93 +#: instances/templates/instances/power_tab.html:108 instances/views.py:295 +msgid "Resume" msgstr "" -#: instances/templates/instance.html:207 -msgid "This action restore the instance after suspend." +#: instances/templates/instance_actions.html:26 +#: instances/templates/instances/power_tab.html:19 +#: instances/templates/instances/power_tab.html:39 +#: instances/templates/instances/power_tab.html:74 +#: instances/templates/instances/power_tab.html:100 instances/views.py:302 +msgid "Force Off" msgstr "" -#: instances/templates/instance.html:222 -msgid "Administrator blocked your instance." -msgstr "" - -#: instances/templates/instance.html:232 -msgid "Click on Power On button to start this instance." -msgstr "" - -#: instances/templates/instance.html:235 -msgid "Template instance cannot be started." -msgstr "" - -#: instances/templates/instance.html:253 instances/templates/instance.html:285 -#: instances/templates/instance.html:290 instances/templates/instance.html:291 -#: instances/templates/instance.html:295 instances/templates/instance.html:617 -#: instances/templates/instance_actions.html:58 +#: instances/templates/instance_actions.html:41 +#: instances/templates/instances/access_tab.html:9 +#: instances/templates/instances/access_tab.html:79 +#: instances/templates/instances/access_tab.html:87 +#: instances/templates/instances/access_tab.html:90 +#: instances/templates/instances/access_tab.html:94 +#: instances/templates/instances/settings_tab.html:23 msgid "Console" msgstr "" -#: instances/templates/instance.html:259 +#: instances/templates/instances/access_tab.html:16 msgid "Root Password" msgstr "" -#: instances/templates/instance.html:273 instances/templates/instance.html:349 +#: instances/templates/instances/access_tab.html:31 +#: instances/templates/instances/access_tab.html:156 msgid "VDI" msgstr "" -#: instances/templates/instance.html:281 +#: instances/templates/instances/access_tab.html:39 +#, python-format msgid "" -"This action opens a new window with a VNC connection to the console of the " -"instance." +" This action opens a new window with a %(type)s connection to the console of " +"the instance." msgstr "" -#: instances/templates/instance.html:287 +#: instances/templates/instances/access_tab.html:47 +msgid "Scale" +msgstr "" + +#: instances/templates/instances/access_tab.html:55 +msgid "View Only" +msgstr "" + +#: instances/templates/instances/access_tab.html:63 +msgid "Resize Session" +msgstr "" + +#: instances/templates/instances/access_tab.html:71 +msgid "View Clipboard" +msgstr "" + +#: instances/templates/instances/access_tab.html:82 msgid "Toggle Dropdown" msgstr "" -#: instances/templates/instance.html:290 instances/templates/instance.html:291 +#: instances/templates/instances/access_tab.html:86 +#: instances/templates/instances/access_tab.html:89 msgid "Console port" msgstr "" -#: instances/templates/instance.html:290 +#: instances/templates/instances/access_tab.html:87 msgid "Lite" msgstr "" -#: instances/templates/instance.html:291 +#: instances/templates/instances/access_tab.html:90 msgid "Full" msgstr "" -#: instances/templates/instance.html:301 +#: instances/templates/instances/access_tab.html:100 msgid "You need shut down your instance and enter a new root password." msgstr "" -#: instances/templates/instance.html:305 +#: instances/templates/instances/access_tab.html:107 msgid "Enter Password" msgstr "" -#: instances/templates/instance.html:309 instances/templates/instance.html:311 +#: instances/templates/instances/access_tab.html:112 +#: instances/templates/instances/access_tab.html:115 msgid "Reset Root Password" msgstr "" -#: instances/templates/instance.html:319 +#: instances/templates/instances/access_tab.html:123 msgid "You need shut down your instance and choose your public key." msgstr "" -#: instances/templates/instance.html:335 instances/templates/instance.html:337 +#: instances/templates/instances/access_tab.html:142 +#: instances/templates/instances/access_tab.html:144 msgid "Add Public Key" msgstr "" -#: instances/templates/instance.html:345 +#: instances/templates/instances/access_tab.html:152 msgid "" "This action opens a remote viewer with a connection to the console of the " "instance." msgstr "" -#: instances/templates/instance.html:364 +#: instances/templates/instances/destroy_instance_form.html:4 +msgid "Confirm Destroy" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:8 +msgid "Destroy instance" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:15 +msgid "Instance is suspended, cannot destroy!" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:19 +msgid "This action is irreversible!" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:26 +msgid "Remove Instance's data" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:34 +msgid "Remove Instance's NVRAM" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:46 +msgid "You cannot destroy instance!" +msgstr "" + +#: instances/templates/instances/destroy_tab.html:8 +msgid "Destroy Instance" +msgstr "" + +#: instances/templates/instances/destroy_tab.html:15 +msgid "This action starts remove instance process" +msgstr "" + +#: instances/templates/instances/power_tab.html:56 +msgid "This action sends an ACPI shutdown signal to the instance." +msgstr "" + +#: instances/templates/instances/power_tab.html:64 +msgid "" +"This action forcibly powers off and start the instance and may cause data " +"corruption." +msgstr "" + +#: instances/templates/instances/power_tab.html:71 +#: instances/templates/instances/power_tab.html:98 +msgid "" +"This action forcibly powers off the instance and may cause data corruption." +msgstr "" + +#: instances/templates/instances/power_tab.html:80 +msgid "This action suspends the instance." +msgstr "" + +#: instances/templates/instances/power_tab.html:91 +msgid "This action restore the instance after suspend." +msgstr "" + +#: instances/templates/instances/power_tab.html:106 +msgid "Administrator blocked your instance." +msgstr "" + +#: instances/templates/instances/power_tab.html:116 +msgid "Click on Power On button to start this instance." +msgstr "" + +#: instances/templates/instances/power_tab.html:120 +msgid "Template instance cannot be started." +msgstr "" + +#: instances/templates/instances/resize_tab.html:8 msgid "CPU" msgstr "" -#: instances/templates/instance.html:385 +#: instances/templates/instances/resize_tab.html:29 msgid "Logical host CPUs" msgstr "" -#: instances/templates/instance.html:387 instances/templates/instance.html:450 -#: instances/templates/instance.html:490 +#: instances/templates/instances/resize_tab.html:31 +#: instances/templates/instances/resize_tab.html:95 +#: instances/templates/instances/resize_tab.html:136 msgid "Current Allocation" msgstr "" -#: instances/templates/instance.html:401 instances/templates/instance.html:463 +#: instances/templates/instances/resize_tab.html:45 +#: instances/templates/instances/resize_tab.html:108 msgid "Maximum Allocation" msgstr "" -#: instances/templates/instance.html:419 +#: instances/templates/instances/resize_tab.html:63 msgid "Logical Instance Active/Maximum CPUs" msgstr "" -#: instances/templates/instance.html:427 instances/templates/instance.html:674 -#: instances/templates/instance.html:689 networks/templates/network.html:65 -#: storages/templates/storage.html:79 +#: instances/templates/instances/resize_tab.html:71 +#: instances/templates/instances/settings_tab.html:79 +#: instances/templates/instances/settings_tab.html:95 +#: networks/templates/network.html:65 storages/templates/storage.html:78 msgid "Disable" msgstr "" -#: instances/templates/instance.html:429 +#: instances/templates/instances/resize_tab.html:73 msgid "Constant" msgstr "" -#: instances/templates/instance.html:431 instances/templates/instance.html:672 -#: instances/templates/instance.html:687 networks/templates/network.html:63 -#: storages/templates/storage.html:76 +#: instances/templates/instances/resize_tab.html:75 +#: instances/templates/instances/settings_tab.html:77 +#: instances/templates/instances/settings_tab.html:91 +#: networks/templates/network.html:63 storages/templates/storage.html:75 msgid "Enable" msgstr "" -#: instances/templates/instance.html:440 instances/templates/instance.html:479 -#: instances/templates/instance.html:503 +#: instances/templates/instances/resize_tab.html:84 +#: instances/templates/instances/resize_tab.html:124 +#: instances/templates/instances/resize_tab.html:157 msgid "You don't have permission for resizing instance" msgstr "" -#: instances/templates/instance.html:448 +#: instances/templates/instances/resize_tab.html:93 msgid "Total host memory" msgstr "" -#: instances/templates/instance.html:458 instances/templates/instance.html:473 +#: instances/templates/instances/resize_tab.html:103 +#: instances/templates/instances/resize_tab.html:118 msgid "Custom value" msgstr "" -#: instances/templates/instance.html:487 +#: instances/templates/instances/resize_tab.html:133 msgid "Disk allocation (GB)" msgstr "" -#: instances/templates/instance.html:517 instances/templates/instance.html:538 -#: instances/templates/instance.html:540 -msgid "Take Snapshot" +#: instances/templates/instances/resize_tab.html:140 +#: instances/templates/instances/settings_tab.html:269 +msgid "Error getting disk info" msgstr "" -#: instances/templates/instance.html:522 -msgid "Manage Snapshots" -msgstr "" - -#: instances/templates/instance.html:530 -msgid "" -"This may take more than an hour, depending on how much content is on your " -"droplet and how large the disk is." -msgstr "" - -#: instances/templates/instance.html:534 -msgid "Enter Snapshot Name" -msgstr "" - -#: instances/templates/instance.html:545 -msgid "To take a snapshot please Power Off the instance." -msgstr "" - -#: instances/templates/instance.html:550 -msgid "Choose a snapshot for restore/delete" -msgstr "" - -#: instances/templates/instance.html:567 -msgid "Revert to this Snapshot" -msgstr "" - -#: instances/templates/instance.html:572 -msgid "To restore snapshots you need Power Off the instance." -msgstr "" - -#: instances/templates/instance.html:581 -msgid "Delete Snapshot" -msgstr "" - -#: instances/templates/instance.html:592 -msgid "You do not have any snapshots" -msgstr "" - -#: instances/templates/instance.html:605 +#: instances/templates/instances/settings_tab.html:11 msgid "Boot" msgstr "" -#: instances/templates/instance.html:638 instances/templates/instance.html:1174 -#: instances/templates/instance.html:1176 +#: instances/templates/instances/settings_tab.html:44 +#: instances/templates/instances/settings_tab.html:616 +#: instances/templates/instances/settings_tab.html:618 msgid "Migrate" msgstr "" -#: instances/templates/instance.html:650 +#: instances/templates/instances/settings_tab.html:56 msgid "Options" msgstr "" -#: instances/templates/instance.html:666 networks/templates/network.html:59 -#: storages/templates/storage.html:71 +#: instances/templates/instances/settings_tab.html:72 +#: networks/templates/network.html:59 storages/templates/storage.html:70 msgid "Autostart" msgstr "" -#: instances/templates/instance.html:670 +#: instances/templates/instances/settings_tab.html:75 msgid "Autostart your instance when host server is power on " msgstr "" -#: instances/templates/instance.html:680 +#: instances/templates/instances/settings_tab.html:84 msgid "Boot Order" msgstr "" -#: instances/templates/instance.html:685 +#: instances/templates/instances/settings_tab.html:88 msgid "Enable Boot Menu for your instance when it starts up " msgstr "" -#: instances/templates/instance.html:687 +#: instances/templates/instances/settings_tab.html:91 msgid "Show boot menu" msgstr "" -#: instances/templates/instance.html:689 +#: instances/templates/instances/settings_tab.html:95 msgid "Hide boot menu" msgstr "" -#: instances/templates/instance.html:693 +#: instances/templates/instances/settings_tab.html:100 msgid "Please shutdown instance to modify boot menu" msgstr "" -#: instances/templates/instance.html:724 +#: instances/templates/instances/settings_tab.html:130 msgid "up: move selected devices" msgstr "" -#: instances/templates/instance.html:727 +#: instances/templates/instances/settings_tab.html:133 msgid "down: move selected devices" msgstr "" -#: instances/templates/instance.html:733 instances/templates/instance.html:994 +#: instances/templates/instances/settings_tab.html:139 +#: instances/templates/instances/settings_tab.html:428 msgid "Apply" msgstr "" -#: instances/templates/instance.html:743 +#: instances/templates/instances/settings_tab.html:149 msgid "Instance Media" msgstr "" -#: instances/templates/instance.html:746 +#: instances/templates/instances/settings_tab.html:152 msgid "Add CD-ROM" msgstr "" -#: instances/templates/instance.html:764 instances/templates/instance.html:826 +#: instances/templates/instances/settings_tab.html:169 +#: instances/templates/instances/settings_tab.html:234 #: interfaces/templates/create_iface_block.html:34 #: networks/templates/network.html:46 networks/templates/networks.html:63 #: storages/templates/create_stg_block.html:77 msgid "Device" msgstr "" -#: instances/templates/instance.html:765 +#: instances/templates/instances/settings_tab.html:170 msgid "CD-ROM" msgstr "" -#: instances/templates/instance.html:781 instances/templates/instance.html:783 +#: instances/templates/instances/settings_tab.html:188 +#: instances/templates/instances/settings_tab.html:190 msgid "Mount" msgstr "" -#: instances/templates/instance.html:786 +#: instances/templates/instances/settings_tab.html:193 msgid "Detach CD-ROM (remove device)" msgstr "" -#: instances/templates/instance.html:800 instances/templates/instance.html:802 +#: instances/templates/instances/settings_tab.html:208 +#: instances/templates/instances/settings_tab.html:210 msgid "Unmount" msgstr "" -#: instances/templates/instance.html:812 +#: instances/templates/instances/settings_tab.html:220 msgid "There is not any CD-ROM device." msgstr "" -#: instances/templates/instance.html:817 +#: instances/templates/instances/settings_tab.html:225 msgid "Instance Volume" msgstr "" -#: instances/templates/instance.html:827 +#: instances/templates/instances/settings_tab.html:235 msgid "Used" msgstr "" -#: instances/templates/instance.html:828 +#: instances/templates/instances/settings_tab.html:236 msgid "Capacity" msgstr "" -#: instances/templates/instance.html:830 instances/templates/instance.html:928 +#: instances/templates/instances/settings_tab.html:238 +#: instances/templates/instances/settings_tab.html:362 msgid "Source" msgstr "" -#: instances/templates/instance.html:870 instances/templates/instance.html:877 +#: instances/templates/instances/settings_tab.html:294 +#: instances/templates/instances/settings_tab.html:298 msgid "Detach" msgstr "" -#: instances/templates/instance.html:870 +#: instances/templates/instances/settings_tab.html:294 msgid "Are you sure to detach volume?" msgstr "" -#: instances/templates/instance.html:873 -msgid "Are you sure to delete volume?" -msgstr "" - -#: instances/templates/instance.html:877 instances/templates/instance.html:880 +#: instances/templates/instances/settings_tab.html:298 +#: instances/templates/instances/settings_tab.html:314 msgid "Are you sure? This may lead data corruption!" msgstr "" -#: instances/templates/instance.html:896 +#: instances/templates/instances/settings_tab.html:310 +msgid "Are you sure to delete volume?" +msgstr "" + +#: instances/templates/instances/settings_tab.html:330 msgid "Add a network device" msgstr "" -#: instances/templates/instance.html:902 +#: instances/templates/instances/settings_tab.html:336 msgid "Network Devices" msgstr "" -#: instances/templates/instance.html:907 instances/templates/instance.html:908 +#: instances/templates/instances/settings_tab.html:341 +#: instances/templates/instances/settings_tab.html:342 msgid "Info" msgstr "" -#: instances/templates/instance.html:921 +#: instances/templates/instances/settings_tab.html:355 msgid "active" msgstr "" -#: instances/templates/instance.html:926 nwfilters/templates/nwfilter.html:78 +#: instances/templates/instances/settings_tab.html:360 +#: nwfilters/templates/nwfilter.html:78 msgid "Filter" msgstr "" -#: instances/templates/instance.html:933 +#: instances/templates/instances/settings_tab.html:367 msgid "Edit NIC" msgstr "" -#: instances/templates/instance.html:941 +#: instances/templates/instances/settings_tab.html:375 msgid "Edit Instance Network" msgstr "" -#: instances/templates/instance.html:954 +#: instances/templates/instances/settings_tab.html:388 msgid "Net Source" msgstr "" -#: instances/templates/instance.html:962 interfaces/templates/interface.html:3 -#: interfaces/templates/interface.html:8 interfaces/templates/interface.html:40 +#: instances/templates/instances/settings_tab.html:396 +#: interfaces/templates/interface.html:3 interfaces/templates/interface.html:8 +#: interfaces/templates/interface.html:40 msgid "Interface" msgstr "" -#: instances/templates/instance.html:980 instances/templates/instance.html:1019 +#: instances/templates/instances/settings_tab.html:414 +#: instances/templates/instances/settings_tab.html:453 msgid "Model" msgstr "" -#: instances/templates/instance.html:994 +#: instances/templates/instances/settings_tab.html:428 msgid "Apply network changes" msgstr "" -#: instances/templates/instance.html:1003 +#: instances/templates/instances/settings_tab.html:437 msgid "Delete Device" msgstr "" -#: instances/templates/instance.html:1011 +#: instances/templates/instances/settings_tab.html:445 #: interfaces/templates/create_iface_block.html:71 #: interfaces/templates/interface.html:42 msgid "IPv4" msgstr "" -#: instances/templates/instance.html:1015 +#: instances/templates/instances/settings_tab.html:449 #: interfaces/templates/create_iface_block.html:74 #: interfaces/templates/interface.html:44 msgid "IPv6" msgstr "" -#: instances/templates/instance.html:1021 +#: instances/templates/instances/settings_tab.html:455 msgid "QoS" msgstr "" -#: instances/templates/instance.html:1041 networks/templates/network.html:325 +#: instances/templates/instances/settings_tab.html:476 +#: networks/templates/network.html:325 msgid "QoS Configuration" msgstr "" -#: instances/templates/instance.html:1047 +#: instances/templates/instances/settings_tab.html:482 #: networks/templates/add_network_qos.html:18 #: networks/templates/network.html:331 nwfilters/templates/nwfilter.html:134 msgid "Direction" msgstr "" -#: instances/templates/instance.html:1048 +#: instances/templates/instances/settings_tab.html:483 #: networks/templates/add_network_qos.html:27 #: networks/templates/network.html:332 msgid "Average" msgstr "" -#: instances/templates/instance.html:1049 +#: instances/templates/instances/settings_tab.html:484 #: networks/templates/add_network_qos.html:34 #: networks/templates/network.html:333 msgid "Peak" msgstr "" -#: instances/templates/instance.html:1050 +#: instances/templates/instances/settings_tab.html:485 #: networks/templates/add_network_qos.html:41 #: networks/templates/network.html:334 msgid "Burst" msgstr "" -#: instances/templates/instance.html:1074 networks/templates/network.html:356 +#: instances/templates/instances/settings_tab.html:510 +#: networks/templates/network.html:356 msgid "Edit QoS" msgstr "" -#: instances/templates/instance.html:1079 networks/templates/network.html:361 +#: instances/templates/instances/settings_tab.html:520 +#: networks/templates/network.html:361 msgid "Delete QoS" msgstr "" -#: instances/templates/instance.html:1095 +#: instances/templates/instances/settings_tab.html:536 msgid "For migration both host servers must have equal settings and OS type" msgstr "" -#: instances/templates/instance.html:1098 +#: instances/templates/instances/settings_tab.html:540 msgid "Original host" msgstr "" -#: instances/templates/instance.html:1104 +#: instances/templates/instances/settings_tab.html:546 msgid "Host migration" msgstr "" -#: instances/templates/instance.html:1121 +#: instances/templates/instances/settings_tab.html:563 msgid "Live migration" msgstr "" -#: instances/templates/instance.html:1129 +#: instances/templates/instances/settings_tab.html:571 msgid "Unsafe migration" msgstr "" -#: instances/templates/instance.html:1137 +#: instances/templates/instances/settings_tab.html:579 msgid "Delete original" msgstr "" -#: instances/templates/instance.html:1145 +#: instances/templates/instances/settings_tab.html:587 msgid "Offline migration" msgstr "" -#: instances/templates/instance.html:1153 +#: instances/templates/instances/settings_tab.html:595 msgid "Post copy" msgstr "" -#: instances/templates/instance.html:1161 +#: instances/templates/instances/settings_tab.html:603 msgid "Forces CPU convergence during live migration" msgstr "" -#: instances/templates/instance.html:1161 +#: instances/templates/instances/settings_tab.html:603 msgid "Auto converge" msgstr "" -#: instances/templates/instance.html:1169 +#: instances/templates/instances/settings_tab.html:611 msgid "Compress instance memory for fast migration" msgstr "" -#: instances/templates/instance.html:1169 +#: instances/templates/instances/settings_tab.html:611 msgid "Compressed" msgstr "" -#: instances/templates/instance.html:1182 +#: instances/templates/instances/settings_tab.html:624 msgid "If you need to edit XML please Power Off the instance" msgstr "" -#: instances/templates/instance.html:1203 +#: instances/templates/instances/settings_tab.html:646 msgid "Instance owners" msgstr "" -#: instances/templates/instance.html:1216 -msgid "Delete Ownership" +#: instances/templates/instances/settings_tab.html:675 +msgid "To change console settings, shutdown the instance." msgstr "" -#: instances/templates/instance.html:1231 -msgid "To set console's type, shutdown the instance." +#: instances/templates/instances/settings_tab.html:681 +#: instances/templates/instances/settings_tab.html:683 +msgid "Update" msgstr "" -#: instances/templates/instance.html:1234 -#: interfaces/templates/create_iface_block.html:44 -#: interfaces/templates/interface.html:77 -#: interfaces/templates/interfaces.html:62 -#: storages/templates/create_stg_block.html:35 -#: storages/templates/create_stg_block.html:64 -#: storages/templates/create_stg_block.html:93 -#: storages/templates/create_stg_block.html:158 -#: storages/templates/storages.html:64 -msgid "Type" -msgstr "" - -#: instances/templates/instance.html:1238 -#: instances/templates/instance.html:1262 -#: instances/templates/instance.html:1331 -#: instances/templates/instance.html:1495 -msgid "please choose" -msgstr "" - -#: instances/templates/instance.html:1246 -#: instances/templates/instance.html:1248 -#: instances/templates/instance.html:1269 -#: instances/templates/instance.html:1271 -#: instances/templates/instance.html:1307 -#: instances/templates/instance.html:1309 -#: instances/templates/instance.html:1339 -#: instances/templates/instance.html:1341 -#: instances/templates/instance.html:1502 -#: instances/templates/instance.html:1504 -#: instances/templates/instance.html:1524 -#: instances/templates/instance.html:1526 -#: instances/templates/instance.html:1554 secrets/templates/secrets.html:103 -msgid "Set" -msgstr "" - -#: instances/templates/instance.html:1255 -msgid "To set console listen address, shutdown the instance." -msgstr "" - -#: instances/templates/instance.html:1258 -msgid "Listen on" -msgstr "" - -#: instances/templates/instance.html:1278 -msgid "To create console password, shutdown the instance." -msgstr "" - -#: instances/templates/instance.html:1284 -msgid "Generate" -msgstr "" - -#: instances/templates/instance.html:1288 -#: instances/templates/instance.html:1322 networks/templates/network.html:169 -#: networks/templates/network.html:279 -#: venv/lib/python3.6/site-packages/django/forms/widgets.py:395 -msgid "Clear" -msgstr "" - -#: instances/templates/instance.html:1304 networks/templates/network.html:161 -#: networks/templates/network.html:271 nwfilters/templates/nwfilters.html:88 -msgid "Show" -msgstr "" - -#: instances/templates/instance.html:1316 -msgid "To set console's keymap, shutdown the instance." -msgstr "" - -#: instances/templates/instance.html:1327 -msgid "Keymap" -msgstr "" - -#: instances/templates/instance.html:1353 +#: instances/templates/instances/settings_tab.html:692 msgid "Create a clone" msgstr "" -#: instances/templates/instance.html:1356 +#: instances/templates/instances/settings_tab.html:695 msgid "Clone Name" msgstr "" -#: instances/templates/instance.html:1363 -#: instances/templates/instance.html:1394 +#: instances/templates/instances/settings_tab.html:702 +#: instances/templates/instances/settings_tab.html:733 msgid "Guess" msgstr "" -#: instances/templates/instance.html:1382 +#: instances/templates/instances/settings_tab.html:721 msgid "Network devices" msgstr "" -#: instances/templates/instance.html:1392 +#: instances/templates/instances/settings_tab.html:731 msgid "Random" msgstr "" -#: instances/templates/instance.html:1407 +#: instances/templates/instances/settings_tab.html:746 msgid "Storage devices" msgstr "" -#: instances/templates/instance.html:1432 -#: instances/templates/instance.html:1455 +#: instances/templates/instances/settings_tab.html:771 +#: instances/templates/instances/settings_tab.html:794 msgid "Title" msgstr "" -#: instances/templates/instance.html:1452 +#: instances/templates/instances/settings_tab.html:791 msgid "To set instance template name description, shutdown the instance." msgstr "" -#: instances/templates/instance.html:1467 +#: instances/templates/instances/settings_tab.html:806 msgid "Is template" msgstr "" -#: instances/templates/instance.html:1488 +#: instances/templates/instances/settings_tab.html:827 msgid "To set instance video model, shutdown the instance." msgstr "" -#: instances/templates/instance.html:1491 +#: instances/templates/instances/settings_tab.html:830 msgid "Primary Video Model" msgstr "" -#: instances/templates/instance.html:1512 +#: instances/templates/instances/settings_tab.html:834 +msgid "please choose" +msgstr "" + +#: instances/templates/instances/settings_tab.html:841 +#: instances/templates/instances/settings_tab.html:843 +#: instances/templates/instances/settings_tab.html:863 +#: instances/templates/instances/settings_tab.html:865 +#: instances/templates/instances/settings_tab.html:893 +#: secrets/templates/secrets.html:103 +msgid "Set" +msgstr "" + +#: instances/templates/instances/settings_tab.html:851 msgid "To set instance vCPUs hotpluggable" msgstr "" -#: instances/templates/instance.html:1515 +#: instances/templates/instances/settings_tab.html:854 msgid "vCPU Hot Plug" msgstr "" -#: instances/templates/instance.html:1519 -#: instances/templates/instance.html:1550 +#: instances/templates/instances/settings_tab.html:858 +#: instances/templates/instances/settings_tab.html:889 msgid "Enabled" msgstr "" -#: instances/templates/instance.html:1520 -#: instances/templates/instance.html:1551 +#: instances/templates/instances/settings_tab.html:859 +#: instances/templates/instances/settings_tab.html:890 msgid "Disabled" msgstr "" -#: instances/templates/instance.html:1534 +#: instances/templates/instances/settings_tab.html:873 msgid "To Enable/Disable Qemu Guest Agent. Status" msgstr "" -#: instances/templates/instance.html:1539 +#: instances/templates/instances/settings_tab.html:878 msgid "Disconnected" msgstr "" -#: instances/templates/instance.html:1542 +#: instances/templates/instances/settings_tab.html:881 #: venv/lib/python3.6/site-packages/django/forms/widgets.py:709 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:703 msgid "Unknown" msgstr "" -#: instances/templates/instance.html:1546 +#: instances/templates/instances/settings_tab.html:885 msgid "Qemu Guest Agent" msgstr "" -#: instances/templates/instance.html:1572 +#: instances/templates/instances/snapshots_tab.html:9 +#: instances/templates/instances/snapshots_tab.html:31 +#: instances/templates/instances/snapshots_tab.html:33 +msgid "Take Snapshot" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:14 +msgid "Manage Snapshots" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:22 +msgid "" +"This may take more than an hour, depending on how much content is on your " +"droplet and how large the disk is." +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:27 +msgid "Enter Snapshot Name" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:38 +msgid "To take a snapshot please Power Off the instance." +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:43 +msgid "Choose a snapshot for restore/delete" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:61 +msgid "Revert to this Snapshot" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:66 +msgid "To restore snapshots you need Power Off the instance." +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:75 +msgid "Delete Snapshot" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:86 +msgid "You do not have any snapshots" +msgstr "" + +#: instances/templates/instances/stats_tab.html:8 msgid "Real Time" msgstr "" -#: instances/templates/instance.html:1586 +#: instances/templates/instances/stats_tab.html:23 msgid "CPU Usage" msgstr "" -#: instances/templates/instance.html:1598 +#: instances/templates/instances/stats_tab.html:36 msgid "Memory Usage" msgstr "" -#: instances/templates/instance.html:1611 +#: instances/templates/instances/stats_tab.html:50 msgid "Bandwidth Device" msgstr "" -#: instances/templates/instance.html:1625 +#: instances/templates/instances/stats_tab.html:65 msgid "Disk I/O device" msgstr "" -#: instances/templates/instance.html:1664 -msgid "Destroy Instance" -msgstr "" - -#: instances/templates/instance.html:1671 -msgid "Delete storage for instance?" -msgstr "" - -#: instances/templates/instance.html:1680 -msgid "Remove Instance's data" -msgstr "" - -#: instances/templates/instance.html:1687 -msgid "Remove Instance's NVRAM" -msgstr "" - -#: instances/templates/instance_actions.html:24 -#: instances/templates/instance_actions.html:41 -msgid "VNC Console" -msgstr "" - -#: instances/templates/instances.html:61 -msgid "Hypervisor doesn't have any Instances" -msgstr "" - -#: instances/views.py:224 +#: instances/utils.py:122 msgid "None available device name" msgstr "" -#: instances/views.py:260 +#: instances/utils.py:239 +msgid "Deleting due to multiple(Instance Name) records." +msgstr "" + +#: instances/utils.py:247 +msgid "Deleting due to multiple(UUID) records." +msgstr "" + +#: instances/views.py:259 +msgid "Templates cannot be started." +msgstr "" + +#: instances/views.py:362 #, python-brace-format msgid "Migrate to {new_compute.hostname}" msgstr "" -#: instances/views.py:340 -#, python-brace-format -msgid "Fixing UUID {uuid}" -msgstr "" - -#: instances/views.py:345 -msgid "Instance does not exist: Creating new instance" -msgstr "" - -#: instances/views.py:370 instances/views.py:1190 -msgid "Templates cannot be started." -msgstr "" - -#: instances/views.py:437 +#: instances/views.py:385 msgid "Reset root password" msgstr "" -#: instances/views.py:445 instances/views.py:467 +#: instances/views.py:391 instances/views.py:417 msgid "Please shutdown down your instance and then try again" msgstr "" -#: instances/views.py:459 +#: instances/views.py:409 #, python-brace-format msgid "Installed new SSH public key {publickey.keyname}" msgstr "" -#: instances/views.py:477 +#: instances/views.py:436 #, python-brace-format msgid "User {quota_msg} quota reached, cannot resize CPU of '{instance.name}'!" msgstr "" -#: instances/views.py:483 +#: instances/views.py:442 msgid "Resize CPU" msgstr "" -#: instances/views.py:501 +#: instances/views.py:470 #, python-brace-format msgid "" "User {quota_msg} quota reached, cannot resize memory of '{instance.name}'!" msgstr "" -#: instances/views.py:507 +#: instances/views.py:476 msgid "Resize Memory" msgstr "" -#: instances/views.py:524 +#: instances/views.py:506 #, python-brace-format msgid "" "User {quota_msg} quota reached, cannot resize disks of '{instance.name}'!" msgstr "" -#: instances/views.py:528 +#: instances/views.py:510 msgid "Disk resize" msgstr "" @@ -2532,259 +2555,289 @@ msgstr "" msgid "Attach new disk {name} ({format})" msgstr "" -#: instances/views.py:571 +#: instances/views.py:580 #, python-brace-format msgid "Attach Existing disk: {target_dev}" msgstr "" -#: instances/views.py:603 +#: instances/views.py:636 msgid "Volume changes are applied. But it will be activated after shutdown" msgstr "" -#: instances/views.py:606 +#: instances/views.py:638 msgid "Volume is changed successfully." msgstr "" -#: instances/views.py:607 +#: instances/views.py:639 #, python-brace-format msgid "Edit disk: {target_dev}" msgstr "" -#: instances/views.py:623 +#: instances/views.py:661 #, python-brace-format msgid "Delete disk: {dev}" msgstr "" -#: instances/views.py:628 -#, python-brace-format -msgid "The disk: {dev} is detached but not deleted. Error: {err}" -msgstr "" - -#: instances/views.py:638 +#: instances/views.py:677 #, python-brace-format msgid "Detach disk: {dev}" msgstr "" -#: instances/views.py:646 +#: instances/views.py:690 #, python-brace-format msgid "Add CD-ROM: {target}" msgstr "" -#: instances/views.py:653 +#: instances/views.py:703 #, python-brace-format msgid "Detach CD-ROM: {dev}" msgstr "" -#: instances/views.py:661 +#: instances/views.py:716 #, python-brace-format msgid "Mount media: {dev}" msgstr "" -#: instances/views.py:669 +#: instances/views.py:729 #, python-brace-format msgid "Umount media: {dev}" msgstr "" -#: instances/views.py:676 +#: instances/views.py:742 #, python-brace-format msgid "New snapshot : {name}" msgstr "" -#: instances/views.py:683 +#: instances/views.py:753 #, python-brace-format msgid "Delete snapshot : {snap_name}" msgstr "" -#: instances/views.py:690 +#: instances/views.py:764 msgid "Successful revert snapshot: " msgstr "" -#: instances/views.py:693 +#: instances/views.py:767 msgid "Revert snapshot" msgstr "" -#: instances/views.py:716 +#: instances/views.py:781 #, python-brace-format msgid "VCPU {id} is enabled={enabled}" msgstr "" -#: instances/views.py:723 +#: instances/views.py:792 #, python-brace-format msgid "VCPU Hot-plug is enabled={status}" msgstr "" -#: instances/views.py:734 +#: instances/views.py:803 msgid "Set autostart" msgstr "" -#: instances/views.py:740 +#: instances/views.py:812 msgid "Unset autostart" msgstr "" -#: instances/views.py:746 +#: instances/views.py:821 msgid "Enable boot menu" msgstr "" -#: instances/views.py:752 +#: instances/views.py:830 msgid "Disable boot menu" msgstr "" -#: instances/views.py:764 +#: instances/views.py:845 msgid "Set boot order" msgstr "" -#: instances/views.py:767 +#: instances/views.py:848 msgid "Boot menu changes applied. But it will be activated after shutdown" msgstr "" -#: instances/views.py:770 +#: instances/views.py:850 msgid "Boot order changed successfully." msgstr "" -#: instances/views.py:778 +#: instances/views.py:861 msgid "Edit XML" msgstr "" -#: instances/views.py:792 -msgid "Enter the console password or select Generate" +#: instances/views.py:875 +#, python-brace-format +msgid "Set Quest Agent {status}" msgstr "" -#: instances/views.py:796 +#: instances/views.py:885 +msgid "Set Video Model" +msgstr "" + +#: instances/views.py:894 +msgid "Change network" +msgstr "" + +#: instances/views.py:907 +msgid "Network Device Config is changed. Please shutdown instance to activate." +msgstr "" + +#: instances/views.py:915 +msgid "Add network" +msgstr "" + +#: instances/views.py:929 +msgid "Delete network" +msgstr "" + +#: instances/views.py:945 +#, python-brace-format +msgid "Set Link State: {state}" +msgstr "" + +#: instances/views.py:964 +msgid "{qos_dir.capitalize()} QoS is set" +msgstr "" + +#: instances/views.py:968 networks/views.py:216 +msgid "{qos_dir.capitalize()} QoS is set. Network XML is changed." +msgstr "" + +#: instances/views.py:969 networks/views.py:217 +msgid "Stop and start network to activate new config" +msgstr "" + +#: instances/views.py:983 networks/views.py:233 +msgid "{qos_dir.capitalize()} QoS is deleted" +msgstr "" + +#: instances/views.py:987 networks/views.py:230 +msgid "{qos_dir.capitalize()} QoS is deleted. Network XML is changed. " +msgstr "" + +#: instances/views.py:988 networks/views.py:231 +msgid "Stop and start network to activate new config." +msgstr "" + +#: instances/views.py:1004 +msgid "Only one owner is allowed and the one already added" +msgstr "" + +#: instances/views.py:1009 +#, python-format +msgid "Added owner %(user)s" +msgstr "" + +#: instances/views.py:1020 +#, python-brace-format +msgid "Deleted owner {userinstance_id}" +msgstr "" + +#: instances/views.py:1052 +msgid "User '{quota_msg}' quota reached, cannot create '{clone_data['name']}'!" +msgstr "" + +#: instances/views.py:1055 +msgid "Instance '{clone_data['name']}' already exists!" +msgstr "" + +#: instances/views.py:1058 +msgid "Instance name '{clone_data['name']}' contains invalid characters!" +msgstr "" + +#: instances/views.py:1061 +msgid "Instance MAC '{clone_data['clone-net-mac-0']}' invalid format!" +msgstr "" + +#: instances/views.py:1071 +#, python-brace-format +msgid "Clone of '{instance.name}'" +msgstr "" + +#: instances/views.py:1104 msgid "" "Error setting console password. You should check that your instance have an " "graphic device." msgstr "" -#: instances/views.py:800 +#: instances/views.py:1107 msgid "Set VNC password" msgstr "" -#: instances/views.py:811 +#: instances/views.py:1115 msgid "Set VNC keymap" msgstr "" -#: instances/views.py:817 +#: instances/views.py:1120 msgid "Set VNC type" msgstr "" -#: instances/views.py:821 -msgid "Console type not supported" -msgstr "" - -#: instances/views.py:828 +#: instances/views.py:1125 msgid "Set VNC listen address" msgstr "" -#: instances/views.py:840 -#, python-brace-format -msgid "Set Quest Agent {status}" -msgstr "" - -#: instances/views.py:847 -msgid "Set Video Model" -msgstr "" - -#: instances/views.py:872 -msgid "Change network" -msgstr "" - -#: instances/views.py:885 -msgid "Network Device Config is changed. Please shutdown instance to activate." -msgstr "" - -#: instances/views.py:890 -msgid "Add network" -msgstr "" - -#: instances/views.py:900 -msgid "Delete network" -msgstr "" - -#: instances/views.py:912 -#, python-brace-format -msgid "Set Link State: {state}" -msgstr "" - -#: instances/views.py:928 -msgid "{qos_dir.capitalize()} QoS is set" -msgstr "" - -#: instances/views.py:931 networks/views.py:216 -msgid "{qos_dir.capitalize()} QoS is set. Network XML is changed." -msgstr "" - -#: instances/views.py:932 networks/views.py:217 -msgid "Stop and start network to activate new config" -msgstr "" - -#: instances/views.py:943 networks/views.py:233 -msgid "{qos_dir.capitalize()} QoS is deleted" -msgstr "" - -#: instances/views.py:946 networks/views.py:230 -msgid "{qos_dir.capitalize()} QoS is deleted. Network XML is changed. " -msgstr "" - -#: instances/views.py:947 networks/views.py:231 -msgid "Stop and start network to activate new config." -msgstr "" - -#: instances/views.py:959 -msgid "Only one owner is allowed and the one already added" -msgstr "" - -#: instances/views.py:964 -#, python-brace-format -msgid "Added owner {user_id}" -msgstr "" - -#: instances/views.py:972 -#, python-brace-format -msgid "Deleted owner {userinstance_id}" -msgstr "" - -#: instances/views.py:1001 -msgid "User '{quota_msg}' quota reached, cannot create '{clone_data['name']}'!" -msgstr "" - -#: instances/views.py:1004 -msgid "Instance '{clone_data['name']}' already exists!" -msgstr "" - -#: instances/views.py:1007 -msgid "Instance name '{clone_data['name']}' contains invalid characters!" -msgstr "" - -#: instances/views.py:1011 -msgid "Instance MAC '{clone_data['clone-net-mac-0']}' invalid format!" -msgstr "" - -#: instances/views.py:1027 -#, python-brace-format -msgid "Clone of '{instance.name}'" -msgstr "" - -#: instances/views.py:1046 +#: instances/views.py:1148 msgid "Edit options" msgstr "" -#: instances/views.py:1103 -msgid "Deleting due to multiple(Instance Name) records." -msgstr "" - -#: instances/views.py:1111 -msgid "Deleting due to multiple(UUID) records." -msgstr "" - -#: instances/views.py:1160 -#, python-brace-format -msgid "Problem occurred with host: {comp.name} - {status}" -msgstr "" - -#: instances/views.py:1218 +#: instances/views.py:1162 msgid "Send console.vv file" msgstr "" +#: instances/views.py:1214 instances/views.py:1307 +msgid "A virtual machine with this name already exists" +msgstr "" + +#: instances/views.py:1288 +msgid "You haven't defined any storage pools" +msgstr "" + +#: instances/views.py:1291 +msgid "You haven't defined any network pools" +msgstr "" + +#: instances/views.py:1310 +msgid "There is an instance with same name. Are you sure?" +msgstr "" + +#: instances/views.py:1313 +msgid "No Virtual Machine MAC has been entered" +msgstr "" + +#: instances/views.py:1337 +msgid "Image has already exist. Please check volumes or change instance name" +msgstr "" + +#: instances/views.py:1358 +msgid "First you need to create or select an image" +msgstr "" + +#: instances/views.py:1377 +msgid "Invalid cache mode" +msgstr "" + +#: instances/views.py:1414 +msgid "Instance is created" +msgstr "" + +#: instances/views.py:1433 +msgid "Flavor Created" +msgstr "" + +#: instances/views.py:1441 +msgid "Create Flavor" +msgstr "" + +#: instances/views.py:1452 +msgid "Flavor Updated" +msgstr "" + +#: instances/views.py:1460 +msgid "Update Flavor" +msgstr "" + +#: instances/views.py:1470 +msgid "Flavor Deleted" +msgstr "" + #: interfaces/forms.py:25 msgid "The IPv4 address must not contain any special characters" msgstr "" @@ -2845,6 +2898,17 @@ msgstr "" msgid "hotplug" msgstr "" +#: interfaces/templates/create_iface_block.html:44 +#: interfaces/templates/interface.html:77 +#: interfaces/templates/interfaces.html:62 +#: storages/templates/create_stg_block.html:35 +#: storages/templates/create_stg_block.html:64 +#: storages/templates/create_stg_block.html:93 +#: storages/templates/create_stg_block.html:158 +#: storages/templates/storages.html:64 +msgid "Type" +msgstr "" + #: interfaces/templates/create_iface_block.html:47 msgid "bridge" msgstr "" @@ -2923,12 +2987,12 @@ msgstr "" #: interfaces/templates/interface.html:56 #: interfaces/templates/interface.html:79 networks/templates/network.html:48 -#: storages/templates/storage.html:58 +#: storages/templates/storage.html:57 msgid "State" msgstr "" #: interfaces/templates/interface.html:63 networks/templates/network.html:55 -#: storages/templates/storage.html:66 +#: storages/templates/storage.html:65 msgid "Stop" msgstr "" @@ -2944,6 +3008,22 @@ msgstr "" msgid "Hypervisor doesn't have any Interfaces" msgstr "" +#: logs/models.py:6 +msgid "user" +msgstr "" + +#: logs/models.py:7 +msgid "instance" +msgstr "" + +#: logs/models.py:8 +msgid "message" +msgstr "" + +#: logs/models.py:9 +msgid "date" +msgstr "" + #: networks/forms.py:7 storages/forms.py:7 msgid "No pool name has been entered" msgstr "" @@ -2956,11 +3036,11 @@ msgstr "" msgid "No IPv6 subnet has been entered" msgstr "" -#: networks/forms.py:24 storages/forms.py:25 +#: networks/forms.py:24 storages/forms.py:22 msgid "The pool name must not contain any special characters" msgstr "" -#: networks/forms.py:26 storages/forms.py:27 +#: networks/forms.py:26 storages/forms.py:24 msgid "The pool name must not exceed 20 characters" msgstr "" @@ -3129,6 +3209,17 @@ msgstr "" msgid "IPv4 Fixed Addresses" msgstr "" +#: networks/templates/network.html:161 networks/templates/network.html:271 +#: nwfilters/templates/nwfilters.html:88 +msgid "Show" +msgstr "" + +#: networks/templates/network.html:169 networks/templates/network.html:279 +#: venv/lib/python3.6/site-packages/django/forms/widgets.py:395 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:377 +msgid "Clear" +msgstr "" + #: networks/templates/network.html:192 networks/templates/network.html:301 msgid "Edit entry" msgstr "" @@ -3310,7 +3401,7 @@ msgid "Private" msgstr "" #: secrets/templates/create_secret_block.html:36 -#: storages/templates/storage.html:56 +#: storages/templates/storage.html:55 msgid "Usage" msgstr "" @@ -3335,27 +3426,27 @@ msgstr "" msgid "Value" msgstr "" -#: storages/forms.py:10 storages/forms.py:39 +#: storages/forms.py:9 storages/forms.py:36 msgid "No path has been entered" msgstr "" -#: storages/forms.py:36 +#: storages/forms.py:33 msgid "The target must not contain any special characters" msgstr "" -#: storages/forms.py:48 +#: storages/forms.py:45 msgid "No device or path has been entered" msgstr "" -#: storages/forms.py:50 +#: storages/forms.py:47 msgid "The disk source must not contain any special characters" msgstr "" -#: storages/forms.py:66 storages/forms.py:85 +#: storages/forms.py:61 storages/forms.py:76 msgid "The image name must not contain any special characters" msgstr "" -#: storages/forms.py:68 storages/forms.py:87 +#: storages/forms.py:78 msgid "The image name must not exceed 120 characters" msgstr "" @@ -3424,66 +3515,63 @@ msgstr "" msgid "Local Path" msgstr "" -#: storages/templates/create_stg_vol_block.html:14 +#: storages/templates/create_stg_vol_block.html:15 msgid "Upload ISO Image" msgstr "" -#: storages/templates/create_stg_vol_block.html:28 +#: storages/templates/create_stg_vol_block.html:29 msgid "Upload" msgstr "" -#: storages/templates/create_stg_vol_block.html:45 +#: storages/templates/create_stg_vol_block.html:46 msgid "Add New Volume" msgstr "" -#: storages/templates/create_stg_vol_block.html:60 -#: storages/templates/storage.html:144 -msgid "qcow2" -msgstr "" - -#: storages/templates/create_stg_vol_block.html:61 -#: storages/templates/storage.html:143 -msgid "qcow" -msgstr "" - -#: storages/templates/create_stg_vol_block.html:62 -#: storages/templates/storage.html:142 -msgid "raw" -msgstr "" - -#: storages/templates/storage.html:46 +#: storages/templates/storage.html:45 msgid "Pool name" msgstr "" -#: storages/templates/storage.html:48 +#: storages/templates/storage.html:47 msgid "Pool type" msgstr "" -#: storages/templates/storage.html:50 +#: storages/templates/storage.html:49 msgid "Pool path" msgstr "" -#: storages/templates/storage.html:52 +#: storages/templates/storage.html:51 msgid "Pool status" msgstr "" -#: storages/templates/storage.html:87 storages/templates/storages.html:68 +#: storages/templates/storage.html:86 storages/templates/storages.html:68 msgid "Volumes" msgstr "" -#: storages/templates/storage.html:99 +#: storages/templates/storage.html:98 msgid "Allocated" msgstr "" -#: storages/templates/storage.html:120 +#: storages/templates/storage.html:119 msgid "Clone image" msgstr "" -#: storages/templates/storage.html:133 +#: storages/templates/storage.html:132 msgid "Convert" msgstr "" -#: storages/templates/storage.html:189 +#: storages/templates/storage.html:141 +msgid "raw" +msgstr "" + +#: storages/templates/storage.html:142 +msgid "qcow" +msgstr "" + +#: storages/templates/storage.html:143 +msgid "qcow2" +msgstr "" + +#: storages/templates/storage.html:188 msgid "Hypervisor doesn't have any Volumes" msgstr "" @@ -3491,44 +3579,44 @@ msgstr "" msgid "Hypervisor doesn't have any Storages" msgstr "" -#: storages/views.py:38 +#: storages/views.py:40 msgid "Pool name already use" msgstr "" -#: storages/views.py:42 +#: storages/views.py:44 msgid "You need create secret for pool" msgstr "" -#: storages/views.py:45 +#: storages/views.py:47 msgid "You need input all fields for creating ceph pool" msgstr "" -#: storages/views.py:153 -#, python-brace-format -msgid "Image file {name} is created successfully" -msgstr "" - -#: storages/views.py:165 +#: storages/views.py:129 #, python-brace-format msgid "Volume: {volname} is deleted." msgstr "" -#: storages/views.py:171 +#: storages/views.py:134 msgid "ISO image already exist" msgstr "" -#: storages/views.py:175 +#: storages/views.py:138 msgid "ISO: {request.FILES['file']} is uploaded." msgstr "" -#: storages/views.py:184 +#: storages/views.py:147 msgid "Name of volume already in use" msgstr "" -#: storages/views.py:195 +#: storages/views.py:157 msgid "{data['image']} image cloned as {name} successfully" msgstr "" +#: storages/views.py:196 +#, python-brace-format +msgid "Image file {name} is created successfully" +msgstr "" + #: templates/403.html:3 msgid "403" msgstr "" @@ -3575,6 +3663,10 @@ msgid "" "to complete you request." msgstr "" +#: templates/common/confirm_delete.html:12 +msgid "Are you sure you want to delete" +msgstr "" + #: templates/errors_block.html:8 msgid "Error" msgstr "" @@ -3598,57 +3690,71 @@ msgid "close" msgstr "" #: venv/lib/python3.6/site-packages/django/contrib/messages/apps.py:7 +#: venv2/lib/python2.7/site-packages/django/contrib/messages/apps.py:7 msgid "Messages" msgstr "" #: venv/lib/python3.6/site-packages/django/contrib/sitemaps/apps.py:7 +#: venv2/lib/python2.7/site-packages/django/contrib/sitemaps/apps.py:7 msgid "Site Maps" msgstr "" #: venv/lib/python3.6/site-packages/django/contrib/staticfiles/apps.py:9 +#: venv2/lib/python2.7/site-packages/django/contrib/staticfiles/apps.py:7 msgid "Static Files" msgstr "" #: venv/lib/python3.6/site-packages/django/contrib/syndication/apps.py:7 +#: venv2/lib/python2.7/site-packages/django/contrib/syndication/apps.py:7 msgid "Syndication" msgstr "" #: venv/lib/python3.6/site-packages/django/core/paginator.py:45 +#: venv2/lib/python2.7/site-packages/django/core/paginator.py:43 msgid "That page number is not an integer" msgstr "" #: venv/lib/python3.6/site-packages/django/core/paginator.py:47 +#: venv2/lib/python2.7/site-packages/django/core/paginator.py:45 msgid "That page number is less than 1" msgstr "" #: venv/lib/python3.6/site-packages/django/core/paginator.py:52 +#: venv2/lib/python2.7/site-packages/django/core/paginator.py:50 msgid "That page contains no results" msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:31 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:34 msgid "Enter a valid value." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:102 #: venv/lib/python3.6/site-packages/django/forms/fields.py:658 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:107 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:671 msgid "Enter a valid URL." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:154 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:160 msgid "Enter a valid integer." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:165 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:171 msgid "Enter a valid email address." msgstr "" #. Translators: "letters" means latin letters: a-z and A-Z. #: venv/lib/python3.6/site-packages/django/core/validators.py:239 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:245 msgid "" "Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:246 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:252 msgid "" "Enter a valid 'slug' consisting of Unicode letters, numbers, underscores, or " "hyphens." @@ -3656,39 +3762,51 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:255 #: venv/lib/python3.6/site-packages/django/core/validators.py:275 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:257 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:277 msgid "Enter a valid IPv4 address." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:260 #: venv/lib/python3.6/site-packages/django/core/validators.py:276 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:262 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:278 msgid "Enter a valid IPv6 address." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:270 #: venv/lib/python3.6/site-packages/django/core/validators.py:274 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:272 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:276 msgid "Enter a valid IPv4 or IPv6 address." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:304 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:308 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1131 msgid "Enter only digits separated by commas." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:310 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:314 #, python-format msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:342 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:345 #, python-format msgid "Ensure this value is less than or equal to %(limit_value)s." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:351 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:354 #, python-format msgid "Ensure this value is greater than or equal to %(limit_value)s." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:361 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:364 #, python-format msgid "" "Ensure this value has at least %(limit_value)d character (it has " @@ -3700,6 +3818,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:376 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:379 #, python-format msgid "" "Ensure this value has at most %(limit_value)d character (it has " @@ -3713,10 +3832,13 @@ msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:395 #: venv/lib/python3.6/site-packages/django/forms/fields.py:290 #: venv/lib/python3.6/site-packages/django/forms/fields.py:325 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:303 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:340 msgid "Enter a number." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:397 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:399 #, python-format msgid "Ensure that there are no more than %(max)s digit in total." msgid_plural "Ensure that there are no more than %(max)s digits in total." @@ -3724,6 +3846,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:402 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:404 #, python-format msgid "Ensure that there are no more than %(max)s decimal place." msgid_plural "Ensure that there are no more than %(max)s decimal places." @@ -3731,6 +3854,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:407 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:409 #, python-format msgid "" "Ensure that there are no more than %(max)s digit before the decimal point." @@ -3740,6 +3864,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:469 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:463 #, python-format msgid "" "File extension '%(extension)s' is not allowed. Allowed extensions are: " @@ -3752,28 +3877,35 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/base.py:1162 #: venv/lib/python3.6/site-packages/django/forms/models.py:756 +#: venv2/lib/python2.7/site-packages/django/db/models/base.py:1209 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:749 msgid "and" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/base.py:1164 +#: venv2/lib/python2.7/site-packages/django/db/models/base.py:1211 #, python-format msgid "%(model_name)s with this %(field_labels)s already exists." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:104 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:116 #, python-format msgid "Value %(value)r is not a valid choice." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:105 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:117 msgid "This field cannot be null." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:106 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:118 msgid "This field cannot be blank." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:107 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:119 #, python-format msgid "%(model_name)s with this %(field_label)s already exists." msgstr "" @@ -3781,33 +3913,42 @@ msgstr "" #. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. #. Eg: "Title must be unique for pub_date year" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:111 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:123 #, python-format msgid "" "%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:128 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:140 #, python-format msgid "Field of type: %(field_type)s" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:905 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1772 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:901 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1809 msgid "Integer" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:909 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1770 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:905 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1807 #, python-format msgid "'%(value)s' value must be an integer." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:984 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1850 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:978 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1878 msgid "Big (8 byte) integer" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:996 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:990 #, python-format msgid "'%(value)s' value must be either True or False." msgstr "" @@ -3818,19 +3959,23 @@ msgid "'%(value)s' value must be either True, False, or None." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:999 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:992 msgid "Boolean (Either True or False)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1040 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1058 #, python-format msgid "String (up to %(max_length)s)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1104 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1115 msgid "Comma-separated integers" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1153 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1172 #, python-format msgid "" "'%(value)s' value has an invalid date format. It must be in YYYY-MM-DD " @@ -3839,6 +3984,8 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1155 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1298 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1174 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1319 #, python-format msgid "" "'%(value)s' value has the correct format (YYYY-MM-DD) but it is an invalid " @@ -3846,10 +3993,12 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1158 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1177 msgid "Date (without time)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1296 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1317 #, python-format msgid "" "'%(value)s' value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." @@ -3857,6 +4006,7 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1300 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1321 #, python-format msgid "" "'%(value)s' value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" @@ -3864,19 +4014,23 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1304 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1325 msgid "Date (with time)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1452 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1475 #, python-format msgid "'%(value)s' value must be a decimal number." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1454 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1477 msgid "Decimal number" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1593 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1628 #, python-format msgid "" "'%(value)s' value has an invalid format. It must be in [DD] [HH:[MM:]]ss[." @@ -3884,66 +4038,81 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1596 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1631 msgid "Duration" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1646 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1683 msgid "Email address" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1669 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1707 msgid "File path" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1735 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1773 #, python-format msgid "'%(value)s' value must be a float." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1737 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1775 msgid "Floating point number" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1866 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1893 msgid "IPv4 address" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1897 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1924 msgid "IP address" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1977 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1978 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2006 #, python-format msgid "'%(value)s' value must be either None, True or False." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1980 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2008 msgid "Boolean (Either True, False or None)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2015 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2071 msgid "Positive integer" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2028 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2083 msgid "Positive small integer" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2042 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2096 #, python-format msgid "Slug (up to %(max_length)s)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2074 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2130 msgid "Small integer" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2081 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2137 msgid "Text" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2109 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2163 #, python-format msgid "" "'%(value)s' value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " @@ -3951,6 +4120,7 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2111 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2165 #, python-format msgid "" "'%(value)s' value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " @@ -3958,18 +4128,22 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2114 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2168 msgid "Time" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2240 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2296 msgid "URL" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2262 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2319 msgid "Raw binary data" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2312 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2366 #, python-format msgid "'%(value)s' is not a valid UUID." msgstr "" @@ -3979,65 +4153,81 @@ msgid "Universally unique identifier" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/files.py:221 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/files.py:228 msgid "File" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:778 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:788 #, python-format msgid "%(model)s instance with %(field)s %(value)r does not exist." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:780 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:790 msgid "Foreign Key (type determined by related field)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:1007 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:1029 msgid "One-to-one relationship" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:1057 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:1104 #, python-format msgid "%(from)s-%(to)s relationship" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:1058 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:1105 #, python-format msgid "%(from)s-%(to)s relationships" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:1100 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:1147 msgid "Many-to-many relationship" msgstr "" #. Translators: If found as last label character, these punctuation #. characters will prevent the default label_suffix to be appended to the label #: venv/lib/python3.6/site-packages/django/forms/boundfield.py:146 +#: venv2/lib/python2.7/site-packages/django/forms/boundfield.py:181 msgid ":?.!" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:53 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:56 msgid "This field is required." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:245 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:258 msgid "Enter a whole number." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:396 #: venv/lib/python3.6/site-packages/django/forms/fields.py:1126 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:418 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:1149 msgid "Enter a valid date." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:420 #: venv/lib/python3.6/site-packages/django/forms/fields.py:1127 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:442 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:1150 msgid "Enter a valid time." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:442 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:464 msgid "Enter a valid date/time." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:471 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:493 msgid "Enter a valid duration." msgstr "" @@ -4047,18 +4237,22 @@ msgid "The number of days must be between {min_days} and {max_days}." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:532 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:547 msgid "No file was submitted. Check the encoding type on the form." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:533 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:548 msgid "No file was submitted." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:534 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:549 msgid "The submitted file is empty." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:536 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:551 #, python-format msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." msgid_plural "" @@ -4067,10 +4261,12 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:539 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:554 msgid "Please either submit a file or check the clear checkbox, not both." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:600 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:619 msgid "" "Upload a valid image. The file you uploaded was either not an image or a " "corrupted image." @@ -4079,6 +4275,9 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:762 #: venv/lib/python3.6/site-packages/django/forms/fields.py:852 #: venv/lib/python3.6/site-packages/django/forms/models.py:1270 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:776 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:872 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1265 #, python-format msgid "Select a valid choice. %(value)s is not one of the available choices." msgstr "" @@ -4086,32 +4285,41 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:853 #: venv/lib/python3.6/site-packages/django/forms/fields.py:968 #: venv/lib/python3.6/site-packages/django/forms/models.py:1269 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:873 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:990 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1264 msgid "Enter a list of values." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:969 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:991 msgid "Enter a complete value." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:1185 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:1208 msgid "Enter a valid UUID." msgstr "" #. Translators: This is the default suffix added to form field labels #: venv/lib/python3.6/site-packages/django/forms/forms.py:86 +#: venv2/lib/python2.7/site-packages/django/forms/forms.py:87 msgid ":" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/forms.py:212 +#: venv2/lib/python2.7/site-packages/django/forms/forms.py:213 #, python-format msgid "(Hidden field %(name)s) %(error)s" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/formsets.py:91 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:97 msgid "ManagementForm data is missing or has been tampered with" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/formsets.py:338 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:355 #, python-format msgid "Please submit %d or fewer forms." msgid_plural "Please submit %d or fewer forms." @@ -4119,6 +4327,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/forms/formsets.py:345 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:362 #, python-format msgid "Please submit %d or more forms." msgid_plural "Please submit %d or more forms." @@ -4127,20 +4336,25 @@ msgstr[1] "" #: venv/lib/python3.6/site-packages/django/forms/formsets.py:371 #: venv/lib/python3.6/site-packages/django/forms/formsets.py:373 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:390 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:392 msgid "Order" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:751 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:744 #, python-format msgid "Please correct the duplicate data for %(field)s." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:755 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:748 #, python-format msgid "Please correct the duplicate data for %(field)s, which must be unique." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:761 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:754 #, python-format msgid "" "Please correct the duplicate data for %(field_name)s which must be unique " @@ -4148,6 +4362,7 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:770 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:763 msgid "Please correct the duplicate values below." msgstr "" @@ -4156,6 +4371,7 @@ msgid "The inline value did not match the parent instance." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:1158 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1154 msgid "Select a valid choice. That choice is not one of the available choices." msgstr "" @@ -4165,6 +4381,7 @@ msgid "\"%(pk)s\" is not a valid value." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/utils.py:162 +#: venv2/lib/python2.7/site-packages/django/forms/utils.py:172 #, python-format msgid "" "%(datetime)s couldn't be interpreted in time zone %(current_timezone)s; it " @@ -4172,23 +4389,29 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/widgets.py:396 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:378 msgid "Currently" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/widgets.py:710 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:704 msgid "Yes" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/widgets.py:711 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:705 msgid "No" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:788 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:851 msgid "yes,no,maybe" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:817 #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:834 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:880 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:897 #, python-format msgid "%(size)d byte" msgid_plural "%(size)d bytes" @@ -4196,327 +4419,401 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:836 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:899 #, python-format msgid "%s KB" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:838 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:901 #, python-format msgid "%s MB" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:840 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:903 #, python-format msgid "%s GB" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:842 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:905 #, python-format msgid "%s TB" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:844 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:907 #, python-format msgid "%s PB" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:62 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:66 msgid "p.m." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:63 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:67 msgid "a.m." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:68 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:72 msgid "PM" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:69 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:73 msgid "AM" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:150 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:158 msgid "midnight" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:152 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:160 msgid "noon" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Monday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Tuesday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Wednesday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Thursday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Friday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:7 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:7 msgid "Saturday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:7 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:7 msgid "Sunday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Mon" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Tue" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Wed" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Thu" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Fri" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:11 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:11 msgid "Sat" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:11 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:11 msgid "Sun" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "January" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "February" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "March" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "April" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "May" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "June" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "July" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "August" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "September" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "October" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "November" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:16 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:20 msgid "December" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "jan" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "feb" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "mar" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "apr" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "may" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "jun" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "jul" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "aug" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "sep" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "oct" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "nov" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "dec" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:23 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:31 msgctxt "abbrev. month" msgid "Jan." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:24 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:32 msgctxt "abbrev. month" msgid "Feb." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:25 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:33 msgctxt "abbrev. month" msgid "March" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:26 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:34 msgctxt "abbrev. month" msgid "April" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:27 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:35 msgctxt "abbrev. month" msgid "May" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:28 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:36 msgctxt "abbrev. month" msgid "June" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:29 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:37 msgctxt "abbrev. month" msgid "July" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:30 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:38 msgctxt "abbrev. month" msgid "Aug." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:31 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:39 msgctxt "abbrev. month" msgid "Sept." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:32 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:40 msgctxt "abbrev. month" msgid "Oct." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:33 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:41 msgctxt "abbrev. month" msgid "Nov." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:34 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:42 msgctxt "abbrev. month" msgid "Dec." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:37 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:45 msgctxt "alt. month" msgid "January" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:38 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:46 msgctxt "alt. month" msgid "February" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:39 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:47 msgctxt "alt. month" msgid "March" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:40 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:48 msgctxt "alt. month" msgid "April" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:41 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:49 msgctxt "alt. month" msgid "May" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:42 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:50 msgctxt "alt. month" msgid "June" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:43 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:51 msgctxt "alt. month" msgid "July" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:44 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:52 msgctxt "alt. month" msgid "August" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:45 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:53 msgctxt "alt. month" msgid "September" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:46 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:54 msgctxt "alt. month" msgid "October" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:47 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:55 msgctxt "alt. month" msgid "November" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:48 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:56 msgctxt "alt. month" msgid "December" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/ipv6.py:8 +#: venv2/lib/python2.7/site-packages/django/utils/ipv6.py:12 msgid "This is not a valid IPv6 address." msgstr "" @@ -4527,16 +4824,20 @@ msgid "%(truncated_text)s…" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/text.py:233 +#: venv2/lib/python2.7/site-packages/django/utils/text.py:251 msgid "or" msgstr "" #. Translators: This string is used as a separator between list elements #: venv/lib/python3.6/site-packages/django/utils/text.py:252 #: venv/lib/python3.6/site-packages/django/utils/timesince.py:83 +#: venv2/lib/python2.7/site-packages/django/utils/text.py:270 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:71 msgid ", " msgstr "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:9 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:11 #, python-format msgid "%d year" msgid_plural "%d years" @@ -4544,6 +4845,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:12 #, python-format msgid "%d month" msgid_plural "%d months" @@ -4551,6 +4853,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:11 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:13 #, python-format msgid "%d week" msgid_plural "%d weeks" @@ -4558,6 +4861,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:12 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:14 #, python-format msgid "%d day" msgid_plural "%d days" @@ -4565,6 +4869,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:13 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:15 #, python-format msgid "%d hour" msgid_plural "%d hours" @@ -4572,6 +4877,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:16 #, python-format msgid "%d minute" msgid_plural "%d minutes" @@ -4579,18 +4885,22 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:72 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:60 msgid "0 minutes" msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:110 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:109 msgid "Forbidden" msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:111 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:110 msgid "CSRF verification failed. Request aborted." msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:115 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:114 msgid "" "You are seeing this message because this HTTPS site requires a 'Referer " "header' to be sent by your Web browser, but none was sent. This header is " @@ -4599,6 +4909,7 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:120 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:119 msgid "" "If you have configured your browser to disable 'Referer' headers, please re-" "enable them, at least for this site, or for HTTPS connections, or for 'same-" @@ -4615,6 +4926,7 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:132 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:124 msgid "" "You are seeing this message because this site requires a CSRF cookie when " "submitting forms. This cookie is required for security reasons, to ensure " @@ -4622,44 +4934,56 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:137 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:129 msgid "" "If you have configured your browser to disable cookies, please re-enable " "them, at least for this site, or for 'same-origin' requests." msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:142 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:134 msgid "More information is available with DEBUG=True." msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:41 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:48 msgid "No year specified" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:61 #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:111 #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:208 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:72 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:132 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:249 msgid "Date out of range" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:90 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:107 msgid "No month specified" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:142 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:169 msgid "No day specified" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:188 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:225 msgid "No week specified" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:338 #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:367 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:387 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:415 #, python-format msgid "No %(verbose_name_plural)s available" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:589 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:669 #, python-format msgid "" "Future %(verbose_name_plural)s not available because %(class_name)s." @@ -4667,39 +4991,47 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:623 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:703 #, python-format msgid "Invalid date string '%(datestr)s' given format '%(format)s'" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/detail.py:54 +#: venv2/lib/python2.7/site-packages/django/views/generic/detail.py:55 #, python-format msgid "No %(verbose_name)s found matching the query" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/list.py:67 +#: venv2/lib/python2.7/site-packages/django/views/generic/list.py:77 msgid "Page is not 'last', nor can it be converted to an int." msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/list.py:72 +#: venv2/lib/python2.7/site-packages/django/views/generic/list.py:82 #, python-format msgid "Invalid page (%(page_number)s): %(message)s" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/list.py:154 +#: venv2/lib/python2.7/site-packages/django/views/generic/list.py:172 #, python-format msgid "Empty list and '%(class_name)s.allow_empty' is False." msgstr "" #: venv/lib/python3.6/site-packages/django/views/static.py:40 +#: venv2/lib/python2.7/site-packages/django/views/static.py:44 msgid "Directory indexes are not allowed here." msgstr "" #: venv/lib/python3.6/site-packages/django/views/static.py:42 +#: venv2/lib/python2.7/site-packages/django/views/static.py:46 #, python-format msgid "\"%(path)s\" does not exist" msgstr "" #: venv/lib/python3.6/site-packages/django/views/static.py:80 +#: venv2/lib/python2.7/site-packages/django/views/static.py:86 #, python-format msgid "Index of %(directory)s" msgstr "" @@ -4751,3 +5083,271 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/views/templates/default_urlconf.html:408 msgid "Connect, get help, or contribute" msgstr "" + +#: venv/lib/python3.6/site-packages/django_icons/renderers/image.py:217 +msgid "Icon of {}" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:58 +msgid "Please enter your OTP token." +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:59 +#, python-brace-format +msgid "Error generating challenge: {0}" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:60 +msgid "The selected OTP device is not interactive" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:61 +#, python-brace-format +msgid "OTP Challenge: {0}" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:62 +msgid "Invalid token. Please make sure you have entered it correctly." +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:64 +#, python-format +msgid "" +"Verification temporarily disabled because of %(failure_count)d failed " +"attempt, please try again soon." +msgid_plural "" +"Verification temporarily disabled because of %(failure_count)d failed " +"attempts, please try again soon." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:67 +msgid "Verification of the token is currently disabled" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:36 +msgid "Please correct the error below." +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:36 +msgid "Please correct the errors below." +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:52 +#, python-format +msgid "" +"You are authenticated as %(username)s, but are not authorized to access this " +"page. Would you like to login to a different account?" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:72 +msgid "OTP Device:" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:77 +msgid "OTP Token:" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:82 +msgid "Forgotten your password or username?" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:86 +msgid "Log in" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:88 +msgid "Get OTP Challenge" +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1093 +msgid "The inline foreign key did not match the parent instance primary key." +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1267 +#, python-format +msgid "\"%(pk)s\" is not a valid value for a primary key." +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/utils/text.py:81 +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s..." +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:520 +msgid "Welcome to Django" +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:521 +msgid "It worked!" +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:522 +msgid "Congratulations on your first Django-powered page." +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:524 +msgid "" +"Next, start your first app by running python manage.py startapp " +"[app_label]." +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:527 +msgid "" +"You're seeing this message because you have DEBUG = True in " +"your Django settings file and you haven't configured any URLs. Get to work!" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:313 +msgid "usage: " +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:821 +msgid ".__call__() not defined" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1105 +#, python-format +msgid "unknown parser %r (choices: %s)" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1146 +#, python-format +msgid "argument \"-\" with mode %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1349 +#, python-format +msgid "cannot merge actions - two groups are named %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1387 +msgid "'required' is an invalid argument for positionals" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1407 +#, python-format +msgid "invalid option string %r: must start with a character %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1428 +#, python-format +msgid "dest= is required for options like %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1445 +#, python-format +msgid "invalid conflict_resolution value: %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1463 +#, python-format +msgid "conflicting option string(s): %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1526 +msgid "mutually exclusive arguments must be optional" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1596 +msgid "positional arguments" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1597 +msgid "optional arguments" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1615 +msgid "show this help message and exit" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1621 +msgid "show program's version number and exit" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1653 +msgid "cannot have multiple subparser arguments" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1705 +#, python-format +msgid "unrecognized arguments: %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1802 +#, python-format +msgid "not allowed with argument %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1848 +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1862 +#, python-format +msgid "ignored explicit argument %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1952 +msgid "too few arguments" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1959 +#, python-format +msgid "argument %s is required" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1973 +#, python-format +msgid "one of the arguments %s is required" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2019 +msgid "expected one argument" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2020 +msgid "expected at most one argument" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2021 +msgid "expected at least one argument" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2023 +#, python-format +msgid "expected %s argument(s)" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2080 +#, python-format +msgid "ambiguous option: %s could match %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2142 +#, python-format +msgid "unexpected option string: %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2243 +#, python-format +msgid "%r is not callable" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2259 +#, python-format +msgid "invalid %s value: %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2269 +#, python-format +msgid "invalid choice: %r (choose from %s)" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2362 +#, python-format +msgid "%s: error: %s\n" +msgstr "" + +#: webvirtcloud/middleware.py:21 +#, python-format +msgid "libvirt Error - %(exception)s" +msgstr "" diff --git a/locale/nl/LC_MESSAGES/django.po b/locale/nl/LC_MESSAGES/django.po index 5e57191..8572384 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-11 08:32+0000\n" +"POT-Creation-Date: 2020-07-20 09:29+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,228 +18,181 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: accounts/forms.py:10 -msgid "No username has been entered" +#: accounts/forms.py:24 +msgid "Instance owned by another user" msgstr "" -#: accounts/forms.py:13 -msgid "No password has been entered" +#: accounts/models.py:24 +#, python-format +msgid "Instance \"%(inst)s\" of user %(user)s" msgstr "" -#: accounts/forms.py:19 create/forms.py:23 -msgid "The flavor name must not contain any special characters" -msgstr "" - -#: accounts/forms.py:21 create/forms.py:25 -msgid "The flavor name must not exceed 20 characters" -msgstr "" - -#: accounts/forms.py:26 create/forms.py:30 -msgid "Flavor name is already use" +#: accounts/models.py:32 +msgid "key name" msgstr "" #: accounts/models.py:33 +msgid "public key" +msgstr "" + +#: accounts/models.py:42 +msgid "max instances" +msgstr "" + +#: accounts/models.py:44 accounts/models.py:51 accounts/models.py:57 +#: accounts/models.py:63 msgid "-1 for unlimited. Any integer value" msgstr "" -#: accounts/models.py:85 +#: accounts/models.py:49 +msgid "max CPUs" +msgstr "" + +#: accounts/models.py:55 +msgid "max memory" +msgstr "" + +#: accounts/models.py:61 +msgid "max disk size" +msgstr "" + +#: accounts/models.py:77 msgid "Can change password" msgstr "" -#: accounts/templates/account.html:3 admin/templates/admin/common/form.html:6 -#: admin/templates/admin/logs.html:32 admin/templates/admin/user_form.html:6 -#: instances/templates/add_instance_owner_block.html:18 -#: instances/templates/allinstances_index_grouped.html:7 -#: instances/templates/allinstances_index_nongrouped.html:6 -#: instances/templates/instance.html:1644 instances/templates/instances.html:71 -msgid "User" +#: accounts/templates/account.html:4 accounts/templates/account.html:12 +msgid "User Profile" msgstr "" -#: accounts/templates/account.html:23 accounts/templates/profile.html:98 -msgid "Key name" +#: accounts/templates/account.html:21 +#: computes/templates/computes/instances.html:5 +#: computes/templates/computes/instances.html:32 +#: computes/templates/overview.html:16 instances/templates/allinstances.html:5 +#: instances/templates/allinstances.html:9 +#: instances/templates/bottom_bar.html:17 +#: interfaces/templates/interface.html:14 +#: interfaces/templates/interfaces.html:17 networks/templates/network.html:16 +#: networks/templates/networks.html:20 nwfilters/templates/nwfilter.html:15 +#: nwfilters/templates/nwfilters.html:24 secrets/templates/secrets.html:20 +#: storages/templates/storage.html:20 storages/templates/storages.html:20 +#: templates/navbar.html:14 +msgid "Instances" msgstr "" -#: accounts/templates/account.html:24 accounts/templates/profile.html:104 -msgid "Public key" +#: accounts/templates/account.html:24 +msgid "Public Keys" msgstr "" -#: accounts/templates/account.html:47 accounts/templates/accounts-list.html:25 -#: accounts/templates/accounts.html:21 admin/templates/admin/group_list.html:24 -#: admin/templates/admin/logs.html:21 admin/templates/admin/user_list.html:25 -#: computes/templates/computes.html:241 -#: create/templates/create_instance_w2.html:70 -#: instances/templates/allinstances.html:33 -#: instances/templates/allinstances.html:49 -#: instances/templates/instances.html:61 -#: interfaces/templates/interfaces.html:47 networks/templates/networks.html:50 -#: nwfilters/templates/nwfilters.html:138 secrets/templates/secrets.html:50 -#: storages/templates/storage.html:189 storages/templates/storages.html:50 -msgid "Warning" -msgstr "" - -#: accounts/templates/account.html:47 -msgid "User doesn't have any Instance" -msgstr "" - -#: accounts/templates/account.html:56 -#: accounts/templates/create_user_inst_block.html:18 -#: admin/templates/admin/logs.html:33 instances/templates/instance.html:4 +#: accounts/templates/account.html:34 admin/templates/admin/logs.html:34 +#: instances/templates/instance.html:4 msgid "Instance" msgstr "" -#: accounts/templates/account.html:57 accounts/templates/account.html:88 +#: accounts/templates/account.html:35 msgid "VNC" msgstr "" -#: accounts/templates/account.html:58 accounts/templates/account.html:97 -#: instances/templates/instance.html:88 instances/templates/instance.html:412 -#: instances/templates/instance.html:414 instances/templates/instance.html:441 -#: instances/templates/instance.html:476 instances/templates/instance.html:480 -#: instances/templates/instance.html:497 instances/templates/instance.html:499 -#: instances/templates/instance.html:504 +#: accounts/templates/account.html:36 instances/templates/instance.html:87 +#: instances/templates/instances/resize_tab.html:56 +#: instances/templates/instances/resize_tab.html:58 +#: instances/templates/instances/resize_tab.html:85 +#: instances/templates/instances/resize_tab.html:121 +#: instances/templates/instances/resize_tab.html:125 +#: instances/templates/instances/resize_tab.html:151 +#: instances/templates/instances/resize_tab.html:153 +#: instances/templates/instances/resize_tab.html:158 msgid "Resize" msgstr "" -#: accounts/templates/account.html:59 accounts/templates/account.html:106 -#: accounts/templates/account.html:127 +#: accounts/templates/account.html:37 accounts/templates/account.html:55 #: accounts/templates/accounts-list.html:133 -#: accounts/templates/accounts.html:126 accounts/templates/profile.html:84 -#: admin/templates/admin/common/confirm_delete.html:6 -#: admin/templates/admin/common/confirm_delete.html:16 +#: accounts/templates/accounts.html:126 accounts/templates/profile.html:60 #: admin/templates/admin/common/list.html:22 #: admin/templates/admin/group_list.html:47 -#: admin/templates/admin/user_list.html:67 computes/templates/computes.html:98 -#: computes/templates/computes.html:142 computes/templates/computes.html:190 -#: computes/templates/computes.html:220 instances/templates/instance.html:873 -#: instances/templates/instance.html:880 interfaces/templates/interface.html:61 -#: networks/templates/network.html:53 nwfilters/templates/nwfilter.html:114 -#: nwfilters/templates/nwfilter.html:154 nwfilters/templates/nwfilters.html:123 -#: secrets/templates/secrets.html:77 storages/templates/storage.html:63 -#: storages/templates/storage.html:176 +#: admin/templates/admin/user_list.html:67 +#: computes/templates/computes/list.html:55 +#: instances/templates/instances/settings_tab.html:310 +#: instances/templates/instances/settings_tab.html:314 +#: interfaces/templates/interface.html:61 networks/templates/network.html:53 +#: nwfilters/templates/nwfilter.html:114 nwfilters/templates/nwfilter.html:154 +#: nwfilters/templates/nwfilters.html:123 secrets/templates/secrets.html:77 +#: storages/templates/storage.html:62 storages/templates/storage.html:175 +#: templates/common/confirm_delete.html:6 +#: templates/common/confirm_delete.html:16 #: venv/lib/python3.6/site-packages/django/forms/formsets.py:375 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:394 msgid "Delete" msgstr "" -#: accounts/templates/account.html:60 -#: create/templates/create_instance_w2.html:85 -#: instances/templates/instance.html:556 instances/templates/instance.html:831 +#: accounts/templates/account.html:38 +#: instances/templates/create_instance_w2.html:86 +#: instances/templates/instances/settings_tab.html:239 +#: instances/templates/instances/snapshots_tab.html:49 #: nwfilters/templates/nwfilter.html:104 nwfilters/templates/nwfilter.html:138 #: nwfilters/templates/nwfilters.html:60 secrets/templates/secrets.html:62 -#: storages/templates/storage.html:102 +#: storages/templates/storage.html:101 msgid "Action" msgstr "" -#: accounts/templates/account.html:81 -msgid "Edit privilegies for" +#: accounts/templates/account.html:50 +msgid "edit" msgstr "" -#: accounts/templates/account.html:91 accounts/templates/account.html:100 -#: accounts/templates/account.html:109 -msgid "False" +#: accounts/templates/account.html:68 accounts/templates/profile.html:74 +msgid "Key name" msgstr "" -#: accounts/templates/account.html:116 -#: accounts/templates/accounts-list.html:145 -#: accounts/templates/accounts.html:138 -#: accounts/templates/create_user_block.html:31 -#: accounts/templates/create_user_inst_block.html:29 -#: computes/templates/computes.html:101 computes/templates/computes.html:145 -#: computes/templates/computes.html:193 computes/templates/computes.html:223 -#: create/templates/create_flav_block.html:51 -#: create/templates/create_instance_w2.html:273 -#: instances/templates/add_instance_network_block.html:49 -#: instances/templates/add_instance_owner_block.html:29 -#: instances/templates/add_instance_volume.html:89 -#: instances/templates/add_instance_volume.html:144 -#: instances/templates/create_inst_block.html:34 -#: instances/templates/edit_instance_volume.html:123 -#: instances/templates/instance.html:993 -#: interfaces/templates/create_iface_block.html:135 -#: networks/templates/add_network_qos.html:50 -#: networks/templates/create_net_block.html:84 -#: networks/templates/modify_ipv4_fixed_address.html:44 -#: networks/templates/modify_ipv6_fixed_address.html:44 -#: nwfilters/templates/add_nwf_rule.html:25 -#: nwfilters/templates/create_nwfilter_block.html:23 -#: nwfilters/templates/nwfilters.html:83 nwfilters/templates/nwfilters.html:111 -#: secrets/templates/create_secret_block.html:54 -#: secrets/templates/secrets.html:102 -#: storages/templates/create_stg_block.html:55 -#: storages/templates/create_stg_block.html:84 -#: storages/templates/create_stg_block.html:140 -#: storages/templates/create_stg_block.html:202 -#: storages/templates/create_stg_block.html:230 -#: storages/templates/create_stg_vol_block.html:27 -#: storages/templates/create_stg_vol_block.html:81 -#: storages/templates/storage.html:156 -msgid "Close" -msgstr "" - -#: accounts/templates/account.html:117 accounts/templates/accounts-list.html:45 -#: accounts/templates/accounts-list.html:148 -#: accounts/templates/accounts.html:36 accounts/templates/accounts.html:141 -#: admin/templates/admin/common/list.html:16 -#: admin/templates/admin/group_list.html:44 -#: admin/templates/admin/user_list.html:61 computes/templates/computes.html:33 -#: networks/templates/network.html:85 nwfilters/templates/nwfilter.html:62 -#: secrets/templates/secrets.html:74 -msgid "Edit" -msgstr "" - -#: accounts/templates/account.html:127 accounts/templates/profile.html:84 -#: create/templates/create_instance_w2.html:291 -#: instances/templates/instance.html:581 instances/templates/instance.html:1004 -#: instances/templates/instance.html:1074 -#: instances/templates/instance.html:1079 -#: interfaces/templates/interface.html:61 -#: interfaces/templates/interface.html:63 networks/templates/network.html:53 -#: networks/templates/network.html:55 networks/templates/network.html:65 -#: networks/templates/network.html:139 networks/templates/network.html:192 -#: networks/templates/network.html:197 networks/templates/network.html:252 -#: networks/templates/network.html:301 networks/templates/network.html:306 -#: networks/templates/network.html:356 networks/templates/network.html:361 -#: nwfilters/templates/nwfilter.html:114 nwfilters/templates/nwfilter.html:154 -#: nwfilters/templates/nwfilters.html:123 secrets/templates/secrets.html:77 -#: storages/templates/storage.html:64 storages/templates/storage.html:67 -#: storages/templates/storage.html:79 storages/templates/storage.html:176 -msgid "Are you sure?" +#: accounts/templates/account.html:69 accounts/templates/profile.html:80 +msgid "Public key" msgstr "" #: accounts/templates/accounts-list.html:4 #: accounts/templates/accounts-list.html:13 accounts/templates/accounts.html:3 #: accounts/templates/accounts.html:9 admin/templates/admin/group_list.html:5 #: admin/templates/admin/user_list.html:6 -#: admin/templates/admin/user_list.html:16 admin/views.py:83 -#: instances/templates/instance.html:657 templates/navbar.html:29 +#: admin/templates/admin/user_list.html:16 admin/views.py:84 +#: instances/templates/instances/settings_tab.html:63 templates/navbar.html:29 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 +#: computes/templates/computes/instances.html:18 +#: instances/templates/allinstances.html:16 +#: nwfilters/templates/nwfilters.html:11 storages/templates/storage.html:88 +#: templates/search_block.html:3 msgid "Search" msgstr "" +#: accounts/templates/accounts-list.html:25 accounts/templates/accounts.html:21 +#: admin/templates/admin/group_list.html:24 admin/templates/admin/logs.html:22 +#: admin/templates/admin/user_list.html:25 +#: computes/templates/computes/instances.html:57 +#: computes/templates/computes/list.html:21 +#: instances/templates/create_instance_w2.html:71 +#: interfaces/templates/interfaces.html:47 networks/templates/networks.html:50 +#: nwfilters/templates/nwfilters.html:138 secrets/templates/secrets.html:50 +#: storages/templates/storage.html:188 storages/templates/storages.html:50 +msgid "Warning" +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" msgstr "" -#: accounts/templates/accounts-list.html:33 accounts/templates/profile.html:27 -#: admin/templates/admin/user_list.html:33 computes/templates/computes.html:79 -#: computes/templates/computes.html:127 computes/templates/computes.html:170 +#: accounts/templates/accounts-list.html:33 accounts/templates/profile.html:31 +#: admin/templates/admin/user_list.html:33 msgid "Username" msgstr "" #: accounts/templates/accounts-list.html:34 accounts/templates/accounts.html:44 -#: admin/templates/admin/user_list.html:34 computes/templates/computes.html:40 -#: instances/templates/allinstances.html:57 -#: instances/templates/allinstances_index_grouped.html:8 -#: instances/templates/allinstances_index_nongrouped.html:7 -#: instances/templates/instances.html:72 +#: admin/templates/admin/user_list.html:34 +#: computes/templates/computes/instances.html:68 +#: computes/templates/computes/list.html:30 +#: instances/templates/allinstances_index_grouped.html:9 +#: instances/templates/allinstances_index_nongrouped.html:9 msgid "Status" msgstr "" @@ -254,22 +207,33 @@ msgid "Superuser" msgstr "" #: accounts/templates/accounts-list.html:37 -#: instances/templates/instance.html:631 instances/templates/instance.html:1444 -#: instances/templates/instance.html:1446 -#: instances/templates/instance_actions.html:7 +#: instances/templates/instance_actions.html:6 +#: instances/templates/instances/settings_tab.html:37 +#: instances/templates/instances/settings_tab.html:783 +#: instances/templates/instances/settings_tab.html:785 #: nwfilters/templates/nwfilters.html:112 -#: nwfilters/templates/nwfilters.html:118 storages/templates/storage.html:157 -#: storages/templates/storage.html:164 +#: nwfilters/templates/nwfilters.html:118 storages/templates/storage.html:156 +#: storages/templates/storage.html:163 msgid "Clone" msgstr "" +#: accounts/templates/accounts-list.html:45 +#: accounts/templates/accounts-list.html:148 +#: accounts/templates/accounts.html:36 accounts/templates/accounts.html:141 +#: admin/templates/admin/common/list.html:16 +#: admin/templates/admin/group_list.html:44 +#: admin/templates/admin/user_list.html:61 +#: computes/templates/computes/list.html:54 networks/templates/network.html:85 +#: nwfilters/templates/nwfilter.html:62 secrets/templates/secrets.html:74 +msgid "Edit" +msgstr "" + #: accounts/templates/accounts-list.html:51 accounts/templates/accounts.html:48 #: admin/templates/admin/user_list.html:50 -#: instances/templates/allinstances.html:68 -#: instances/templates/allinstances_index_grouped.html:26 -#: instances/templates/allinstances_index_grouped.html:56 -#: instances/templates/allinstances_index_nongrouped.html:20 -#: instances/templates/instance.html:17 instances/templates/instances.html:85 +#: computes/templates/computes/instances.html:94 +#: instances/templates/allinstances_index_grouped.html:57 +#: instances/templates/allinstances_index_nongrouped.html:40 +#: instances/templates/instance.html:17 msgid "Active" msgstr "" @@ -284,22 +248,21 @@ msgstr "" #: accounts/templates/accounts-list.html:76 accounts/templates/accounts.html:69 #: accounts/templates/create_user_block.html:18 -#: computes/templates/computes.html:172 -#: create/templates/create_flav_block.html:19 -#: create/templates/create_instance_w2.html:81 -#: create/templates/create_instance_w2.html:107 -#: create/templates/create_instance_w2.html:110 -#: create/templates/create_instance_w2.html:309 -#: create/templates/create_instance_w2.html:311 -#: create/templates/create_instance_w2.html:522 -#: create/templates/create_instance_w2.html:524 +#: computes/templates/computes/instances.html:66 +#: computes/templates/computes/list.html:29 #: instances/templates/add_instance_volume.html:40 #: instances/templates/add_instance_volume.html:42 -#: instances/templates/allinstances.html:56 -#: instances/templates/allinstances_index_grouped.html:6 +#: instances/templates/allinstances_index_grouped.html:7 #: instances/templates/allinstances_index_nongrouped.html:5 -#: instances/templates/instance.html:554 instances/templates/instance.html:906 -#: instances/templates/instances.html:70 +#: instances/templates/create_instance_w2.html:82 +#: instances/templates/create_instance_w2.html:108 +#: instances/templates/create_instance_w2.html:111 +#: instances/templates/create_instance_w2.html:310 +#: instances/templates/create_instance_w2.html:312 +#: instances/templates/create_instance_w2.html:523 +#: instances/templates/create_instance_w2.html:525 +#: instances/templates/instances/settings_tab.html:340 +#: instances/templates/instances/snapshots_tab.html:47 #: interfaces/templates/create_iface_block.html:18 #: interfaces/templates/interface.html:76 #: networks/templates/create_net_block.html:18 @@ -314,21 +277,18 @@ msgstr "" #: storages/templates/create_stg_block.html:100 #: storages/templates/create_stg_block.html:165 #: storages/templates/create_stg_block.html:214 -#: storages/templates/create_stg_vol_block.html:20 -#: storages/templates/create_stg_vol_block.html:51 -#: storages/templates/create_stg_vol_block.html:53 -#: storages/templates/storage.html:98 storages/templates/storage.html:126 -#: storages/templates/storage.html:128 +#: storages/templates/create_stg_vol_block.html:21 +#: storages/templates/storage.html:97 storages/templates/storage.html:125 +#: storages/templates/storage.html:127 msgid "Name" msgstr "" #: accounts/templates/accounts-list.html:83 accounts/templates/accounts.html:76 #: accounts/templates/create_user_block.html:24 -#: accounts/templates/login.html:19 computes/templates/computes.html:85 -#: computes/templates/computes.html:176 -#: console/templates/console-spice-full.html:200 -#: instances/templates/instance.html:1293 -#: instances/templates/instance.html:1300 +#: accounts/templates/login.html:19 +#: console/templates/console-spice-full.html:201 +#: console/templates/console-spice-lite.html:58 +#: console/templates/console-spice-lite.html:99 msgid "Password" msgstr "" @@ -341,7 +301,7 @@ msgid "Is superuser" msgstr "" #: accounts/templates/accounts-list.html:101 -#: accounts/templates/accounts.html:94 instances/models.py:25 +#: accounts/templates/accounts.html:94 msgid "Can clone instances" msgstr "" @@ -375,6 +335,63 @@ msgstr "" msgid "Unblock" msgstr "" +#: accounts/templates/accounts-list.html:145 +#: accounts/templates/accounts.html:138 +#: accounts/templates/create_user_block.html:31 +#: instances/templates/add_instance_network_block.html:49 +#: instances/templates/add_instance_owner_block.html:30 +#: instances/templates/add_instance_volume.html:89 +#: instances/templates/add_instance_volume.html:144 +#: instances/templates/create_flav_block.html:25 +#: instances/templates/create_inst_block.html:34 +#: instances/templates/create_instance_w2.html:274 +#: instances/templates/edit_instance_volume.html:123 +#: instances/templates/instances/settings_tab.html:427 +#: interfaces/templates/create_iface_block.html:135 +#: networks/templates/add_network_qos.html:50 +#: networks/templates/create_net_block.html:84 +#: networks/templates/modify_ipv4_fixed_address.html:44 +#: networks/templates/modify_ipv6_fixed_address.html:44 +#: nwfilters/templates/add_nwf_rule.html:25 +#: nwfilters/templates/create_nwfilter_block.html:23 +#: nwfilters/templates/nwfilters.html:83 nwfilters/templates/nwfilters.html:111 +#: secrets/templates/create_secret_block.html:54 +#: secrets/templates/secrets.html:102 +#: storages/templates/create_stg_block.html:55 +#: storages/templates/create_stg_block.html:84 +#: storages/templates/create_stg_block.html:140 +#: storages/templates/create_stg_block.html:202 +#: storages/templates/create_stg_block.html:230 +#: storages/templates/create_stg_vol_block.html:28 +#: storages/templates/create_stg_vol_block.html:56 +#: storages/templates/storage.html:155 +msgid "Close" +msgstr "" + +#: accounts/templates/accounts/change_password_form.html:7 +#: accounts/templates/accounts/change_password_form.html:12 +#: accounts/templates/profile.html:21 +msgid "Change Password" +msgstr "" + +#: accounts/templates/accounts/change_password_form.html:22 +#: admin/templates/admin/user_form.html:22 +#: computes/templates/computes/form.html:21 +#: templates/common/confirm_delete.html:14 templates/common/form.html:20 +msgid "Cancel" +msgstr "" + +#: accounts/templates/accounts/change_password_form.html:24 +#: accounts/templates/profile.html:44 +#: instances/templates/instances/settings_tab.html:633 +#: instances/templates/instances/settings_tab.html:637 +#: instances/templates/instances/settings_tab.html:819 +#: instances/templates/instances/settings_tab.html:821 +#: venv/lib/python3.6/site-packages/django/forms/widgets.py:397 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:379 +msgid "Change" +msgstr "" + #: accounts/templates/create_user_block.html:13 msgid "Add New User" msgstr "" @@ -384,13 +401,13 @@ msgid "john" msgstr "" #: accounts/templates/create_user_block.html:32 -#: create/templates/create_instance_w1.html:93 -#: create/templates/create_instance_w2.html:275 -#: create/templates/create_instance_w2.html:277 -#: create/templates/create_instance_w2.html:504 -#: create/templates/create_instance_w2.html:508 -#: create/templates/create_instance_w2.html:717 -#: create/templates/create_instance_w2.html:721 +#: instances/templates/create_instance_w1.html:95 +#: instances/templates/create_instance_w2.html:276 +#: instances/templates/create_instance_w2.html:278 +#: instances/templates/create_instance_w2.html:505 +#: instances/templates/create_instance_w2.html:509 +#: instances/templates/create_instance_w2.html:718 +#: instances/templates/create_instance_w2.html:722 #: interfaces/templates/create_iface_block.html:138 #: networks/templates/create_net_block.html:85 #: networks/templates/modify_ipv4_fixed_address.html:45 @@ -403,29 +420,10 @@ msgstr "" #: storages/templates/create_stg_block.html:148 #: storages/templates/create_stg_block.html:205 #: storages/templates/create_stg_block.html:233 -#: storages/templates/create_stg_vol_block.html:82 +#: storages/templates/create_stg_vol_block.html:57 msgid "Create" msgstr "" -#: accounts/templates/create_user_inst_block.html:12 -msgid "Add Instance for User" -msgstr "" - -#: accounts/templates/create_user_inst_block.html:18 -#: console/templates/console-spice-full.html:198 -#: instances/templates/allinstances_index_nongrouped.html:6 -msgid "Host" -msgstr "" - -#: accounts/templates/create_user_inst_block.html:30 -#: accounts/templates/profile.html:111 -#: create/templates/create_flav_block.html:54 -#: instances/templates/add_instance_network_block.html:50 -#: instances/templates/add_instance_owner_block.html:30 -#: nwfilters/templates/add_nwf_rule.html:26 -msgid "Add" -msgstr "" - #: accounts/templates/login.html:3 accounts/templates/logout.html:4 msgid "WebVirtCloud" msgstr "" @@ -439,7 +437,7 @@ msgstr "" msgid "Incorrect username or password." msgstr "" -#: accounts/templates/login.html:18 accounts/templates/profile.html:21 +#: accounts/templates/login.html:18 accounts/templates/profile.html:25 msgid "Login" msgstr "" @@ -451,72 +449,86 @@ msgstr "" msgid "Successful log out" msgstr "" -#: accounts/templates/profile.html:4 accounts/templates/profile.html:9 +#: accounts/templates/profile.html:5 accounts/templates/profile.html:10 #: templates/navbar.html:45 msgid "Profile" msgstr "" -#: accounts/templates/profile.html:18 +#: accounts/templates/profile.html:19 msgid "Edit Profile" msgstr "" -#: accounts/templates/profile.html:33 +#: accounts/templates/profile.html:37 msgid "Email" msgstr "" -#: accounts/templates/profile.html:40 accounts/templates/profile.html:67 -#: computes/templates/computes.html:104 computes/templates/computes.html:148 -#: computes/templates/computes.html:196 computes/templates/computes.html:225 -#: instances/templates/instance.html:1190 -#: instances/templates/instance.html:1194 -#: instances/templates/instance.html:1480 -#: instances/templates/instance.html:1482 -#: venv/lib/python3.6/site-packages/django/forms/widgets.py:397 -msgid "Change" -msgstr "" - -#: accounts/templates/profile.html:45 -msgid "Edit Password" -msgstr "" - #: accounts/templates/profile.html:48 -msgid "Old" -msgstr "" - -#: accounts/templates/profile.html:54 -msgid "New" -msgstr "" - -#: accounts/templates/profile.html:60 -msgid "Retry" -msgstr "" - -#: accounts/templates/profile.html:72 instances/templates/instance.html:266 +#: instances/templates/instances/access_tab.html:23 msgid "SSH Keys" msgstr "" -#: accounts/templates/profile.html:100 +#: accounts/templates/profile.html:60 +#: instances/templates/create_instance_w2.html:292 +#: instances/templates/instances/settings_tab.html:438 +#: instances/templates/instances/settings_tab.html:510 +#: instances/templates/instances/settings_tab.html:520 +#: instances/templates/instances/snapshots_tab.html:75 +#: interfaces/templates/interface.html:61 +#: interfaces/templates/interface.html:63 networks/templates/network.html:53 +#: networks/templates/network.html:55 networks/templates/network.html:65 +#: networks/templates/network.html:139 networks/templates/network.html:192 +#: networks/templates/network.html:197 networks/templates/network.html:252 +#: networks/templates/network.html:301 networks/templates/network.html:306 +#: networks/templates/network.html:356 networks/templates/network.html:361 +#: nwfilters/templates/nwfilter.html:114 nwfilters/templates/nwfilter.html:154 +#: nwfilters/templates/nwfilters.html:123 secrets/templates/secrets.html:77 +#: storages/templates/storage.html:63 storages/templates/storage.html:66 +#: storages/templates/storage.html:78 storages/templates/storage.html:175 +msgid "Are you sure?" +msgstr "" + +#: accounts/templates/profile.html:76 msgid "Enter Name" msgstr "" -#: accounts/templates/profile.html:106 +#: accounts/templates/profile.html:82 msgid "Enter Public Key" msgstr "" -#: accounts/views.py:52 +#: accounts/templates/profile.html:87 +#: instances/templates/add_instance_network_block.html:50 +#: instances/templates/add_instance_owner_block.html:31 +#: instances/templates/create_flav_block.html:28 +#: nwfilters/templates/add_nwf_rule.html:26 +msgid "Add" +msgstr "" + +#: accounts/views.py:39 msgid "Key name already exist" msgstr "" -#: accounts/views.py:55 +#: accounts/views.py:42 msgid "Public key already exist" msgstr "" -#: accounts/views.py:58 +#: accounts/views.py:45 msgid "Invalid characters in public key" msgstr "" -#: accounts/views.py:112 -msgid "Instance already added" +#: accounts/views.py:77 +msgid "Password Changed" +msgstr "" + +#: accounts/views.py:80 +msgid "Wrong Data Provided" +msgstr "" + +#: accounts/views.py:100 +msgid "Create User Instance" +msgstr "" + +#: accounts/views.py:118 +msgid "Update User Instance" msgstr "" #: admin/forms.py:46 @@ -528,25 +540,6 @@ msgstr "" msgid "Groups" msgstr "" -#: admin/templates/admin/common/confirm_delete.html:12 -msgid "Are you sure you want to delete" -msgstr "" - -#: admin/templates/admin/common/confirm_delete.html:14 -#: admin/templates/admin/common/form.html:22 -#: admin/templates/admin/user_form.html:22 -#: computes/templates/computes/form.html:22 -msgid "Cancel" -msgstr "" - -#: admin/templates/admin/common/form.html:24 -#: admin/templates/admin/user_form.html:24 -#: computes/templates/computes/form.html:24 -#: instances/templates/edit_instance_volume.html:124 -#: networks/templates/add_network_qos.html:51 -msgid "Save" -msgstr "" - #: admin/templates/admin/common/list.html:9 msgid "Create New" msgstr "" @@ -561,33 +554,53 @@ 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 -#: instances/templates/instance.html:909 instances/templates/instance.html:1051 -#: instances/templates/instances.html:75 networks/templates/network.html:178 -#: networks/templates/network.html:287 networks/templates/network.html:335 +#: computes/templates/computes/instances.html:71 +#: computes/templates/computes/list.html:32 +#: instances/templates/allinstances_index_grouped.html:12 +#: instances/templates/allinstances_index_nongrouped.html:12 +#: instances/templates/instances/settings_tab.html:343 +#: instances/templates/instances/settings_tab.html:486 +#: networks/templates/network.html:178 networks/templates/network.html:287 +#: networks/templates/network.html:335 msgid "Actions" msgstr "" -#: admin/templates/admin/logs.html:3 admin/templates/admin/logs.html:8 -#: instances/templates/instance.html:1577 templates/navbar.html:31 +#: admin/templates/admin/logs.html:4 admin/templates/admin/logs.html:9 +#: instances/templates/instances/stats_tab.html:13 templates/navbar.html:31 msgid "Logs" msgstr "" -#: admin/templates/admin/logs.html:21 +#: admin/templates/admin/logs.html:22 msgid "You don't have any Logs" msgstr "" -#: admin/templates/admin/logs.html:31 instances/templates/instance.html:555 -#: instances/templates/instance.html:1643 +#: admin/templates/admin/logs.html:32 +#: instances/templates/instances/snapshots_tab.html:48 +#: instances/templates/instances/stats_tab.html:83 msgid "Date" msgstr "" -#: admin/templates/admin/logs.html:34 instances/templates/instance.html:1645 +#: admin/templates/admin/logs.html:33 admin/templates/admin/user_form.html:6 +#: computes/templates/computes/instances.html:67 +#: instances/templates/add_instance_owner_block.html:18 +#: instances/templates/allinstances_index_grouped.html:8 +#: instances/templates/allinstances_index_nongrouped.html:7 +#: instances/templates/instances/stats_tab.html:84 +msgid "User" +msgstr "" + +#: admin/templates/admin/logs.html:35 +#: instances/templates/instances/stats_tab.html:85 msgid "Message" msgstr "" +#: admin/templates/admin/user_form.html:24 +#: computes/templates/computes/form.html:23 +#: instances/templates/edit_instance_volume.html:124 +#: networks/templates/add_network_qos.html:51 templates/common/form.html:22 +msgid "Save" +msgstr "" + #: admin/templates/admin/user_list.html:37 msgid "Can Clone" msgstr "" @@ -596,19 +609,19 @@ msgstr "" msgid "View Profile" msgstr "" -#: admin/views.py:38 +#: admin/views.py:39 msgid "Create Group" msgstr "" -#: admin/views.py:56 +#: admin/views.py:57 msgid "Update Group" msgstr "" -#: admin/views.py:108 +#: admin/views.py:110 msgid "Create User" msgstr "" -#: admin/views.py:130 +#: admin/views.py:132 msgid "Update User" msgstr "" @@ -820,24 +833,76 @@ msgstr "" msgid "Show access ssh keys" msgstr "" +#: appsettings/migrations/0004_auto_20200716_0637.py:11 +msgid "Console Scale" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:11 +msgid "Allow console to scaling view" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:12 +msgid "Console View-Only" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:12 +msgid "Allow only view not modify" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:13 +msgid "Console Resize Session" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:13 +msgid "Allow to resize session for console" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:14 +msgid "Console Clip Viewport" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:14 +msgid "Clip console viewport" +msgstr "" + +#: appsettings/models.py:9 computes/models.py:11 instances/models.py:27 +msgid "name" +msgstr "" + +#: appsettings/models.py:10 +msgid "key" +msgstr "" + +#: appsettings/models.py:11 +msgid "value" +msgstr "" + +#: appsettings/models.py:12 +msgid "choices" +msgstr "" + +#: appsettings/models.py:13 +msgid "description" +msgstr "" + #: appsettings/templates/appsettings.html:3 #: appsettings/templates/appsettings.html:8 msgid "Edit Settings" msgstr "" -#: appsettings/templates/appsettings.html:18 +#: appsettings/templates/appsettings.html:17 msgid "App Settings" msgstr "" -#: appsettings/templates/appsettings.html:22 templates/navbar.html:43 +#: appsettings/templates/appsettings.html:21 templates/navbar.html:43 msgid "Language" msgstr "" -#: appsettings/templates/appsettings.html:55 +#: appsettings/templates/appsettings.html:54 msgid "After change please full refresh page with 'Ctrl + F5' " msgstr "" -#: appsettings/templates/appsettings.html:60 +#: appsettings/templates/appsettings.html:59 msgid "Other Settings" msgstr "" @@ -860,84 +925,20 @@ msgstr "" msgid "FQDN/IP" msgstr "" -#: computes/forms.py:47 -msgid "No hostname has been entered" +#: computes/models.py:12 +msgid "hostname" msgstr "" -#: computes/forms.py:48 -msgid "No IP / Domain name has been entered" +#: computes/models.py:13 +msgid "login" msgstr "" -#: computes/forms.py:49 -msgid "No login has been entered" +#: computes/models.py:14 +msgid "password" msgstr "" -#: computes/forms.py:57 -msgid "The name of the host must not contain any special characters" -msgstr "" - -#: computes/forms.py:59 -msgid "The name of the host must not exceed 20 characters" -msgstr "" - -#: computes/forms.py:67 computes/validators.py:16 -msgid "" -"Hostname must contain only numbers, or the domain name separated by \".\"" -msgstr "" - -#: computes/forms.py:69 computes/validators.py:18 -msgid "Wrong IP address" -msgstr "" - -#: computes/templates/computes.html:3 computes/templates/computes.html:9 -#: templates/navbar.html:18 -msgid "Computes" -msgstr "" - -#: computes/templates/computes.html:42 instances/templates/instance.html:1537 -msgid "Connected" -msgstr "" - -#: computes/templates/computes.html:44 -msgid "Not Connected" -msgstr "" - -#: computes/templates/computes.html:46 computes/templates/computes.html:91 -#: 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 "" - -#: computes/templates/computes.html:50 -msgid "No details available" -msgstr "" - -#: computes/templates/computes.html:59 -msgid "Edit connection" -msgstr "" - -#: computes/templates/computes.html:66 computes/templates/computes.html:114 -#: computes/templates/computes.html:157 computes/templates/computes.html:205 -msgid "Label" -msgstr "" - -#: computes/templates/computes.html:73 computes/templates/computes.html:121 -#: computes/templates/computes.html:164 -msgid "FQDN / IP" -msgstr "" - -#: computes/templates/computes.html:112 -msgid "" -"Need create ssh authorization key. If you have another SSH port on " -"your server, you can add IP:PORT like '192.168.1.1:2222'." -msgstr "" - -#: computes/templates/computes.html:241 -msgid "Hypervisor doesn't have any Computes" +#: computes/models.py:15 +msgid "details" msgstr "" #: computes/templates/computes/form.html:6 @@ -948,6 +949,137 @@ msgstr "" msgid "Create Compute" msgstr "" +#: computes/templates/computes/instances.html:29 +#: computes/templates/computes/list.html:50 +#: computes/templates/computes/list.html:52 computes/templates/overview.html:4 +#: computes/templates/overview.html:13 interfaces/templates/interface.html:11 +#: interfaces/templates/interfaces.html:14 networks/templates/network.html:13 +#: networks/templates/networks.html:17 nwfilters/templates/nwfilter.html:12 +#: nwfilters/templates/nwfilters.html:21 secrets/templates/secrets.html:17 +#: storages/templates/storage.html:17 storages/templates/storages.html:17 +msgid "Overview" +msgstr "" + +#: computes/templates/computes/instances.html:35 +#: computes/templates/overview.html:19 interfaces/templates/interface.html:17 +#: interfaces/templates/interfaces.html:20 networks/templates/network.html:19 +#: networks/templates/networks.html:23 nwfilters/templates/nwfilter.html:18 +#: nwfilters/templates/nwfilters.html:27 secrets/templates/secrets.html:23 +#: storages/templates/storage.html:23 storages/templates/storages.html:3 +#: storages/templates/storages.html:9 storages/templates/storages.html:23 +msgid "Storages" +msgstr "" + +#: computes/templates/computes/instances.html:38 +#: computes/templates/overview.html:22 interfaces/templates/interface.html:20 +#: interfaces/templates/interfaces.html:23 networks/templates/network.html:22 +#: networks/templates/networks.html:3 networks/templates/networks.html:9 +#: networks/templates/networks.html:26 nwfilters/templates/nwfilter.html:21 +#: nwfilters/templates/nwfilters.html:30 secrets/templates/secrets.html:26 +#: storages/templates/storage.html:26 storages/templates/storages.html:26 +msgid "Networks" +msgstr "" + +#: computes/templates/computes/instances.html:41 +#: computes/templates/overview.html:25 interfaces/templates/interface.html:23 +#: interfaces/templates/interfaces.html:4 +#: interfaces/templates/interfaces.html:26 networks/templates/network.html:25 +#: networks/templates/networks.html:29 nwfilters/templates/nwfilter.html:24 +#: nwfilters/templates/nwfilters.html:33 secrets/templates/secrets.html:29 +#: storages/templates/storage.html:29 storages/templates/storages.html:29 +msgid "Interfaces" +msgstr "" + +#: computes/templates/computes/instances.html:44 +#: computes/templates/overview.html:28 interfaces/templates/interface.html:26 +#: interfaces/templates/interfaces.html:29 networks/templates/network.html:28 +#: networks/templates/networks.html:32 nwfilters/templates/nwfilter.html:4 +#: nwfilters/templates/nwfilter.html:27 nwfilters/templates/nwfilters.html:4 +#: nwfilters/templates/nwfilters.html:13 nwfilters/templates/nwfilters.html:36 +#: secrets/templates/secrets.html:32 storages/templates/storage.html:32 +#: storages/templates/storages.html:32 +msgid "NWFilters" +msgstr "" + +#: computes/templates/computes/instances.html:47 +#: computes/templates/overview.html:31 interfaces/templates/interface.html:29 +#: interfaces/templates/interfaces.html:32 networks/templates/network.html:31 +#: networks/templates/networks.html:35 nwfilters/templates/nwfilter.html:30 +#: nwfilters/templates/nwfilters.html:39 secrets/templates/secrets.html:4 +#: secrets/templates/secrets.html:13 secrets/templates/secrets.html:35 +#: storages/templates/create_stg_block.html:124 +#: storages/templates/storage.html:35 storages/templates/storages.html:35 +msgid "Secrets" +msgstr "" + +#: computes/templates/computes/instances.html:58 +msgid "Hypervisor doesn't have any Instances" +msgstr "" + +#: computes/templates/computes/instances.html:66 +#: instances/templates/allinstances_index_grouped.html:7 +#: instances/templates/allinstances_index_nongrouped.html:5 +#: instances/templates/instances/settings_tab.html:777 +#: instances/templates/instances/settings_tab.html:800 +msgid "Description" +msgstr "" + +#: computes/templates/computes/instances.html:69 +#: instances/templates/allinstances_index_grouped.html:10 +#: instances/templates/allinstances_index_nongrouped.html:10 +#: instances/templates/create_instance_w2.html:83 +#: instances/templates/create_instance_w2.html:328 +#: instances/templates/create_instance_w2.html:541 +#: instances/templates/instance.html:40 instances/templates/instance.html:42 +msgid "VCPU" +msgstr "" + +#: computes/templates/computes/instances.html:70 +#: computes/templates/overview.html:82 +#: instances/templates/allinstances_index_grouped.html:11 +#: instances/templates/allinstances_index_nongrouped.html:11 +#: instances/templates/instances/resize_tab.html:13 +msgid "Memory" +msgstr "" + +#: computes/templates/computes/instances.html:96 +#: instances/templates/allinstances_index_grouped.html:58 +#: instances/templates/allinstances_index_nongrouped.html:42 +#: instances/templates/instance.html:14 +msgid "Off" +msgstr "" + +#: computes/templates/computes/instances.html:98 +#: instances/templates/allinstances_index_grouped.html:60 +#: instances/templates/allinstances_index_nongrouped.html:44 +msgid "Suspended" +msgstr "" + +#: computes/templates/computes/list.html:6 +#: computes/templates/computes/list.html:12 templates/navbar.html:18 +msgid "Computes" +msgstr "" + +#: computes/templates/computes/list.html:21 +msgid "You don't have any computes" +msgstr "" + +#: computes/templates/computes/list.html:31 computes/templates/overview.html:92 +#: instances/templates/instances/settings_tab.html:163 +#: instances/templates/instances/settings_tab.html:248 +msgid "Details" +msgstr "" + +#: computes/templates/computes/list.html:42 +#: instances/templates/allinstances_index_grouped.html:28 +#: instances/templates/instances/settings_tab.html:876 +msgid "Connected" +msgstr "" + +#: computes/templates/computes/list.html:42 +msgid "Not Connected" +msgstr "" + #: computes/templates/create_comp_block.html:5 msgid "TCP" msgstr "" @@ -968,79 +1100,6 @@ msgstr "" msgid "Add new host" msgstr "" -#: computes/templates/overview.html:4 computes/templates/overview.html:13 -#: instances/templates/instances.html:30 interfaces/templates/interface.html:11 -#: interfaces/templates/interfaces.html:14 networks/templates/network.html:13 -#: networks/templates/networks.html:17 nwfilters/templates/nwfilter.html:12 -#: nwfilters/templates/nwfilters.html:21 secrets/templates/secrets.html:17 -#: storages/templates/storage.html:17 storages/templates/storages.html:17 -msgid "Overview" -msgstr "" - -#: computes/templates/overview.html:16 instances/templates/allinstances.html:4 -#: instances/templates/allinstances.html:20 -#: instances/templates/bottom_bar.html:17 instances/templates/instances.html:4 -#: instances/templates/instances.html:33 interfaces/templates/interface.html:14 -#: interfaces/templates/interfaces.html:17 networks/templates/network.html:16 -#: networks/templates/networks.html:20 nwfilters/templates/nwfilter.html:15 -#: nwfilters/templates/nwfilters.html:24 secrets/templates/secrets.html:20 -#: storages/templates/storage.html:20 storages/templates/storages.html:20 -#: templates/navbar.html:14 -msgid "Instances" -msgstr "" - -#: computes/templates/overview.html:19 instances/templates/instances.html:36 -#: interfaces/templates/interface.html:17 -#: interfaces/templates/interfaces.html:20 networks/templates/network.html:19 -#: networks/templates/networks.html:23 nwfilters/templates/nwfilter.html:18 -#: nwfilters/templates/nwfilters.html:27 secrets/templates/secrets.html:23 -#: storages/templates/storage.html:23 storages/templates/storages.html:3 -#: storages/templates/storages.html:9 storages/templates/storages.html:23 -msgid "Storages" -msgstr "" - -#: computes/templates/overview.html:22 instances/templates/instances.html:39 -#: interfaces/templates/interface.html:20 -#: interfaces/templates/interfaces.html:23 networks/templates/network.html:22 -#: networks/templates/networks.html:3 networks/templates/networks.html:9 -#: networks/templates/networks.html:26 nwfilters/templates/nwfilter.html:21 -#: nwfilters/templates/nwfilters.html:30 secrets/templates/secrets.html:26 -#: storages/templates/storage.html:26 storages/templates/storages.html:26 -msgid "Networks" -msgstr "" - -#: computes/templates/overview.html:25 instances/templates/instances.html:42 -#: interfaces/templates/interface.html:23 -#: interfaces/templates/interfaces.html:4 -#: interfaces/templates/interfaces.html:26 networks/templates/network.html:25 -#: networks/templates/networks.html:29 nwfilters/templates/nwfilter.html:24 -#: nwfilters/templates/nwfilters.html:33 secrets/templates/secrets.html:29 -#: storages/templates/storage.html:29 storages/templates/storages.html:29 -msgid "Interfaces" -msgstr "" - -#: computes/templates/overview.html:28 instances/templates/instances.html:45 -#: interfaces/templates/interface.html:26 -#: interfaces/templates/interfaces.html:29 networks/templates/network.html:28 -#: networks/templates/networks.html:32 nwfilters/templates/nwfilter.html:4 -#: nwfilters/templates/nwfilter.html:27 nwfilters/templates/nwfilters.html:4 -#: nwfilters/templates/nwfilters.html:13 nwfilters/templates/nwfilters.html:36 -#: secrets/templates/secrets.html:32 storages/templates/storage.html:32 -#: storages/templates/storages.html:32 -msgid "NWFilters" -msgstr "" - -#: computes/templates/overview.html:31 instances/templates/instances.html:48 -#: interfaces/templates/interface.html:29 -#: interfaces/templates/interfaces.html:32 networks/templates/network.html:31 -#: networks/templates/networks.html:35 nwfilters/templates/nwfilter.html:30 -#: nwfilters/templates/nwfilters.html:39 secrets/templates/secrets.html:4 -#: secrets/templates/secrets.html:13 secrets/templates/secrets.html:35 -#: storages/templates/create_stg_block.html:124 -#: storages/templates/storage.html:35 storages/templates/storages.html:35 -msgid "Secrets" -msgstr "" - #: computes/templates/overview.html:42 msgid "Basic details" msgstr "" @@ -1074,16 +1133,9 @@ msgstr "" msgid "Libvirt" msgstr "" -#: computes/templates/overview.html:82 instances/templates/allinstances.html:59 -#: instances/templates/allinstances_index_grouped.html:10 -#: instances/templates/allinstances_index_nongrouped.html:9 -#: instances/templates/instance.html:369 instances/templates/instances.html:74 -msgid "Memory" -msgstr "" - #: computes/templates/overview.html:84 -#: create/templates/create_instance_w1.html:40 -#: create/templates/create_instance_w1.html:56 +#: instances/templates/create_instance_w1.html:42 +#: instances/templates/create_instance_w1.html:58 msgid "Architecture" msgstr "" @@ -1112,270 +1164,153 @@ msgstr "" msgid "RAM Utilization" msgstr "" +#: computes/validators.py:16 +msgid "" +"Hostname must contain only numbers, or the domain name separated by \".\"" +msgstr "" + +#: computes/validators.py:18 +msgid "Wrong IP address" +msgstr "" + #: computes/validators.py:24 msgid "The hostname must not contain any special characters" msgstr "" -#: console/templates/console-base.html:69 +#: console/templates/console-base.html:51 msgid "Send key(s)" msgstr "" -#: console/templates/console-base.html:89 +#: console/templates/console-base.html:71 msgid "Fullscreen" msgstr "" +#: console/templates/console-spice-full.html:56 +msgid "must set host and port" +msgstr "" + +#: console/templates/console-spice-full.html:83 +#: console/templates/console-spice-full.html:97 +#: console/templates/console-spice-lite.html:138 +#: console/templates/console-spice-lite.html:150 +msgid "disconnect" +msgstr "" + +#: console/templates/console-spice-full.html:114 +#: console/templates/console-spice-lite.html:167 +msgid "File API is not supported" +msgstr "" + +#: console/templates/console-spice-full.html:197 +#: instances/templates/allinstances_index_nongrouped.html:7 +msgid "Host" +msgstr "" + #: console/templates/console-spice-full.html:199 msgid "Port" msgstr "" -#: console/templates/console-spice-full.html:201 +#: console/templates/console-spice-full.html:207 msgid "Show console" msgstr "" -#: console/templates/console-spice-full.html:202 +#: console/templates/console-spice-full.html:209 #: interfaces/templates/interface.html:60 networks/templates/network.html:52 #: networks/templates/network.html:122 networks/templates/network.html:128 #: networks/templates/network.html:234 networks/templates/network.html:240 -#: storages/templates/storage.html:62 +#: storages/templates/storage.html:61 msgid "Start" msgstr "" -#: console/templates/console-vnc-full.html:83 +#: console/templates/console-spice-lite.html:109 +msgid "must specify host and port in URL" +msgstr "" + +#: console/templates/console-vnc-full.html:78 msgid "noVNC encountered an error" msgstr "" -#: console/templates/console-vnc-lite.html:297 +#: console/templates/console-vnc-lite.html:222 msgid "Loading" msgstr "" -#: create/forms.py:10 -msgid "No flavor name has been entered" -msgstr "" - -#: create/forms.py:13 create/forms.py:37 -msgid "No VCPU has been entered" -msgstr "" - -#: create/forms.py:15 -msgid "No HDD image has been entered" -msgstr "" - -#: create/forms.py:17 create/forms.py:40 -msgid "No RAM size has been entered" -msgstr "" - -#: create/forms.py:34 +#: instances/forms.py:37 msgid "No Virtual Machine name has been entered" msgstr "" -#: create/forms.py:41 +#: instances/forms.py:39 +msgid "No VCPU has been entered" +msgstr "" + +#: instances/forms.py:42 +msgid "No RAM size has been entered" +msgstr "" + +#: instances/forms.py:43 msgid "No Network pool has been choosen" msgstr "" -#: create/forms.py:46 +#: instances/forms.py:48 msgid "Please select HDD cache mode" msgstr "" -#: create/forms.py:53 +#: instances/forms.py:55 msgid "Please select a graphics type" msgstr "" -#: create/forms.py:54 +#: instances/forms.py:56 msgid "Please select a video driver" msgstr "" -#: create/forms.py:61 +#: instances/forms.py:63 msgid "The name of the virtual machine must not contain any special characters" msgstr "" -#: create/forms.py:63 +#: instances/forms.py:65 msgid "The name of the virtual machine must not exceed 20 characters" msgstr "" -#: create/templates/create_flav_block.html:13 -msgid "Add New Flavor" +#: instances/models.py:11 +msgid "label" msgstr "" -#: create/templates/create_flav_block.html:21 -msgid "Micro" +#: instances/models.py:12 +msgid "memory" msgstr "" -#: create/templates/create_flav_block.html:26 -#: create/templates/create_instance_w2.html:82 -#: create/templates/create_instance_w2.html:327 -#: create/templates/create_instance_w2.html:540 -#: instances/templates/allinstances.html:58 -#: instances/templates/allinstances_index_grouped.html:9 -#: instances/templates/allinstances_index_nongrouped.html:8 -#: instances/templates/instance.html:40 instances/templates/instance.html:42 -#: instances/templates/instances.html:73 -msgid "VCPU" +#: instances/models.py:13 +msgid "vcpu" msgstr "" -#: create/templates/create_flav_block.html:33 -#: create/templates/create_instance_w2.html:83 -#: create/templates/create_instance_w2.html:356 -#: create/templates/create_instance_w2.html:567 -#: instances/templates/instance.html:45 -msgid "RAM" +#: instances/models.py:14 +msgid "disk" msgstr "" -#: create/templates/create_flav_block.html:38 -#: create/templates/create_instance_w2.html:94 -#: create/templates/create_instance_w2.html:360 -#: create/templates/create_instance_w2.html:571 -#: instances/templates/allinstances.html:78 -#: instances/templates/instance.html:45 instances/templates/instance.html:450 -#: instances/templates/instance.html:463 -msgid "MB" +#: instances/models.py:28 +msgid "uuid" msgstr "" -#: create/templates/create_flav_block.html:41 -#: create/templates/create_instance_w2.html:84 -#: create/templates/create_instance_w2.html:371 -msgid "HDD" +#: instances/models.py:29 +msgid "is template" msgstr "" -#: create/templates/create_flav_block.html:46 -#: create/templates/create_instance_w2.html:95 -#: instances/templates/add_instance_volume.html:60 -#: storages/templates/create_stg_vol_block.html:71 -msgid "GB" +#: instances/models.py:30 +msgid "created" msgstr "" -#: create/templates/create_instance_w1.html:4 -#: create/templates/create_instance_w2.html:4 -msgid "Create new instance" +#: instances/models.py:215 +msgid "Can access console without password" msgstr "" -#: create/templates/create_instance_w1.html:4 -msgid "Select Type" +#: instances/templates/add_instance_network_block.html:12 +msgid "Add Instance Network" msgstr "" -#: create/templates/create_instance_w1.html:10 -#: create/templates/create_instance_w2.html:13 -msgid "New instance on" -msgstr "" - -#: create/templates/create_instance_w1.html:45 -#: instances/templates/instance.html:643 networks/templates/network.html:75 -#: nwfilters/templates/nwfilter.html:52 -msgid "XML" -msgstr "" - -#: create/templates/create_instance_w1.html:66 -msgid "Chipset" -msgstr "" - -#: create/templates/create_instance_w1.html:76 -msgid "Next" -msgstr "" - -#: create/templates/create_instance_w2.html:49 -msgid "Flavor" -msgstr "" - -#: create/templates/create_instance_w2.html:54 -msgid "Custom" -msgstr "" - -#: create/templates/create_instance_w2.html:59 -msgid "Template" -msgstr "" - -#: create/templates/create_instance_w2.html:70 -msgid "Hypervisor doesn't have any Flavors" -msgstr "" - -#: create/templates/create_instance_w2.html:75 -msgid "Create from flavor" -msgstr "" - -#: create/templates/create_instance_w2.html:101 -msgid "Create Virtual Machine" -msgstr "" - -#: create/templates/create_instance_w2.html:119 -#: create/templates/create_instance_w2.html:316 -#: create/templates/create_instance_w2.html:529 -msgid "Firmware" -msgstr "" - -#: create/templates/create_instance_w2.html:131 -#: create/templates/create_instance_w2.html:334 -#: create/templates/create_instance_w2.html:546 -msgid "VCPU Config" -msgstr "" - -#: create/templates/create_instance_w2.html:134 -#: create/templates/create_instance_w2.html:337 -#: create/templates/create_instance_w2.html:549 -msgid "no-mode" -msgstr "" - -#: create/templates/create_instance_w2.html:153 -#: create/templates/create_instance_w2.html:595 -#: instances/templates/add_instance_volume.html:30 -#: instances/templates/add_instance_volume.html:100 -#: instances/templates/instance.html:829 storages/templates/storage.html:4 -#: storages/templates/storage.html:14 -msgid "Storage" -msgstr "" - -#: create/templates/create_instance_w2.html:162 -#: create/templates/create_instance_w2.html:190 -#: create/templates/create_instance_w2.html:381 -#: create/templates/create_instance_w2.html:436 -#: create/templates/create_instance_w2.html:584 -#: create/templates/create_instance_w2.html:603 -#: create/templates/create_instance_w2.html:649 -#: instances/templates/add_instance_network_block.html:40 -#: instances/templates/add_instance_volume.html:117 -#: instances/templates/create_inst_block.html:25 -#: instances/templates/instance.html:329 instances/templates/instance.html:776 -#: instances/templates/instance.html:972 instances/templates/instance.html:1649 -#: interfaces/templates/interface.html:42 -#: interfaces/templates/interface.html:44 nwfilters/templates/nwfilter.html:81 -#: storages/templates/create_stg_block.html:132 -#: storages/templates/storage.html:49 storages/templates/storage.html:51 -#: storages/templates/storage.html:53 -msgid "None" -msgstr "" - -#: create/templates/create_instance_w2.html:168 -#: create/templates/create_instance_w2.html:392 -#: create/templates/create_instance_w2.html:609 -#: instances/templates/add_instance_network_block.html:24 -#: instances/templates/instance.html:624 instances/templates/instance.html:959 -#: networks/templates/network.html:4 networks/templates/network.html:9 -#: networks/templates/network.html:110 networks/templates/network.html:221 -msgid "Network" -msgstr "" - -#: create/templates/create_instance_w2.html:178 -#: create/templates/create_instance_w2.html:406 -#: create/templates/create_instance_w2.html:619 -#: instances/templates/edit_instance_volume.html:25 -msgid "Advanced" -msgstr "" - -#: create/templates/create_instance_w2.html:187 -#: create/templates/create_instance_w2.html:433 -#: create/templates/create_instance_w2.html:646 -#: instances/templates/add_instance_network_block.html:37 -#: instances/templates/instance.html:968 nwfilters/templates/nwfilter.html:9 -msgid "NWFilter" -msgstr "" - -#: create/templates/create_instance_w2.html:198 -#: create/templates/create_instance_w2.html:635 -msgid "HDD cache mode" -msgstr "" - -#: create/templates/create_instance_w2.html:209 #: instances/templates/add_instance_network_block.html:18 -#: instances/templates/instance.html:924 instances/templates/instance.html:947 -#: instances/templates/instance.html:1047 +#: instances/templates/create_instance_w2.html:210 +#: instances/templates/instances/settings_tab.html:358 +#: instances/templates/instances/settings_tab.html:381 +#: instances/templates/instances/settings_tab.html:482 #: interfaces/templates/interface.html:46 #: interfaces/templates/interface.html:75 #: interfaces/templates/interfaces.html:63 @@ -1384,116 +1319,46 @@ msgstr "" msgid "MAC" msgstr "" -#: create/templates/create_instance_w2.html:216 -#: create/templates/create_instance_w2.html:445 -#: create/templates/create_instance_w2.html:658 -msgid "Graphics" +#: instances/templates/add_instance_network_block.html:24 +#: instances/templates/create_instance_w2.html:169 +#: instances/templates/create_instance_w2.html:393 +#: instances/templates/create_instance_w2.html:610 +#: instances/templates/instances/settings_tab.html:30 +#: instances/templates/instances/settings_tab.html:393 +#: networks/templates/network.html:4 networks/templates/network.html:9 +#: networks/templates/network.html:110 networks/templates/network.html:221 +msgid "Network" msgstr "" -#: create/templates/create_instance_w2.html:227 -#: create/templates/create_instance_w2.html:456 -#: create/templates/create_instance_w2.html:669 -msgid "Video" +#: instances/templates/add_instance_network_block.html:37 +#: instances/templates/create_instance_w2.html:188 +#: instances/templates/create_instance_w2.html:434 +#: instances/templates/create_instance_w2.html:647 +#: instances/templates/instances/settings_tab.html:402 +#: nwfilters/templates/nwfilter.html:9 +msgid "NWFilter" msgstr "" -#: create/templates/create_instance_w2.html:241 -#: create/templates/create_instance_w2.html:470 -#: create/templates/create_instance_w2.html:683 -msgid "Console Access" -msgstr "" - -#: create/templates/create_instance_w2.html:251 -#: create/templates/create_instance_w2.html:253 -#: create/templates/create_instance_w2.html:480 -#: create/templates/create_instance_w2.html:482 -#: create/templates/create_instance_w2.html:693 -#: create/templates/create_instance_w2.html:695 -msgid "Console Password" -msgstr "" - -#: create/templates/create_instance_w2.html:257 -#: create/templates/create_instance_w2.html:486 -#: create/templates/create_instance_w2.html:699 -msgid "Guest Agent" -msgstr "" - -#: create/templates/create_instance_w2.html:264 -#: create/templates/create_instance_w2.html:493 -#: create/templates/create_instance_w2.html:706 -msgid "VirtIO" -msgstr "" - -#: create/templates/create_instance_w2.html:363 -msgid "Added Disks" -msgstr "" - -#: create/templates/create_instance_w2.html:376 -#: create/templates/create_instance_w2.html:579 -msgid "Select pool" -msgstr "" - -#: create/templates/create_instance_w2.html:415 -#: create/templates/create_instance_w2.html:628 -msgid "Disk Metadata" -msgstr "" - -#: create/templates/create_instance_w2.html:417 -#: create/templates/create_instance_w2.html:630 -msgid "Metadata preallocation" -msgstr "" - -#: create/templates/create_instance_w2.html:419 -#: create/templates/create_instance_w2.html:632 -#: venv/lib/python3.6/site-packages/django/db/models/fields/files.py:360 -msgid "Image" -msgstr "" - -#: create/templates/create_instance_w2.html:422 -msgid "HDD Cache Mode" -msgstr "" - -#: create/templates/create_instance_w2.html:574 -msgid "Template Disk" -msgstr "" - -#: create/views.py:52 create/views.py:164 -msgid "A virtual machine with this name already exists" -msgstr "" - -#: create/views.py:133 -msgid "You haven't defined any storage pools" -msgstr "" - -#: create/views.py:136 -msgid "You haven't defined any network pools" -msgstr "" - -#: create/views.py:167 -msgid "There is an instance with same name. Are you sure?" -msgstr "" - -#: create/views.py:171 -msgid "No Virtual Machine MAC has been entered" -msgstr "" - -#: create/views.py:204 -msgid "Image has already exist. Please check volumes or change instance name" -msgstr "" - -#: create/views.py:230 -msgid "First you need to create or select an image" -msgstr "" - -#: create/views.py:252 -msgid "Invalid cache mode" -msgstr "" - -#: create/views.py:290 -msgid "Instance is created" -msgstr "" - -#: instances/templates/add_instance_network_block.html:12 -msgid "Add Instance Network" +#: instances/templates/add_instance_network_block.html:40 +#: instances/templates/add_instance_volume.html:117 +#: instances/templates/create_inst_block.html:25 +#: instances/templates/create_instance_w2.html:163 +#: instances/templates/create_instance_w2.html:191 +#: instances/templates/create_instance_w2.html:382 +#: instances/templates/create_instance_w2.html:437 +#: instances/templates/create_instance_w2.html:585 +#: instances/templates/create_instance_w2.html:604 +#: instances/templates/create_instance_w2.html:650 +#: instances/templates/instances/access_tab.html:135 +#: instances/templates/instances/settings_tab.html:183 +#: instances/templates/instances/settings_tab.html:406 +#: instances/templates/instances/stats_tab.html:90 +#: interfaces/templates/interface.html:42 +#: interfaces/templates/interface.html:44 nwfilters/templates/nwfilter.html:81 +#: storages/templates/create_stg_block.html:132 +#: storages/templates/storage.html:48 storages/templates/storage.html:50 +#: storages/templates/storage.html:52 +msgid "None" msgstr "" #: instances/templates/add_instance_owner_block.html:12 @@ -1523,24 +1388,36 @@ msgstr "" msgid "Volume parameters" msgstr "" +#: instances/templates/add_instance_volume.html:30 +#: instances/templates/add_instance_volume.html:100 +#: instances/templates/create_instance_w2.html:154 +#: instances/templates/create_instance_w2.html:596 +#: instances/templates/instances/settings_tab.html:237 +#: storages/templates/storage.html:4 storages/templates/storage.html:14 +msgid "Storage" +msgstr "" + #: instances/templates/add_instance_volume.html:46 #: storages/templates/create_stg_block.html:183 -#: storages/templates/create_stg_vol_block.html:57 -#: storages/templates/storage.html:101 storages/templates/storage.html:139 +#: storages/templates/storage.html:100 storages/templates/storage.html:138 msgid "Format" msgstr "" #: instances/templates/add_instance_volume.html:56 -#: storages/templates/create_stg_vol_block.html:67 -#: storages/templates/storage.html:54 storages/templates/storage.html:100 +#: storages/templates/storage.html:53 storages/templates/storage.html:99 #: storages/templates/storages.html:66 msgid "Size" msgstr "" +#: instances/templates/add_instance_volume.html:60 +#: instances/templates/create_instance_w2.html:96 +msgid "GB" +msgstr "" + #: instances/templates/add_instance_volume.html:63 #: instances/templates/add_instance_volume.html:123 #: instances/templates/edit_instance_volume.html:53 -#: instances/templates/instance.html:763 +#: instances/templates/instances/settings_tab.html:168 msgid "Bus" msgstr "" @@ -1550,9 +1427,8 @@ msgid "Cache" msgstr "" #: instances/templates/add_instance_volume.html:83 -#: instances/templates/instance.html:1416 -#: storages/templates/create_stg_vol_block.html:74 -#: storages/templates/storage.html:149 +#: instances/templates/instances/settings_tab.html:755 +#: storages/templates/storage.html:148 msgid "Metadata" msgstr "" @@ -1564,55 +1440,23 @@ msgstr "" msgid "Volume" msgstr "" -#: instances/templates/allinstances.html:33 -#: instances/templates/allinstances.html:49 -msgid "You don't have any Instance" +#: instances/templates/allinstances.html:24 +msgid "Problem occurred with host" msgstr "" -#: instances/templates/allinstances.html:71 -#: instances/templates/allinstances_index_grouped.html:57 -#: instances/templates/allinstances_index_nongrouped.html:21 -#: instances/templates/instance.html:14 instances/templates/instances.html:86 -msgid "Off" -msgstr "" - -#: instances/templates/allinstances.html:74 -#: instances/templates/allinstances_index_grouped.html:58 -#: instances/templates/allinstances_index_nongrouped.html:22 -#: instances/templates/instance.html:20 instances/templates/instance.html:143 -#: instances/templates/instance.html:198 -#: instances/templates/instance_actions.html:15 -#: instances/templates/instance_actions.html:32 -#: instances/templates/instance_actions.html:49 -#: instances/templates/instances.html:87 instances/views.py:699 -#: instances/views.py:1239 -msgid "Suspend" -msgstr "" - -#: instances/templates/allinstances_index_grouped.html:6 -#: instances/templates/allinstances_index_nongrouped.html:5 -#: instances/templates/instance.html:1438 -#: instances/templates/instance.html:1461 instances/templates/instances.html:70 -msgid "Description" -msgstr "" - -#: instances/templates/allinstances_index_grouped.html:11 +#: instances/templates/allinstances_index_grouped.html:12 msgid "Mem Usage" msgstr "" -#: instances/templates/allinstances_index_grouped.html:27 -msgid "Not Active" -msgstr "" - -#: instances/templates/allinstances_index_grouped.html:28 -msgid "Connection Failed" -msgstr "" - #: instances/templates/bottom_bar.html:4 msgid "HOST" msgstr "" -#: instances/templates/create_inst_block.html:12 +#: instances/templates/create_flav_block.html:14 +msgid "Add New Flavor" +msgstr "" + +#: instances/templates/create_inst_block.html:11 msgid "Choose a compute for new instance" msgstr "" @@ -1629,6 +1473,183 @@ msgstr "" msgid "Choose" msgstr "" +#: instances/templates/create_instance_w1.html:4 +#: instances/templates/create_instance_w2.html:5 +msgid "Create new instance" +msgstr "" + +#: instances/templates/create_instance_w1.html:4 +msgid "Select Type" +msgstr "" + +#: instances/templates/create_instance_w1.html:11 +#: instances/templates/create_instance_w2.html:14 +#, python-format +msgid "New instance on %(host)s " +msgstr "" + +#: instances/templates/create_instance_w1.html:47 +#: instances/templates/instances/settings_tab.html:49 +#: networks/templates/network.html:75 nwfilters/templates/nwfilter.html:52 +msgid "XML" +msgstr "" + +#: instances/templates/create_instance_w1.html:68 +msgid "Chipset" +msgstr "" + +#: instances/templates/create_instance_w1.html:78 +msgid "Next" +msgstr "" + +#: instances/templates/create_instance_w2.html:50 +msgid "Flavor" +msgstr "" + +#: instances/templates/create_instance_w2.html:55 +msgid "Custom" +msgstr "" + +#: instances/templates/create_instance_w2.html:60 +msgid "Template" +msgstr "" + +#: instances/templates/create_instance_w2.html:71 +msgid "Hypervisor doesn't have any Flavors" +msgstr "" + +#: instances/templates/create_instance_w2.html:76 +msgid "Create from flavor" +msgstr "" + +#: instances/templates/create_instance_w2.html:84 +#: instances/templates/create_instance_w2.html:357 +#: instances/templates/create_instance_w2.html:568 +#: instances/templates/instance.html:45 +msgid "RAM" +msgstr "" + +#: instances/templates/create_instance_w2.html:85 +#: instances/templates/create_instance_w2.html:372 +msgid "HDD" +msgstr "" + +#: instances/templates/create_instance_w2.html:95 +#: instances/templates/create_instance_w2.html:361 +#: instances/templates/create_instance_w2.html:572 +#: instances/templates/instance.html:45 +#: instances/templates/instances/resize_tab.html:95 +#: instances/templates/instances/resize_tab.html:108 +msgid "MB" +msgstr "" + +#: instances/templates/create_instance_w2.html:102 +msgid "Create Virtual Machine" +msgstr "" + +#: instances/templates/create_instance_w2.html:120 +#: instances/templates/create_instance_w2.html:317 +#: instances/templates/create_instance_w2.html:530 +msgid "Firmware" +msgstr "" + +#: instances/templates/create_instance_w2.html:132 +#: instances/templates/create_instance_w2.html:335 +#: instances/templates/create_instance_w2.html:547 +msgid "VCPU Config" +msgstr "" + +#: instances/templates/create_instance_w2.html:135 +#: instances/templates/create_instance_w2.html:338 +#: instances/templates/create_instance_w2.html:550 +msgid "no-mode" +msgstr "" + +#: instances/templates/create_instance_w2.html:179 +#: instances/templates/create_instance_w2.html:407 +#: instances/templates/create_instance_w2.html:620 +#: instances/templates/edit_instance_volume.html:25 +msgid "Advanced" +msgstr "" + +#: instances/templates/create_instance_w2.html:199 +#: instances/templates/create_instance_w2.html:636 +msgid "HDD cache mode" +msgstr "" + +#: instances/templates/create_instance_w2.html:217 +#: instances/templates/create_instance_w2.html:446 +#: instances/templates/create_instance_w2.html:659 +msgid "Graphics" +msgstr "" + +#: instances/templates/create_instance_w2.html:228 +#: instances/templates/create_instance_w2.html:457 +#: instances/templates/create_instance_w2.html:670 +msgid "Video" +msgstr "" + +#: instances/templates/create_instance_w2.html:242 +#: instances/templates/create_instance_w2.html:471 +#: instances/templates/create_instance_w2.html:684 +msgid "Console Access" +msgstr "" + +#: instances/templates/create_instance_w2.html:252 +#: instances/templates/create_instance_w2.html:254 +#: instances/templates/create_instance_w2.html:481 +#: instances/templates/create_instance_w2.html:483 +#: instances/templates/create_instance_w2.html:694 +#: instances/templates/create_instance_w2.html:696 +msgid "Console Password" +msgstr "" + +#: instances/templates/create_instance_w2.html:258 +#: instances/templates/create_instance_w2.html:487 +#: instances/templates/create_instance_w2.html:700 +msgid "Guest Agent" +msgstr "" + +#: instances/templates/create_instance_w2.html:265 +#: instances/templates/create_instance_w2.html:494 +#: instances/templates/create_instance_w2.html:707 +msgid "VirtIO" +msgstr "" + +#: instances/templates/create_instance_w2.html:364 +msgid "Added Disks" +msgstr "" + +#: instances/templates/create_instance_w2.html:377 +#: instances/templates/create_instance_w2.html:580 +msgid "Select pool" +msgstr "" + +#: instances/templates/create_instance_w2.html:416 +#: instances/templates/create_instance_w2.html:629 +msgid "Disk Metadata" +msgstr "" + +#: instances/templates/create_instance_w2.html:418 +#: instances/templates/create_instance_w2.html:631 +msgid "Metadata preallocation" +msgstr "" + +#: instances/templates/create_instance_w2.html:420 +#: instances/templates/create_instance_w2.html:633 +#: venv/lib/python3.6/site-packages/django/db/models/fields/files.py:360 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/files.py:391 +msgid "Image" +msgstr "" + +#: instances/templates/create_instance_w2.html:423 +msgid "HDD Cache Mode" +msgstr "" + +#: instances/templates/create_instance_w2.html:575 +msgid "Template Disk" +msgstr "" + #: instances/templates/edit_instance_volume.html:3 msgid "Edit Volume" msgstr "" @@ -1677,6 +1698,15 @@ msgstr "" msgid "Detect zeroes" msgstr "" +#: instances/templates/instance.html:20 +#: instances/templates/instance_actions.html:14 +#: instances/templates/instance_actions.html:25 +#: instances/templates/instance_actions.html:37 +#: instances/templates/instances/power_tab.html:25 +#: instances/templates/instances/power_tab.html:82 instances/views.py:287 +msgid "Suspend" +msgstr "" + #: instances/templates/instance.html:26 msgid "Guest Agent Enabled & Connected" msgstr "" @@ -1689,8 +1719,9 @@ msgstr "" msgid "Guest Agent Not Enabled & Not Connected" msgstr "" -#: instances/templates/instance.html:48 instances/templates/instance.html:374 -#: instances/templates/instance.html:610 +#: instances/templates/instance.html:48 +#: instances/templates/instances/resize_tab.html:18 +#: instances/templates/instances/settings_tab.html:16 msgid "Disk" msgstr "" @@ -1702,808 +1733,820 @@ msgstr "" msgid "quota reached" msgstr "" -#: instances/templates/instance.html:76 +#: instances/templates/instance.html:75 msgid "Power" msgstr "" -#: instances/templates/instance.html:82 +#: instances/templates/instance.html:81 msgid "Access" msgstr "" -#: instances/templates/instance.html:95 +#: instances/templates/instance.html:94 msgid "Snapshot" msgstr "" -#: instances/templates/instance.html:102 templates/navbar.html:32 +#: instances/templates/instance.html:101 templates/navbar.html:32 msgid "Settings" msgstr "" -#: instances/templates/instance.html:108 +#: instances/templates/instance.html:107 msgid "Stats" msgstr "" -#: instances/templates/instance.html:114 instances/templates/instance.html:1674 -#: instances/templates/instance.html:1691 -#: instances/templates/instance.html:1695 instances/views.py:421 +#: instances/templates/instance.html:113 +#: instances/templates/instances/destroy_instance_form.html:40 +#: instances/templates/instances/destroy_tab.html:18 +#: instances/templates/instances/destroy_tab.html:20 +#: instances/templates/instances/destroy_tab.html:23 instances/views.py:329 msgid "Destroy" msgstr "" -#: instances/templates/instance.html:127 instances/templates/instance.html:176 -#: instances/templates/instance_actions.html:18 -#: instances/templates/instance_actions.html:52 instances/views.py:387 -#: instances/views.py:1199 -msgid "Power Off" -msgstr "" - -#: instances/templates/instance.html:132 instances/templates/instance.html:183 -#: instances/templates/instance_actions.html:21 -#: instances/templates/instance_actions.html:38 -#: instances/templates/instance_actions.html:55 instances/views.py:381 -#: instances/views.py:1211 -msgid "Power Cycle" -msgstr "" - -#: instances/templates/instance.html:137 instances/templates/instance.html:157 -#: instances/templates/instance.html:190 instances/templates/instance.html:216 -#: instances/templates/instance_actions.html:35 instances/views.py:393 -#: instances/views.py:1206 -msgid "Force Off" -msgstr "" - -#: instances/templates/instance.html:152 instances/templates/instance.html:209 -#: instances/templates/instance.html:224 -#: instances/templates/instance_actions.html:29 instances/views.py:705 -#: instances/views.py:1245 -msgid "Resume" -msgstr "" - -#: instances/templates/instance.html:165 instances/templates/instance.html:236 -#: instances/templates/instance.html:238 -#: instances/templates/instance_actions.html:11 -#: instances/templates/instance_actions.html:46 instances/views.py:374 -#: instances/views.py:1193 +#: instances/templates/instance_actions.html:10 +#: instances/templates/instance_actions.html:35 +#: instances/templates/instances/power_tab.html:47 +#: instances/templates/instances/power_tab.html:121 +#: instances/templates/instances/power_tab.html:123 instances/views.py:262 msgid "Power On" msgstr "" -#: instances/templates/instance.html:174 -msgid "This action sends an ACPI shutdown signal to the instance." +#: instances/templates/instance_actions.html:15 +#: instances/templates/instances/power_tab.html:9 +#: instances/templates/instances/power_tab.html:59 instances/views.py:278 +msgid "Power Off" msgstr "" -#: instances/templates/instance.html:181 -msgid "" -"This action forcibly powers off and start the instance and may cause data " -"corruption." +#: instances/templates/instance_actions.html:16 +#: instances/templates/instance_actions.html:29 +#: instances/templates/instances/power_tab.html:14 +#: instances/templates/instances/power_tab.html:66 instances/views.py:271 +msgid "Power Cycle" msgstr "" -#: instances/templates/instance.html:188 instances/templates/instance.html:214 -msgid "" -"This action forcibly powers off the instance and may cause data corruption." +#: instances/templates/instance_actions.html:17 +#: instances/templates/instance_actions.html:30 +msgid "VNC Console" msgstr "" -#: instances/templates/instance.html:196 -msgid "This action suspends the instance." +#: instances/templates/instance_actions.html:22 +#: instances/templates/instances/power_tab.html:34 +#: instances/templates/instances/power_tab.html:93 +#: instances/templates/instances/power_tab.html:108 instances/views.py:295 +msgid "Resume" msgstr "" -#: instances/templates/instance.html:207 -msgid "This action restore the instance after suspend." +#: instances/templates/instance_actions.html:26 +#: instances/templates/instances/power_tab.html:19 +#: instances/templates/instances/power_tab.html:39 +#: instances/templates/instances/power_tab.html:74 +#: instances/templates/instances/power_tab.html:100 instances/views.py:302 +msgid "Force Off" msgstr "" -#: instances/templates/instance.html:222 -msgid "Administrator blocked your instance." -msgstr "" - -#: instances/templates/instance.html:232 -msgid "Click on Power On button to start this instance." -msgstr "" - -#: instances/templates/instance.html:235 -msgid "Template instance cannot be started." -msgstr "" - -#: instances/templates/instance.html:253 instances/templates/instance.html:285 -#: instances/templates/instance.html:290 instances/templates/instance.html:291 -#: instances/templates/instance.html:295 instances/templates/instance.html:617 -#: instances/templates/instance_actions.html:58 +#: instances/templates/instance_actions.html:41 +#: instances/templates/instances/access_tab.html:9 +#: instances/templates/instances/access_tab.html:79 +#: instances/templates/instances/access_tab.html:87 +#: instances/templates/instances/access_tab.html:90 +#: instances/templates/instances/access_tab.html:94 +#: instances/templates/instances/settings_tab.html:23 msgid "Console" msgstr "" -#: instances/templates/instance.html:259 +#: instances/templates/instances/access_tab.html:16 msgid "Root Password" msgstr "" -#: instances/templates/instance.html:273 instances/templates/instance.html:349 +#: instances/templates/instances/access_tab.html:31 +#: instances/templates/instances/access_tab.html:156 msgid "VDI" msgstr "" -#: instances/templates/instance.html:281 +#: instances/templates/instances/access_tab.html:39 +#, python-format msgid "" -"This action opens a new window with a VNC connection to the console of the " -"instance." +" This action opens a new window with a %(type)s connection to the console of " +"the instance." msgstr "" -#: instances/templates/instance.html:287 +#: instances/templates/instances/access_tab.html:47 +msgid "Scale" +msgstr "" + +#: instances/templates/instances/access_tab.html:55 +msgid "View Only" +msgstr "" + +#: instances/templates/instances/access_tab.html:63 +msgid "Resize Session" +msgstr "" + +#: instances/templates/instances/access_tab.html:71 +msgid "View Clipboard" +msgstr "" + +#: instances/templates/instances/access_tab.html:82 msgid "Toggle Dropdown" msgstr "" -#: instances/templates/instance.html:290 instances/templates/instance.html:291 +#: instances/templates/instances/access_tab.html:86 +#: instances/templates/instances/access_tab.html:89 msgid "Console port" msgstr "" -#: instances/templates/instance.html:290 +#: instances/templates/instances/access_tab.html:87 msgid "Lite" msgstr "" -#: instances/templates/instance.html:291 +#: instances/templates/instances/access_tab.html:90 msgid "Full" msgstr "" -#: instances/templates/instance.html:301 +#: instances/templates/instances/access_tab.html:100 msgid "You need shut down your instance and enter a new root password." msgstr "" -#: instances/templates/instance.html:305 +#: instances/templates/instances/access_tab.html:107 msgid "Enter Password" msgstr "" -#: instances/templates/instance.html:309 instances/templates/instance.html:311 +#: instances/templates/instances/access_tab.html:112 +#: instances/templates/instances/access_tab.html:115 msgid "Reset Root Password" msgstr "" -#: instances/templates/instance.html:319 +#: instances/templates/instances/access_tab.html:123 msgid "You need shut down your instance and choose your public key." msgstr "" -#: instances/templates/instance.html:335 instances/templates/instance.html:337 +#: instances/templates/instances/access_tab.html:142 +#: instances/templates/instances/access_tab.html:144 msgid "Add Public Key" msgstr "" -#: instances/templates/instance.html:345 +#: instances/templates/instances/access_tab.html:152 msgid "" "This action opens a remote viewer with a connection to the console of the " "instance." msgstr "" -#: instances/templates/instance.html:364 +#: instances/templates/instances/destroy_instance_form.html:4 +msgid "Confirm Destroy" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:8 +msgid "Destroy instance" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:15 +msgid "Instance is suspended, cannot destroy!" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:19 +msgid "This action is irreversible!" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:26 +msgid "Remove Instance's data" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:34 +msgid "Remove Instance's NVRAM" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:46 +msgid "You cannot destroy instance!" +msgstr "" + +#: instances/templates/instances/destroy_tab.html:8 +msgid "Destroy Instance" +msgstr "" + +#: instances/templates/instances/destroy_tab.html:15 +msgid "This action starts remove instance process" +msgstr "" + +#: instances/templates/instances/power_tab.html:56 +msgid "This action sends an ACPI shutdown signal to the instance." +msgstr "" + +#: instances/templates/instances/power_tab.html:64 +msgid "" +"This action forcibly powers off and start the instance and may cause data " +"corruption." +msgstr "" + +#: instances/templates/instances/power_tab.html:71 +#: instances/templates/instances/power_tab.html:98 +msgid "" +"This action forcibly powers off the instance and may cause data corruption." +msgstr "" + +#: instances/templates/instances/power_tab.html:80 +msgid "This action suspends the instance." +msgstr "" + +#: instances/templates/instances/power_tab.html:91 +msgid "This action restore the instance after suspend." +msgstr "" + +#: instances/templates/instances/power_tab.html:106 +msgid "Administrator blocked your instance." +msgstr "" + +#: instances/templates/instances/power_tab.html:116 +msgid "Click on Power On button to start this instance." +msgstr "" + +#: instances/templates/instances/power_tab.html:120 +msgid "Template instance cannot be started." +msgstr "" + +#: instances/templates/instances/resize_tab.html:8 msgid "CPU" msgstr "" -#: instances/templates/instance.html:385 +#: instances/templates/instances/resize_tab.html:29 msgid "Logical host CPUs" msgstr "" -#: instances/templates/instance.html:387 instances/templates/instance.html:450 -#: instances/templates/instance.html:490 +#: instances/templates/instances/resize_tab.html:31 +#: instances/templates/instances/resize_tab.html:95 +#: instances/templates/instances/resize_tab.html:136 msgid "Current Allocation" msgstr "" -#: instances/templates/instance.html:401 instances/templates/instance.html:463 +#: instances/templates/instances/resize_tab.html:45 +#: instances/templates/instances/resize_tab.html:108 msgid "Maximum Allocation" msgstr "" -#: instances/templates/instance.html:419 +#: instances/templates/instances/resize_tab.html:63 msgid "Logical Instance Active/Maximum CPUs" msgstr "" -#: instances/templates/instance.html:427 instances/templates/instance.html:674 -#: instances/templates/instance.html:689 networks/templates/network.html:65 -#: storages/templates/storage.html:79 +#: instances/templates/instances/resize_tab.html:71 +#: instances/templates/instances/settings_tab.html:79 +#: instances/templates/instances/settings_tab.html:95 +#: networks/templates/network.html:65 storages/templates/storage.html:78 msgid "Disable" msgstr "" -#: instances/templates/instance.html:429 +#: instances/templates/instances/resize_tab.html:73 msgid "Constant" msgstr "" -#: instances/templates/instance.html:431 instances/templates/instance.html:672 -#: instances/templates/instance.html:687 networks/templates/network.html:63 -#: storages/templates/storage.html:76 +#: instances/templates/instances/resize_tab.html:75 +#: instances/templates/instances/settings_tab.html:77 +#: instances/templates/instances/settings_tab.html:91 +#: networks/templates/network.html:63 storages/templates/storage.html:75 msgid "Enable" msgstr "" -#: instances/templates/instance.html:440 instances/templates/instance.html:479 -#: instances/templates/instance.html:503 +#: instances/templates/instances/resize_tab.html:84 +#: instances/templates/instances/resize_tab.html:124 +#: instances/templates/instances/resize_tab.html:157 msgid "You don't have permission for resizing instance" msgstr "" -#: instances/templates/instance.html:448 +#: instances/templates/instances/resize_tab.html:93 msgid "Total host memory" msgstr "" -#: instances/templates/instance.html:458 instances/templates/instance.html:473 +#: instances/templates/instances/resize_tab.html:103 +#: instances/templates/instances/resize_tab.html:118 msgid "Custom value" msgstr "" -#: instances/templates/instance.html:487 +#: instances/templates/instances/resize_tab.html:133 msgid "Disk allocation (GB)" msgstr "" -#: instances/templates/instance.html:517 instances/templates/instance.html:538 -#: instances/templates/instance.html:540 -msgid "Take Snapshot" +#: instances/templates/instances/resize_tab.html:140 +#: instances/templates/instances/settings_tab.html:269 +msgid "Error getting disk info" msgstr "" -#: instances/templates/instance.html:522 -msgid "Manage Snapshots" -msgstr "" - -#: instances/templates/instance.html:530 -msgid "" -"This may take more than an hour, depending on how much content is on your " -"droplet and how large the disk is." -msgstr "" - -#: instances/templates/instance.html:534 -msgid "Enter Snapshot Name" -msgstr "" - -#: instances/templates/instance.html:545 -msgid "To take a snapshot please Power Off the instance." -msgstr "" - -#: instances/templates/instance.html:550 -msgid "Choose a snapshot for restore/delete" -msgstr "" - -#: instances/templates/instance.html:567 -msgid "Revert to this Snapshot" -msgstr "" - -#: instances/templates/instance.html:572 -msgid "To restore snapshots you need Power Off the instance." -msgstr "" - -#: instances/templates/instance.html:581 -msgid "Delete Snapshot" -msgstr "" - -#: instances/templates/instance.html:592 -msgid "You do not have any snapshots" -msgstr "" - -#: instances/templates/instance.html:605 +#: instances/templates/instances/settings_tab.html:11 msgid "Boot" msgstr "" -#: instances/templates/instance.html:638 instances/templates/instance.html:1174 -#: instances/templates/instance.html:1176 +#: instances/templates/instances/settings_tab.html:44 +#: instances/templates/instances/settings_tab.html:616 +#: instances/templates/instances/settings_tab.html:618 msgid "Migrate" msgstr "" -#: instances/templates/instance.html:650 +#: instances/templates/instances/settings_tab.html:56 msgid "Options" msgstr "" -#: instances/templates/instance.html:666 networks/templates/network.html:59 -#: storages/templates/storage.html:71 +#: instances/templates/instances/settings_tab.html:72 +#: networks/templates/network.html:59 storages/templates/storage.html:70 msgid "Autostart" msgstr "" -#: instances/templates/instance.html:670 +#: instances/templates/instances/settings_tab.html:75 msgid "Autostart your instance when host server is power on " msgstr "" -#: instances/templates/instance.html:680 +#: instances/templates/instances/settings_tab.html:84 msgid "Boot Order" msgstr "" -#: instances/templates/instance.html:685 +#: instances/templates/instances/settings_tab.html:88 msgid "Enable Boot Menu for your instance when it starts up " msgstr "" -#: instances/templates/instance.html:687 +#: instances/templates/instances/settings_tab.html:91 msgid "Show boot menu" msgstr "" -#: instances/templates/instance.html:689 +#: instances/templates/instances/settings_tab.html:95 msgid "Hide boot menu" msgstr "" -#: instances/templates/instance.html:693 +#: instances/templates/instances/settings_tab.html:100 msgid "Please shutdown instance to modify boot menu" msgstr "" -#: instances/templates/instance.html:724 +#: instances/templates/instances/settings_tab.html:130 msgid "up: move selected devices" msgstr "" -#: instances/templates/instance.html:727 +#: instances/templates/instances/settings_tab.html:133 msgid "down: move selected devices" msgstr "" -#: instances/templates/instance.html:733 instances/templates/instance.html:994 +#: instances/templates/instances/settings_tab.html:139 +#: instances/templates/instances/settings_tab.html:428 msgid "Apply" msgstr "" -#: instances/templates/instance.html:743 +#: instances/templates/instances/settings_tab.html:149 msgid "Instance Media" msgstr "" -#: instances/templates/instance.html:746 +#: instances/templates/instances/settings_tab.html:152 msgid "Add CD-ROM" msgstr "" -#: instances/templates/instance.html:764 instances/templates/instance.html:826 +#: instances/templates/instances/settings_tab.html:169 +#: instances/templates/instances/settings_tab.html:234 #: interfaces/templates/create_iface_block.html:34 #: networks/templates/network.html:46 networks/templates/networks.html:63 #: storages/templates/create_stg_block.html:77 msgid "Device" msgstr "" -#: instances/templates/instance.html:765 +#: instances/templates/instances/settings_tab.html:170 msgid "CD-ROM" msgstr "" -#: instances/templates/instance.html:781 instances/templates/instance.html:783 +#: instances/templates/instances/settings_tab.html:188 +#: instances/templates/instances/settings_tab.html:190 msgid "Mount" msgstr "" -#: instances/templates/instance.html:786 +#: instances/templates/instances/settings_tab.html:193 msgid "Detach CD-ROM (remove device)" msgstr "" -#: instances/templates/instance.html:800 instances/templates/instance.html:802 +#: instances/templates/instances/settings_tab.html:208 +#: instances/templates/instances/settings_tab.html:210 msgid "Unmount" msgstr "" -#: instances/templates/instance.html:812 +#: instances/templates/instances/settings_tab.html:220 msgid "There is not any CD-ROM device." msgstr "" -#: instances/templates/instance.html:817 +#: instances/templates/instances/settings_tab.html:225 msgid "Instance Volume" msgstr "" -#: instances/templates/instance.html:827 +#: instances/templates/instances/settings_tab.html:235 msgid "Used" msgstr "" -#: instances/templates/instance.html:828 +#: instances/templates/instances/settings_tab.html:236 msgid "Capacity" msgstr "" -#: instances/templates/instance.html:830 instances/templates/instance.html:928 +#: instances/templates/instances/settings_tab.html:238 +#: instances/templates/instances/settings_tab.html:362 msgid "Source" msgstr "" -#: instances/templates/instance.html:870 instances/templates/instance.html:877 +#: instances/templates/instances/settings_tab.html:294 +#: instances/templates/instances/settings_tab.html:298 msgid "Detach" msgstr "" -#: instances/templates/instance.html:870 +#: instances/templates/instances/settings_tab.html:294 msgid "Are you sure to detach volume?" msgstr "" -#: instances/templates/instance.html:873 -msgid "Are you sure to delete volume?" -msgstr "" - -#: instances/templates/instance.html:877 instances/templates/instance.html:880 +#: instances/templates/instances/settings_tab.html:298 +#: instances/templates/instances/settings_tab.html:314 msgid "Are you sure? This may lead data corruption!" msgstr "" -#: instances/templates/instance.html:896 +#: instances/templates/instances/settings_tab.html:310 +msgid "Are you sure to delete volume?" +msgstr "" + +#: instances/templates/instances/settings_tab.html:330 msgid "Add a network device" msgstr "" -#: instances/templates/instance.html:902 +#: instances/templates/instances/settings_tab.html:336 msgid "Network Devices" msgstr "" -#: instances/templates/instance.html:907 instances/templates/instance.html:908 +#: instances/templates/instances/settings_tab.html:341 +#: instances/templates/instances/settings_tab.html:342 msgid "Info" msgstr "" -#: instances/templates/instance.html:921 +#: instances/templates/instances/settings_tab.html:355 msgid "active" msgstr "" -#: instances/templates/instance.html:926 nwfilters/templates/nwfilter.html:78 +#: instances/templates/instances/settings_tab.html:360 +#: nwfilters/templates/nwfilter.html:78 msgid "Filter" msgstr "" -#: instances/templates/instance.html:933 +#: instances/templates/instances/settings_tab.html:367 msgid "Edit NIC" msgstr "" -#: instances/templates/instance.html:941 +#: instances/templates/instances/settings_tab.html:375 msgid "Edit Instance Network" msgstr "" -#: instances/templates/instance.html:954 +#: instances/templates/instances/settings_tab.html:388 msgid "Net Source" msgstr "" -#: instances/templates/instance.html:962 interfaces/templates/interface.html:3 -#: interfaces/templates/interface.html:8 interfaces/templates/interface.html:40 +#: instances/templates/instances/settings_tab.html:396 +#: interfaces/templates/interface.html:3 interfaces/templates/interface.html:8 +#: interfaces/templates/interface.html:40 msgid "Interface" msgstr "" -#: instances/templates/instance.html:980 instances/templates/instance.html:1019 +#: instances/templates/instances/settings_tab.html:414 +#: instances/templates/instances/settings_tab.html:453 msgid "Model" msgstr "" -#: instances/templates/instance.html:994 +#: instances/templates/instances/settings_tab.html:428 msgid "Apply network changes" msgstr "" -#: instances/templates/instance.html:1003 +#: instances/templates/instances/settings_tab.html:437 msgid "Delete Device" msgstr "" -#: instances/templates/instance.html:1011 +#: instances/templates/instances/settings_tab.html:445 #: interfaces/templates/create_iface_block.html:71 #: interfaces/templates/interface.html:42 msgid "IPv4" msgstr "" -#: instances/templates/instance.html:1015 +#: instances/templates/instances/settings_tab.html:449 #: interfaces/templates/create_iface_block.html:74 #: interfaces/templates/interface.html:44 msgid "IPv6" msgstr "" -#: instances/templates/instance.html:1021 +#: instances/templates/instances/settings_tab.html:455 msgid "QoS" msgstr "" -#: instances/templates/instance.html:1041 networks/templates/network.html:325 +#: instances/templates/instances/settings_tab.html:476 +#: networks/templates/network.html:325 msgid "QoS Configuration" msgstr "" -#: instances/templates/instance.html:1047 +#: instances/templates/instances/settings_tab.html:482 #: networks/templates/add_network_qos.html:18 #: networks/templates/network.html:331 nwfilters/templates/nwfilter.html:134 msgid "Direction" msgstr "" -#: instances/templates/instance.html:1048 +#: instances/templates/instances/settings_tab.html:483 #: networks/templates/add_network_qos.html:27 #: networks/templates/network.html:332 msgid "Average" msgstr "" -#: instances/templates/instance.html:1049 +#: instances/templates/instances/settings_tab.html:484 #: networks/templates/add_network_qos.html:34 #: networks/templates/network.html:333 msgid "Peak" msgstr "" -#: instances/templates/instance.html:1050 +#: instances/templates/instances/settings_tab.html:485 #: networks/templates/add_network_qos.html:41 #: networks/templates/network.html:334 msgid "Burst" msgstr "" -#: instances/templates/instance.html:1074 networks/templates/network.html:356 +#: instances/templates/instances/settings_tab.html:510 +#: networks/templates/network.html:356 msgid "Edit QoS" msgstr "" -#: instances/templates/instance.html:1079 networks/templates/network.html:361 +#: instances/templates/instances/settings_tab.html:520 +#: networks/templates/network.html:361 msgid "Delete QoS" msgstr "" -#: instances/templates/instance.html:1095 +#: instances/templates/instances/settings_tab.html:536 msgid "For migration both host servers must have equal settings and OS type" msgstr "" -#: instances/templates/instance.html:1098 +#: instances/templates/instances/settings_tab.html:540 msgid "Original host" msgstr "" -#: instances/templates/instance.html:1104 +#: instances/templates/instances/settings_tab.html:546 msgid "Host migration" msgstr "" -#: instances/templates/instance.html:1121 +#: instances/templates/instances/settings_tab.html:563 msgid "Live migration" msgstr "" -#: instances/templates/instance.html:1129 +#: instances/templates/instances/settings_tab.html:571 msgid "Unsafe migration" msgstr "" -#: instances/templates/instance.html:1137 +#: instances/templates/instances/settings_tab.html:579 msgid "Delete original" msgstr "" -#: instances/templates/instance.html:1145 +#: instances/templates/instances/settings_tab.html:587 msgid "Offline migration" msgstr "" -#: instances/templates/instance.html:1153 +#: instances/templates/instances/settings_tab.html:595 msgid "Post copy" msgstr "" -#: instances/templates/instance.html:1161 +#: instances/templates/instances/settings_tab.html:603 msgid "Forces CPU convergence during live migration" msgstr "" -#: instances/templates/instance.html:1161 +#: instances/templates/instances/settings_tab.html:603 msgid "Auto converge" msgstr "" -#: instances/templates/instance.html:1169 +#: instances/templates/instances/settings_tab.html:611 msgid "Compress instance memory for fast migration" msgstr "" -#: instances/templates/instance.html:1169 +#: instances/templates/instances/settings_tab.html:611 msgid "Compressed" msgstr "" -#: instances/templates/instance.html:1182 +#: instances/templates/instances/settings_tab.html:624 msgid "If you need to edit XML please Power Off the instance" msgstr "" -#: instances/templates/instance.html:1203 +#: instances/templates/instances/settings_tab.html:646 msgid "Instance owners" msgstr "" -#: instances/templates/instance.html:1216 -msgid "Delete Ownership" +#: instances/templates/instances/settings_tab.html:675 +msgid "To change console settings, shutdown the instance." msgstr "" -#: instances/templates/instance.html:1231 -msgid "To set console's type, shutdown the instance." +#: instances/templates/instances/settings_tab.html:681 +#: instances/templates/instances/settings_tab.html:683 +msgid "Update" msgstr "" -#: instances/templates/instance.html:1234 -#: interfaces/templates/create_iface_block.html:44 -#: interfaces/templates/interface.html:77 -#: interfaces/templates/interfaces.html:62 -#: storages/templates/create_stg_block.html:35 -#: storages/templates/create_stg_block.html:64 -#: storages/templates/create_stg_block.html:93 -#: storages/templates/create_stg_block.html:158 -#: storages/templates/storages.html:64 -msgid "Type" -msgstr "" - -#: instances/templates/instance.html:1238 -#: instances/templates/instance.html:1262 -#: instances/templates/instance.html:1331 -#: instances/templates/instance.html:1495 -msgid "please choose" -msgstr "" - -#: instances/templates/instance.html:1246 -#: instances/templates/instance.html:1248 -#: instances/templates/instance.html:1269 -#: instances/templates/instance.html:1271 -#: instances/templates/instance.html:1307 -#: instances/templates/instance.html:1309 -#: instances/templates/instance.html:1339 -#: instances/templates/instance.html:1341 -#: instances/templates/instance.html:1502 -#: instances/templates/instance.html:1504 -#: instances/templates/instance.html:1524 -#: instances/templates/instance.html:1526 -#: instances/templates/instance.html:1554 secrets/templates/secrets.html:103 -msgid "Set" -msgstr "" - -#: instances/templates/instance.html:1255 -msgid "To set console listen address, shutdown the instance." -msgstr "" - -#: instances/templates/instance.html:1258 -msgid "Listen on" -msgstr "" - -#: instances/templates/instance.html:1278 -msgid "To create console password, shutdown the instance." -msgstr "" - -#: instances/templates/instance.html:1284 -msgid "Generate" -msgstr "" - -#: instances/templates/instance.html:1288 -#: instances/templates/instance.html:1322 networks/templates/network.html:169 -#: networks/templates/network.html:279 -#: venv/lib/python3.6/site-packages/django/forms/widgets.py:395 -msgid "Clear" -msgstr "" - -#: instances/templates/instance.html:1304 networks/templates/network.html:161 -#: networks/templates/network.html:271 nwfilters/templates/nwfilters.html:88 -msgid "Show" -msgstr "" - -#: instances/templates/instance.html:1316 -msgid "To set console's keymap, shutdown the instance." -msgstr "" - -#: instances/templates/instance.html:1327 -msgid "Keymap" -msgstr "" - -#: instances/templates/instance.html:1353 +#: instances/templates/instances/settings_tab.html:692 msgid "Create a clone" msgstr "" -#: instances/templates/instance.html:1356 +#: instances/templates/instances/settings_tab.html:695 msgid "Clone Name" msgstr "" -#: instances/templates/instance.html:1363 -#: instances/templates/instance.html:1394 +#: instances/templates/instances/settings_tab.html:702 +#: instances/templates/instances/settings_tab.html:733 msgid "Guess" msgstr "" -#: instances/templates/instance.html:1382 +#: instances/templates/instances/settings_tab.html:721 msgid "Network devices" msgstr "" -#: instances/templates/instance.html:1392 +#: instances/templates/instances/settings_tab.html:731 msgid "Random" msgstr "" -#: instances/templates/instance.html:1407 +#: instances/templates/instances/settings_tab.html:746 msgid "Storage devices" msgstr "" -#: instances/templates/instance.html:1432 -#: instances/templates/instance.html:1455 +#: instances/templates/instances/settings_tab.html:771 +#: instances/templates/instances/settings_tab.html:794 msgid "Title" msgstr "" -#: instances/templates/instance.html:1452 +#: instances/templates/instances/settings_tab.html:791 msgid "To set instance template name description, shutdown the instance." msgstr "" -#: instances/templates/instance.html:1467 +#: instances/templates/instances/settings_tab.html:806 msgid "Is template" msgstr "" -#: instances/templates/instance.html:1488 +#: instances/templates/instances/settings_tab.html:827 msgid "To set instance video model, shutdown the instance." msgstr "" -#: instances/templates/instance.html:1491 +#: instances/templates/instances/settings_tab.html:830 msgid "Primary Video Model" msgstr "" -#: instances/templates/instance.html:1512 +#: instances/templates/instances/settings_tab.html:834 +msgid "please choose" +msgstr "" + +#: instances/templates/instances/settings_tab.html:841 +#: instances/templates/instances/settings_tab.html:843 +#: instances/templates/instances/settings_tab.html:863 +#: instances/templates/instances/settings_tab.html:865 +#: instances/templates/instances/settings_tab.html:893 +#: secrets/templates/secrets.html:103 +msgid "Set" +msgstr "" + +#: instances/templates/instances/settings_tab.html:851 msgid "To set instance vCPUs hotpluggable" msgstr "" -#: instances/templates/instance.html:1515 +#: instances/templates/instances/settings_tab.html:854 msgid "vCPU Hot Plug" msgstr "" -#: instances/templates/instance.html:1519 -#: instances/templates/instance.html:1550 +#: instances/templates/instances/settings_tab.html:858 +#: instances/templates/instances/settings_tab.html:889 msgid "Enabled" msgstr "" -#: instances/templates/instance.html:1520 -#: instances/templates/instance.html:1551 +#: instances/templates/instances/settings_tab.html:859 +#: instances/templates/instances/settings_tab.html:890 msgid "Disabled" msgstr "" -#: instances/templates/instance.html:1534 +#: instances/templates/instances/settings_tab.html:873 msgid "To Enable/Disable Qemu Guest Agent. Status" msgstr "" -#: instances/templates/instance.html:1539 +#: instances/templates/instances/settings_tab.html:878 msgid "Disconnected" msgstr "" -#: instances/templates/instance.html:1542 +#: instances/templates/instances/settings_tab.html:881 #: venv/lib/python3.6/site-packages/django/forms/widgets.py:709 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:703 msgid "Unknown" msgstr "" -#: instances/templates/instance.html:1546 +#: instances/templates/instances/settings_tab.html:885 msgid "Qemu Guest Agent" msgstr "" -#: instances/templates/instance.html:1572 +#: instances/templates/instances/snapshots_tab.html:9 +#: instances/templates/instances/snapshots_tab.html:31 +#: instances/templates/instances/snapshots_tab.html:33 +msgid "Take Snapshot" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:14 +msgid "Manage Snapshots" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:22 +msgid "" +"This may take more than an hour, depending on how much content is on your " +"droplet and how large the disk is." +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:27 +msgid "Enter Snapshot Name" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:38 +msgid "To take a snapshot please Power Off the instance." +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:43 +msgid "Choose a snapshot for restore/delete" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:61 +msgid "Revert to this Snapshot" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:66 +msgid "To restore snapshots you need Power Off the instance." +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:75 +msgid "Delete Snapshot" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:86 +msgid "You do not have any snapshots" +msgstr "" + +#: instances/templates/instances/stats_tab.html:8 msgid "Real Time" msgstr "" -#: instances/templates/instance.html:1586 +#: instances/templates/instances/stats_tab.html:23 msgid "CPU Usage" msgstr "" -#: instances/templates/instance.html:1598 +#: instances/templates/instances/stats_tab.html:36 msgid "Memory Usage" msgstr "" -#: instances/templates/instance.html:1611 +#: instances/templates/instances/stats_tab.html:50 msgid "Bandwidth Device" msgstr "" -#: instances/templates/instance.html:1625 +#: instances/templates/instances/stats_tab.html:65 msgid "Disk I/O device" msgstr "" -#: instances/templates/instance.html:1664 -msgid "Destroy Instance" -msgstr "" - -#: instances/templates/instance.html:1671 -msgid "Delete storage for instance?" -msgstr "" - -#: instances/templates/instance.html:1680 -msgid "Remove Instance's data" -msgstr "" - -#: instances/templates/instance.html:1687 -msgid "Remove Instance's NVRAM" -msgstr "" - -#: instances/templates/instance_actions.html:24 -#: instances/templates/instance_actions.html:41 -msgid "VNC Console" -msgstr "" - -#: instances/templates/instances.html:61 -msgid "Hypervisor doesn't have any Instances" -msgstr "" - -#: instances/views.py:224 +#: instances/utils.py:122 msgid "None available device name" msgstr "" -#: instances/views.py:260 +#: instances/utils.py:239 +msgid "Deleting due to multiple(Instance Name) records." +msgstr "" + +#: instances/utils.py:247 +msgid "Deleting due to multiple(UUID) records." +msgstr "" + +#: instances/views.py:259 +msgid "Templates cannot be started." +msgstr "" + +#: instances/views.py:362 #, python-brace-format msgid "Migrate to {new_compute.hostname}" msgstr "" -#: instances/views.py:340 -#, python-brace-format -msgid "Fixing UUID {uuid}" -msgstr "" - -#: instances/views.py:345 -msgid "Instance does not exist: Creating new instance" -msgstr "" - -#: instances/views.py:370 instances/views.py:1190 -msgid "Templates cannot be started." -msgstr "" - -#: instances/views.py:437 +#: instances/views.py:385 msgid "Reset root password" msgstr "" -#: instances/views.py:445 instances/views.py:467 +#: instances/views.py:391 instances/views.py:417 msgid "Please shutdown down your instance and then try again" msgstr "" -#: instances/views.py:459 +#: instances/views.py:409 #, python-brace-format msgid "Installed new SSH public key {publickey.keyname}" msgstr "" -#: instances/views.py:477 +#: instances/views.py:436 #, python-brace-format msgid "User {quota_msg} quota reached, cannot resize CPU of '{instance.name}'!" msgstr "" -#: instances/views.py:483 +#: instances/views.py:442 msgid "Resize CPU" msgstr "" -#: instances/views.py:501 +#: instances/views.py:470 #, python-brace-format msgid "" "User {quota_msg} quota reached, cannot resize memory of '{instance.name}'!" msgstr "" -#: instances/views.py:507 +#: instances/views.py:476 msgid "Resize Memory" msgstr "" -#: instances/views.py:524 +#: instances/views.py:506 #, python-brace-format msgid "" "User {quota_msg} quota reached, cannot resize disks of '{instance.name}'!" msgstr "" -#: instances/views.py:528 +#: instances/views.py:510 msgid "Disk resize" msgstr "" @@ -2512,259 +2555,289 @@ msgstr "" msgid "Attach new disk {name} ({format})" msgstr "" -#: instances/views.py:571 +#: instances/views.py:580 #, python-brace-format msgid "Attach Existing disk: {target_dev}" msgstr "" -#: instances/views.py:603 +#: instances/views.py:636 msgid "Volume changes are applied. But it will be activated after shutdown" msgstr "" -#: instances/views.py:606 +#: instances/views.py:638 msgid "Volume is changed successfully." msgstr "" -#: instances/views.py:607 +#: instances/views.py:639 #, python-brace-format msgid "Edit disk: {target_dev}" msgstr "" -#: instances/views.py:623 +#: instances/views.py:661 #, python-brace-format msgid "Delete disk: {dev}" msgstr "" -#: instances/views.py:628 -#, python-brace-format -msgid "The disk: {dev} is detached but not deleted. Error: {err}" -msgstr "" - -#: instances/views.py:638 +#: instances/views.py:677 #, python-brace-format msgid "Detach disk: {dev}" msgstr "" -#: instances/views.py:646 +#: instances/views.py:690 #, python-brace-format msgid "Add CD-ROM: {target}" msgstr "" -#: instances/views.py:653 +#: instances/views.py:703 #, python-brace-format msgid "Detach CD-ROM: {dev}" msgstr "" -#: instances/views.py:661 +#: instances/views.py:716 #, python-brace-format msgid "Mount media: {dev}" msgstr "" -#: instances/views.py:669 +#: instances/views.py:729 #, python-brace-format msgid "Umount media: {dev}" msgstr "" -#: instances/views.py:676 +#: instances/views.py:742 #, python-brace-format msgid "New snapshot : {name}" msgstr "" -#: instances/views.py:683 +#: instances/views.py:753 #, python-brace-format msgid "Delete snapshot : {snap_name}" msgstr "" -#: instances/views.py:690 +#: instances/views.py:764 msgid "Successful revert snapshot: " msgstr "" -#: instances/views.py:693 +#: instances/views.py:767 msgid "Revert snapshot" msgstr "" -#: instances/views.py:716 +#: instances/views.py:781 #, python-brace-format msgid "VCPU {id} is enabled={enabled}" msgstr "" -#: instances/views.py:723 +#: instances/views.py:792 #, python-brace-format msgid "VCPU Hot-plug is enabled={status}" msgstr "" -#: instances/views.py:734 +#: instances/views.py:803 msgid "Set autostart" msgstr "" -#: instances/views.py:740 +#: instances/views.py:812 msgid "Unset autostart" msgstr "" -#: instances/views.py:746 +#: instances/views.py:821 msgid "Enable boot menu" msgstr "" -#: instances/views.py:752 +#: instances/views.py:830 msgid "Disable boot menu" msgstr "" -#: instances/views.py:764 +#: instances/views.py:845 msgid "Set boot order" msgstr "" -#: instances/views.py:767 +#: instances/views.py:848 msgid "Boot menu changes applied. But it will be activated after shutdown" msgstr "" -#: instances/views.py:770 +#: instances/views.py:850 msgid "Boot order changed successfully." msgstr "" -#: instances/views.py:778 +#: instances/views.py:861 msgid "Edit XML" msgstr "" -#: instances/views.py:792 -msgid "Enter the console password or select Generate" +#: instances/views.py:875 +#, python-brace-format +msgid "Set Quest Agent {status}" msgstr "" -#: instances/views.py:796 +#: instances/views.py:885 +msgid "Set Video Model" +msgstr "" + +#: instances/views.py:894 +msgid "Change network" +msgstr "" + +#: instances/views.py:907 +msgid "Network Device Config is changed. Please shutdown instance to activate." +msgstr "" + +#: instances/views.py:915 +msgid "Add network" +msgstr "" + +#: instances/views.py:929 +msgid "Delete network" +msgstr "" + +#: instances/views.py:945 +#, python-brace-format +msgid "Set Link State: {state}" +msgstr "" + +#: instances/views.py:964 +msgid "{qos_dir.capitalize()} QoS is set" +msgstr "" + +#: instances/views.py:968 networks/views.py:216 +msgid "{qos_dir.capitalize()} QoS is set. Network XML is changed." +msgstr "" + +#: instances/views.py:969 networks/views.py:217 +msgid "Stop and start network to activate new config" +msgstr "" + +#: instances/views.py:983 networks/views.py:233 +msgid "{qos_dir.capitalize()} QoS is deleted" +msgstr "" + +#: instances/views.py:987 networks/views.py:230 +msgid "{qos_dir.capitalize()} QoS is deleted. Network XML is changed. " +msgstr "" + +#: instances/views.py:988 networks/views.py:231 +msgid "Stop and start network to activate new config." +msgstr "" + +#: instances/views.py:1004 +msgid "Only one owner is allowed and the one already added" +msgstr "" + +#: instances/views.py:1009 +#, python-format +msgid "Added owner %(user)s" +msgstr "" + +#: instances/views.py:1020 +#, python-brace-format +msgid "Deleted owner {userinstance_id}" +msgstr "" + +#: instances/views.py:1052 +msgid "User '{quota_msg}' quota reached, cannot create '{clone_data['name']}'!" +msgstr "" + +#: instances/views.py:1055 +msgid "Instance '{clone_data['name']}' already exists!" +msgstr "" + +#: instances/views.py:1058 +msgid "Instance name '{clone_data['name']}' contains invalid characters!" +msgstr "" + +#: instances/views.py:1061 +msgid "Instance MAC '{clone_data['clone-net-mac-0']}' invalid format!" +msgstr "" + +#: instances/views.py:1071 +#, python-brace-format +msgid "Clone of '{instance.name}'" +msgstr "" + +#: instances/views.py:1104 msgid "" "Error setting console password. You should check that your instance have an " "graphic device." msgstr "" -#: instances/views.py:800 +#: instances/views.py:1107 msgid "Set VNC password" msgstr "" -#: instances/views.py:811 +#: instances/views.py:1115 msgid "Set VNC keymap" msgstr "" -#: instances/views.py:817 +#: instances/views.py:1120 msgid "Set VNC type" msgstr "" -#: instances/views.py:821 -msgid "Console type not supported" -msgstr "" - -#: instances/views.py:828 +#: instances/views.py:1125 msgid "Set VNC listen address" msgstr "" -#: instances/views.py:840 -#, python-brace-format -msgid "Set Quest Agent {status}" -msgstr "" - -#: instances/views.py:847 -msgid "Set Video Model" -msgstr "" - -#: instances/views.py:872 -msgid "Change network" -msgstr "" - -#: instances/views.py:885 -msgid "Network Device Config is changed. Please shutdown instance to activate." -msgstr "" - -#: instances/views.py:890 -msgid "Add network" -msgstr "" - -#: instances/views.py:900 -msgid "Delete network" -msgstr "" - -#: instances/views.py:912 -#, python-brace-format -msgid "Set Link State: {state}" -msgstr "" - -#: instances/views.py:928 -msgid "{qos_dir.capitalize()} QoS is set" -msgstr "" - -#: instances/views.py:931 networks/views.py:216 -msgid "{qos_dir.capitalize()} QoS is set. Network XML is changed." -msgstr "" - -#: instances/views.py:932 networks/views.py:217 -msgid "Stop and start network to activate new config" -msgstr "" - -#: instances/views.py:943 networks/views.py:233 -msgid "{qos_dir.capitalize()} QoS is deleted" -msgstr "" - -#: instances/views.py:946 networks/views.py:230 -msgid "{qos_dir.capitalize()} QoS is deleted. Network XML is changed. " -msgstr "" - -#: instances/views.py:947 networks/views.py:231 -msgid "Stop and start network to activate new config." -msgstr "" - -#: instances/views.py:959 -msgid "Only one owner is allowed and the one already added" -msgstr "" - -#: instances/views.py:964 -#, python-brace-format -msgid "Added owner {user_id}" -msgstr "" - -#: instances/views.py:972 -#, python-brace-format -msgid "Deleted owner {userinstance_id}" -msgstr "" - -#: instances/views.py:1001 -msgid "User '{quota_msg}' quota reached, cannot create '{clone_data['name']}'!" -msgstr "" - -#: instances/views.py:1004 -msgid "Instance '{clone_data['name']}' already exists!" -msgstr "" - -#: instances/views.py:1007 -msgid "Instance name '{clone_data['name']}' contains invalid characters!" -msgstr "" - -#: instances/views.py:1011 -msgid "Instance MAC '{clone_data['clone-net-mac-0']}' invalid format!" -msgstr "" - -#: instances/views.py:1027 -#, python-brace-format -msgid "Clone of '{instance.name}'" -msgstr "" - -#: instances/views.py:1046 +#: instances/views.py:1148 msgid "Edit options" msgstr "" -#: instances/views.py:1103 -msgid "Deleting due to multiple(Instance Name) records." -msgstr "" - -#: instances/views.py:1111 -msgid "Deleting due to multiple(UUID) records." -msgstr "" - -#: instances/views.py:1160 -#, python-brace-format -msgid "Problem occurred with host: {comp.name} - {status}" -msgstr "" - -#: instances/views.py:1218 +#: instances/views.py:1162 msgid "Send console.vv file" msgstr "" +#: instances/views.py:1214 instances/views.py:1307 +msgid "A virtual machine with this name already exists" +msgstr "" + +#: instances/views.py:1288 +msgid "You haven't defined any storage pools" +msgstr "" + +#: instances/views.py:1291 +msgid "You haven't defined any network pools" +msgstr "" + +#: instances/views.py:1310 +msgid "There is an instance with same name. Are you sure?" +msgstr "" + +#: instances/views.py:1313 +msgid "No Virtual Machine MAC has been entered" +msgstr "" + +#: instances/views.py:1337 +msgid "Image has already exist. Please check volumes or change instance name" +msgstr "" + +#: instances/views.py:1358 +msgid "First you need to create or select an image" +msgstr "" + +#: instances/views.py:1377 +msgid "Invalid cache mode" +msgstr "" + +#: instances/views.py:1414 +msgid "Instance is created" +msgstr "" + +#: instances/views.py:1433 +msgid "Flavor Created" +msgstr "" + +#: instances/views.py:1441 +msgid "Create Flavor" +msgstr "" + +#: instances/views.py:1452 +msgid "Flavor Updated" +msgstr "" + +#: instances/views.py:1460 +msgid "Update Flavor" +msgstr "" + +#: instances/views.py:1470 +msgid "Flavor Deleted" +msgstr "" + #: interfaces/forms.py:25 msgid "The IPv4 address must not contain any special characters" msgstr "" @@ -2825,6 +2898,17 @@ msgstr "" msgid "hotplug" msgstr "" +#: interfaces/templates/create_iface_block.html:44 +#: interfaces/templates/interface.html:77 +#: interfaces/templates/interfaces.html:62 +#: storages/templates/create_stg_block.html:35 +#: storages/templates/create_stg_block.html:64 +#: storages/templates/create_stg_block.html:93 +#: storages/templates/create_stg_block.html:158 +#: storages/templates/storages.html:64 +msgid "Type" +msgstr "" + #: interfaces/templates/create_iface_block.html:47 msgid "bridge" msgstr "" @@ -2903,12 +2987,12 @@ msgstr "" #: interfaces/templates/interface.html:56 #: interfaces/templates/interface.html:79 networks/templates/network.html:48 -#: storages/templates/storage.html:58 +#: storages/templates/storage.html:57 msgid "State" msgstr "" #: interfaces/templates/interface.html:63 networks/templates/network.html:55 -#: storages/templates/storage.html:66 +#: storages/templates/storage.html:65 msgid "Stop" msgstr "" @@ -2924,6 +3008,22 @@ msgstr "" msgid "Hypervisor doesn't have any Interfaces" msgstr "" +#: logs/models.py:6 +msgid "user" +msgstr "" + +#: logs/models.py:7 +msgid "instance" +msgstr "" + +#: logs/models.py:8 +msgid "message" +msgstr "" + +#: logs/models.py:9 +msgid "date" +msgstr "" + #: networks/forms.py:7 storages/forms.py:7 msgid "No pool name has been entered" msgstr "" @@ -2936,11 +3036,11 @@ msgstr "" msgid "No IPv6 subnet has been entered" msgstr "" -#: networks/forms.py:24 storages/forms.py:25 +#: networks/forms.py:24 storages/forms.py:22 msgid "The pool name must not contain any special characters" msgstr "" -#: networks/forms.py:26 storages/forms.py:27 +#: networks/forms.py:26 storages/forms.py:24 msgid "The pool name must not exceed 20 characters" msgstr "" @@ -3109,6 +3209,17 @@ msgstr "" msgid "IPv4 Fixed Addresses" msgstr "" +#: networks/templates/network.html:161 networks/templates/network.html:271 +#: nwfilters/templates/nwfilters.html:88 +msgid "Show" +msgstr "" + +#: networks/templates/network.html:169 networks/templates/network.html:279 +#: venv/lib/python3.6/site-packages/django/forms/widgets.py:395 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:377 +msgid "Clear" +msgstr "" + #: networks/templates/network.html:192 networks/templates/network.html:301 msgid "Edit entry" msgstr "" @@ -3290,7 +3401,7 @@ msgid "Private" msgstr "" #: secrets/templates/create_secret_block.html:36 -#: storages/templates/storage.html:56 +#: storages/templates/storage.html:55 msgid "Usage" msgstr "" @@ -3315,27 +3426,27 @@ msgstr "" msgid "Value" msgstr "" -#: storages/forms.py:10 storages/forms.py:39 +#: storages/forms.py:9 storages/forms.py:36 msgid "No path has been entered" msgstr "" -#: storages/forms.py:36 +#: storages/forms.py:33 msgid "The target must not contain any special characters" msgstr "" -#: storages/forms.py:48 +#: storages/forms.py:45 msgid "No device or path has been entered" msgstr "" -#: storages/forms.py:50 +#: storages/forms.py:47 msgid "The disk source must not contain any special characters" msgstr "" -#: storages/forms.py:66 storages/forms.py:85 +#: storages/forms.py:61 storages/forms.py:76 msgid "The image name must not contain any special characters" msgstr "" -#: storages/forms.py:68 storages/forms.py:87 +#: storages/forms.py:78 msgid "The image name must not exceed 120 characters" msgstr "" @@ -3404,66 +3515,63 @@ msgstr "" msgid "Local Path" msgstr "" -#: storages/templates/create_stg_vol_block.html:14 +#: storages/templates/create_stg_vol_block.html:15 msgid "Upload ISO Image" msgstr "" -#: storages/templates/create_stg_vol_block.html:28 +#: storages/templates/create_stg_vol_block.html:29 msgid "Upload" msgstr "" -#: storages/templates/create_stg_vol_block.html:45 +#: storages/templates/create_stg_vol_block.html:46 msgid "Add New Volume" msgstr "" -#: storages/templates/create_stg_vol_block.html:60 -#: storages/templates/storage.html:144 -msgid "qcow2" -msgstr "" - -#: storages/templates/create_stg_vol_block.html:61 -#: storages/templates/storage.html:143 -msgid "qcow" -msgstr "" - -#: storages/templates/create_stg_vol_block.html:62 -#: storages/templates/storage.html:142 -msgid "raw" -msgstr "" - -#: storages/templates/storage.html:46 +#: storages/templates/storage.html:45 msgid "Pool name" msgstr "" -#: storages/templates/storage.html:48 +#: storages/templates/storage.html:47 msgid "Pool type" msgstr "" -#: storages/templates/storage.html:50 +#: storages/templates/storage.html:49 msgid "Pool path" msgstr "" -#: storages/templates/storage.html:52 +#: storages/templates/storage.html:51 msgid "Pool status" msgstr "" -#: storages/templates/storage.html:87 storages/templates/storages.html:68 +#: storages/templates/storage.html:86 storages/templates/storages.html:68 msgid "Volumes" msgstr "" -#: storages/templates/storage.html:99 +#: storages/templates/storage.html:98 msgid "Allocated" msgstr "" -#: storages/templates/storage.html:120 +#: storages/templates/storage.html:119 msgid "Clone image" msgstr "" -#: storages/templates/storage.html:133 +#: storages/templates/storage.html:132 msgid "Convert" msgstr "" -#: storages/templates/storage.html:189 +#: storages/templates/storage.html:141 +msgid "raw" +msgstr "" + +#: storages/templates/storage.html:142 +msgid "qcow" +msgstr "" + +#: storages/templates/storage.html:143 +msgid "qcow2" +msgstr "" + +#: storages/templates/storage.html:188 msgid "Hypervisor doesn't have any Volumes" msgstr "" @@ -3471,44 +3579,44 @@ msgstr "" msgid "Hypervisor doesn't have any Storages" msgstr "" -#: storages/views.py:38 +#: storages/views.py:40 msgid "Pool name already use" msgstr "" -#: storages/views.py:42 +#: storages/views.py:44 msgid "You need create secret for pool" msgstr "" -#: storages/views.py:45 +#: storages/views.py:47 msgid "You need input all fields for creating ceph pool" msgstr "" -#: storages/views.py:153 -#, python-brace-format -msgid "Image file {name} is created successfully" -msgstr "" - -#: storages/views.py:165 +#: storages/views.py:129 #, python-brace-format msgid "Volume: {volname} is deleted." msgstr "" -#: storages/views.py:171 +#: storages/views.py:134 msgid "ISO image already exist" msgstr "" -#: storages/views.py:175 +#: storages/views.py:138 msgid "ISO: {request.FILES['file']} is uploaded." msgstr "" -#: storages/views.py:184 +#: storages/views.py:147 msgid "Name of volume already in use" msgstr "" -#: storages/views.py:195 +#: storages/views.py:157 msgid "{data['image']} image cloned as {name} successfully" msgstr "" +#: storages/views.py:196 +#, python-brace-format +msgid "Image file {name} is created successfully" +msgstr "" + #: templates/403.html:3 msgid "403" msgstr "" @@ -3555,6 +3663,10 @@ msgid "" "to complete you request." msgstr "" +#: templates/common/confirm_delete.html:12 +msgid "Are you sure you want to delete" +msgstr "" + #: templates/errors_block.html:8 msgid "Error" msgstr "" @@ -3578,57 +3690,71 @@ msgid "close" msgstr "" #: venv/lib/python3.6/site-packages/django/contrib/messages/apps.py:7 +#: venv2/lib/python2.7/site-packages/django/contrib/messages/apps.py:7 msgid "Messages" msgstr "" #: venv/lib/python3.6/site-packages/django/contrib/sitemaps/apps.py:7 +#: venv2/lib/python2.7/site-packages/django/contrib/sitemaps/apps.py:7 msgid "Site Maps" msgstr "" #: venv/lib/python3.6/site-packages/django/contrib/staticfiles/apps.py:9 +#: venv2/lib/python2.7/site-packages/django/contrib/staticfiles/apps.py:7 msgid "Static Files" msgstr "" #: venv/lib/python3.6/site-packages/django/contrib/syndication/apps.py:7 +#: venv2/lib/python2.7/site-packages/django/contrib/syndication/apps.py:7 msgid "Syndication" msgstr "" #: venv/lib/python3.6/site-packages/django/core/paginator.py:45 +#: venv2/lib/python2.7/site-packages/django/core/paginator.py:43 msgid "That page number is not an integer" msgstr "" #: venv/lib/python3.6/site-packages/django/core/paginator.py:47 +#: venv2/lib/python2.7/site-packages/django/core/paginator.py:45 msgid "That page number is less than 1" msgstr "" #: venv/lib/python3.6/site-packages/django/core/paginator.py:52 +#: venv2/lib/python2.7/site-packages/django/core/paginator.py:50 msgid "That page contains no results" msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:31 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:34 msgid "Enter a valid value." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:102 #: venv/lib/python3.6/site-packages/django/forms/fields.py:658 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:107 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:671 msgid "Enter a valid URL." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:154 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:160 msgid "Enter a valid integer." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:165 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:171 msgid "Enter a valid email address." msgstr "" #. Translators: "letters" means latin letters: a-z and A-Z. #: venv/lib/python3.6/site-packages/django/core/validators.py:239 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:245 msgid "" "Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:246 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:252 msgid "" "Enter a valid 'slug' consisting of Unicode letters, numbers, underscores, or " "hyphens." @@ -3636,39 +3762,51 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:255 #: venv/lib/python3.6/site-packages/django/core/validators.py:275 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:257 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:277 msgid "Enter a valid IPv4 address." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:260 #: venv/lib/python3.6/site-packages/django/core/validators.py:276 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:262 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:278 msgid "Enter a valid IPv6 address." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:270 #: venv/lib/python3.6/site-packages/django/core/validators.py:274 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:272 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:276 msgid "Enter a valid IPv4 or IPv6 address." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:304 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:308 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1131 msgid "Enter only digits separated by commas." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:310 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:314 #, python-format msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:342 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:345 #, python-format msgid "Ensure this value is less than or equal to %(limit_value)s." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:351 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:354 #, python-format msgid "Ensure this value is greater than or equal to %(limit_value)s." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:361 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:364 #, python-format msgid "" "Ensure this value has at least %(limit_value)d character (it has " @@ -3680,6 +3818,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:376 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:379 #, python-format msgid "" "Ensure this value has at most %(limit_value)d character (it has " @@ -3693,10 +3832,13 @@ msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:395 #: venv/lib/python3.6/site-packages/django/forms/fields.py:290 #: venv/lib/python3.6/site-packages/django/forms/fields.py:325 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:303 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:340 msgid "Enter a number." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:397 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:399 #, python-format msgid "Ensure that there are no more than %(max)s digit in total." msgid_plural "Ensure that there are no more than %(max)s digits in total." @@ -3704,6 +3846,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:402 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:404 #, python-format msgid "Ensure that there are no more than %(max)s decimal place." msgid_plural "Ensure that there are no more than %(max)s decimal places." @@ -3711,6 +3854,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:407 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:409 #, python-format msgid "" "Ensure that there are no more than %(max)s digit before the decimal point." @@ -3720,6 +3864,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:469 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:463 #, python-format msgid "" "File extension '%(extension)s' is not allowed. Allowed extensions are: " @@ -3732,28 +3877,35 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/base.py:1162 #: venv/lib/python3.6/site-packages/django/forms/models.py:756 +#: venv2/lib/python2.7/site-packages/django/db/models/base.py:1209 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:749 msgid "and" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/base.py:1164 +#: venv2/lib/python2.7/site-packages/django/db/models/base.py:1211 #, python-format msgid "%(model_name)s with this %(field_labels)s already exists." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:104 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:116 #, python-format msgid "Value %(value)r is not a valid choice." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:105 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:117 msgid "This field cannot be null." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:106 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:118 msgid "This field cannot be blank." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:107 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:119 #, python-format msgid "%(model_name)s with this %(field_label)s already exists." msgstr "" @@ -3761,33 +3913,42 @@ msgstr "" #. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. #. Eg: "Title must be unique for pub_date year" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:111 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:123 #, python-format msgid "" "%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:128 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:140 #, python-format msgid "Field of type: %(field_type)s" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:905 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1772 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:901 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1809 msgid "Integer" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:909 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1770 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:905 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1807 #, python-format msgid "'%(value)s' value must be an integer." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:984 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1850 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:978 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1878 msgid "Big (8 byte) integer" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:996 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:990 #, python-format msgid "'%(value)s' value must be either True or False." msgstr "" @@ -3798,19 +3959,23 @@ msgid "'%(value)s' value must be either True, False, or None." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:999 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:992 msgid "Boolean (Either True or False)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1040 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1058 #, python-format msgid "String (up to %(max_length)s)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1104 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1115 msgid "Comma-separated integers" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1153 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1172 #, python-format msgid "" "'%(value)s' value has an invalid date format. It must be in YYYY-MM-DD " @@ -3819,6 +3984,8 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1155 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1298 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1174 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1319 #, python-format msgid "" "'%(value)s' value has the correct format (YYYY-MM-DD) but it is an invalid " @@ -3826,10 +3993,12 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1158 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1177 msgid "Date (without time)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1296 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1317 #, python-format msgid "" "'%(value)s' value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." @@ -3837,6 +4006,7 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1300 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1321 #, python-format msgid "" "'%(value)s' value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" @@ -3844,19 +4014,23 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1304 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1325 msgid "Date (with time)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1452 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1475 #, python-format msgid "'%(value)s' value must be a decimal number." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1454 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1477 msgid "Decimal number" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1593 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1628 #, python-format msgid "" "'%(value)s' value has an invalid format. It must be in [DD] [HH:[MM:]]ss[." @@ -3864,66 +4038,81 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1596 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1631 msgid "Duration" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1646 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1683 msgid "Email address" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1669 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1707 msgid "File path" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1735 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1773 #, python-format msgid "'%(value)s' value must be a float." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1737 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1775 msgid "Floating point number" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1866 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1893 msgid "IPv4 address" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1897 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1924 msgid "IP address" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1977 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1978 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2006 #, python-format msgid "'%(value)s' value must be either None, True or False." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1980 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2008 msgid "Boolean (Either True, False or None)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2015 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2071 msgid "Positive integer" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2028 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2083 msgid "Positive small integer" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2042 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2096 #, python-format msgid "Slug (up to %(max_length)s)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2074 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2130 msgid "Small integer" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2081 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2137 msgid "Text" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2109 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2163 #, python-format msgid "" "'%(value)s' value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " @@ -3931,6 +4120,7 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2111 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2165 #, python-format msgid "" "'%(value)s' value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " @@ -3938,18 +4128,22 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2114 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2168 msgid "Time" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2240 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2296 msgid "URL" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2262 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2319 msgid "Raw binary data" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2312 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2366 #, python-format msgid "'%(value)s' is not a valid UUID." msgstr "" @@ -3959,65 +4153,81 @@ msgid "Universally unique identifier" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/files.py:221 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/files.py:228 msgid "File" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:778 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:788 #, python-format msgid "%(model)s instance with %(field)s %(value)r does not exist." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:780 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:790 msgid "Foreign Key (type determined by related field)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:1007 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:1029 msgid "One-to-one relationship" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:1057 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:1104 #, python-format msgid "%(from)s-%(to)s relationship" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:1058 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:1105 #, python-format msgid "%(from)s-%(to)s relationships" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:1100 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:1147 msgid "Many-to-many relationship" msgstr "" #. Translators: If found as last label character, these punctuation #. characters will prevent the default label_suffix to be appended to the label #: venv/lib/python3.6/site-packages/django/forms/boundfield.py:146 +#: venv2/lib/python2.7/site-packages/django/forms/boundfield.py:181 msgid ":?.!" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:53 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:56 msgid "This field is required." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:245 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:258 msgid "Enter a whole number." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:396 #: venv/lib/python3.6/site-packages/django/forms/fields.py:1126 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:418 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:1149 msgid "Enter a valid date." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:420 #: venv/lib/python3.6/site-packages/django/forms/fields.py:1127 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:442 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:1150 msgid "Enter a valid time." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:442 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:464 msgid "Enter a valid date/time." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:471 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:493 msgid "Enter a valid duration." msgstr "" @@ -4027,18 +4237,22 @@ msgid "The number of days must be between {min_days} and {max_days}." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:532 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:547 msgid "No file was submitted. Check the encoding type on the form." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:533 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:548 msgid "No file was submitted." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:534 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:549 msgid "The submitted file is empty." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:536 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:551 #, python-format msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." msgid_plural "" @@ -4047,10 +4261,12 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:539 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:554 msgid "Please either submit a file or check the clear checkbox, not both." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:600 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:619 msgid "" "Upload a valid image. The file you uploaded was either not an image or a " "corrupted image." @@ -4059,6 +4275,9 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:762 #: venv/lib/python3.6/site-packages/django/forms/fields.py:852 #: venv/lib/python3.6/site-packages/django/forms/models.py:1270 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:776 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:872 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1265 #, python-format msgid "Select a valid choice. %(value)s is not one of the available choices." msgstr "" @@ -4066,32 +4285,41 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:853 #: venv/lib/python3.6/site-packages/django/forms/fields.py:968 #: venv/lib/python3.6/site-packages/django/forms/models.py:1269 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:873 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:990 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1264 msgid "Enter a list of values." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:969 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:991 msgid "Enter a complete value." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:1185 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:1208 msgid "Enter a valid UUID." msgstr "" #. Translators: This is the default suffix added to form field labels #: venv/lib/python3.6/site-packages/django/forms/forms.py:86 +#: venv2/lib/python2.7/site-packages/django/forms/forms.py:87 msgid ":" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/forms.py:212 +#: venv2/lib/python2.7/site-packages/django/forms/forms.py:213 #, python-format msgid "(Hidden field %(name)s) %(error)s" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/formsets.py:91 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:97 msgid "ManagementForm data is missing or has been tampered with" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/formsets.py:338 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:355 #, python-format msgid "Please submit %d or fewer forms." msgid_plural "Please submit %d or fewer forms." @@ -4099,6 +4327,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/forms/formsets.py:345 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:362 #, python-format msgid "Please submit %d or more forms." msgid_plural "Please submit %d or more forms." @@ -4107,20 +4336,25 @@ msgstr[1] "" #: venv/lib/python3.6/site-packages/django/forms/formsets.py:371 #: venv/lib/python3.6/site-packages/django/forms/formsets.py:373 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:390 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:392 msgid "Order" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:751 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:744 #, python-format msgid "Please correct the duplicate data for %(field)s." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:755 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:748 #, python-format msgid "Please correct the duplicate data for %(field)s, which must be unique." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:761 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:754 #, python-format msgid "" "Please correct the duplicate data for %(field_name)s which must be unique " @@ -4128,6 +4362,7 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:770 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:763 msgid "Please correct the duplicate values below." msgstr "" @@ -4136,6 +4371,7 @@ msgid "The inline value did not match the parent instance." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:1158 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1154 msgid "Select a valid choice. That choice is not one of the available choices." msgstr "" @@ -4145,6 +4381,7 @@ msgid "\"%(pk)s\" is not a valid value." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/utils.py:162 +#: venv2/lib/python2.7/site-packages/django/forms/utils.py:172 #, python-format msgid "" "%(datetime)s couldn't be interpreted in time zone %(current_timezone)s; it " @@ -4152,23 +4389,29 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/widgets.py:396 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:378 msgid "Currently" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/widgets.py:710 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:704 msgid "Yes" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/widgets.py:711 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:705 msgid "No" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:788 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:851 msgid "yes,no,maybe" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:817 #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:834 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:880 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:897 #, python-format msgid "%(size)d byte" msgid_plural "%(size)d bytes" @@ -4176,327 +4419,401 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:836 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:899 #, python-format msgid "%s KB" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:838 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:901 #, python-format msgid "%s MB" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:840 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:903 #, python-format msgid "%s GB" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:842 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:905 #, python-format msgid "%s TB" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:844 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:907 #, python-format msgid "%s PB" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:62 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:66 msgid "p.m." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:63 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:67 msgid "a.m." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:68 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:72 msgid "PM" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:69 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:73 msgid "AM" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:150 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:158 msgid "midnight" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:152 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:160 msgid "noon" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Monday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Tuesday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Wednesday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Thursday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Friday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:7 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:7 msgid "Saturday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:7 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:7 msgid "Sunday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Mon" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Tue" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Wed" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Thu" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Fri" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:11 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:11 msgid "Sat" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:11 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:11 msgid "Sun" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "January" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "February" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "March" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "April" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "May" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "June" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "July" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "August" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "September" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "October" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "November" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:16 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:20 msgid "December" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "jan" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "feb" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "mar" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "apr" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "may" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "jun" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "jul" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "aug" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "sep" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "oct" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "nov" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "dec" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:23 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:31 msgctxt "abbrev. month" msgid "Jan." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:24 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:32 msgctxt "abbrev. month" msgid "Feb." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:25 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:33 msgctxt "abbrev. month" msgid "March" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:26 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:34 msgctxt "abbrev. month" msgid "April" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:27 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:35 msgctxt "abbrev. month" msgid "May" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:28 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:36 msgctxt "abbrev. month" msgid "June" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:29 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:37 msgctxt "abbrev. month" msgid "July" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:30 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:38 msgctxt "abbrev. month" msgid "Aug." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:31 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:39 msgctxt "abbrev. month" msgid "Sept." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:32 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:40 msgctxt "abbrev. month" msgid "Oct." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:33 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:41 msgctxt "abbrev. month" msgid "Nov." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:34 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:42 msgctxt "abbrev. month" msgid "Dec." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:37 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:45 msgctxt "alt. month" msgid "January" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:38 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:46 msgctxt "alt. month" msgid "February" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:39 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:47 msgctxt "alt. month" msgid "March" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:40 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:48 msgctxt "alt. month" msgid "April" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:41 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:49 msgctxt "alt. month" msgid "May" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:42 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:50 msgctxt "alt. month" msgid "June" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:43 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:51 msgctxt "alt. month" msgid "July" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:44 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:52 msgctxt "alt. month" msgid "August" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:45 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:53 msgctxt "alt. month" msgid "September" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:46 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:54 msgctxt "alt. month" msgid "October" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:47 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:55 msgctxt "alt. month" msgid "November" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:48 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:56 msgctxt "alt. month" msgid "December" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/ipv6.py:8 +#: venv2/lib/python2.7/site-packages/django/utils/ipv6.py:12 msgid "This is not a valid IPv6 address." msgstr "" @@ -4507,16 +4824,20 @@ msgid "%(truncated_text)s…" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/text.py:233 +#: venv2/lib/python2.7/site-packages/django/utils/text.py:251 msgid "or" msgstr "" #. Translators: This string is used as a separator between list elements #: venv/lib/python3.6/site-packages/django/utils/text.py:252 #: venv/lib/python3.6/site-packages/django/utils/timesince.py:83 +#: venv2/lib/python2.7/site-packages/django/utils/text.py:270 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:71 msgid ", " msgstr "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:9 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:11 #, python-format msgid "%d year" msgid_plural "%d years" @@ -4524,6 +4845,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:12 #, python-format msgid "%d month" msgid_plural "%d months" @@ -4531,6 +4853,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:11 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:13 #, python-format msgid "%d week" msgid_plural "%d weeks" @@ -4538,6 +4861,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:12 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:14 #, python-format msgid "%d day" msgid_plural "%d days" @@ -4545,6 +4869,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:13 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:15 #, python-format msgid "%d hour" msgid_plural "%d hours" @@ -4552,6 +4877,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:16 #, python-format msgid "%d minute" msgid_plural "%d minutes" @@ -4559,18 +4885,22 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:72 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:60 msgid "0 minutes" msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:110 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:109 msgid "Forbidden" msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:111 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:110 msgid "CSRF verification failed. Request aborted." msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:115 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:114 msgid "" "You are seeing this message because this HTTPS site requires a 'Referer " "header' to be sent by your Web browser, but none was sent. This header is " @@ -4579,6 +4909,7 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:120 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:119 msgid "" "If you have configured your browser to disable 'Referer' headers, please re-" "enable them, at least for this site, or for HTTPS connections, or for 'same-" @@ -4595,6 +4926,7 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:132 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:124 msgid "" "You are seeing this message because this site requires a CSRF cookie when " "submitting forms. This cookie is required for security reasons, to ensure " @@ -4602,44 +4934,56 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:137 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:129 msgid "" "If you have configured your browser to disable cookies, please re-enable " "them, at least for this site, or for 'same-origin' requests." msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:142 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:134 msgid "More information is available with DEBUG=True." msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:41 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:48 msgid "No year specified" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:61 #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:111 #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:208 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:72 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:132 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:249 msgid "Date out of range" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:90 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:107 msgid "No month specified" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:142 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:169 msgid "No day specified" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:188 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:225 msgid "No week specified" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:338 #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:367 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:387 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:415 #, python-format msgid "No %(verbose_name_plural)s available" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:589 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:669 #, python-format msgid "" "Future %(verbose_name_plural)s not available because %(class_name)s." @@ -4647,39 +4991,47 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:623 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:703 #, python-format msgid "Invalid date string '%(datestr)s' given format '%(format)s'" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/detail.py:54 +#: venv2/lib/python2.7/site-packages/django/views/generic/detail.py:55 #, python-format msgid "No %(verbose_name)s found matching the query" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/list.py:67 +#: venv2/lib/python2.7/site-packages/django/views/generic/list.py:77 msgid "Page is not 'last', nor can it be converted to an int." msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/list.py:72 +#: venv2/lib/python2.7/site-packages/django/views/generic/list.py:82 #, python-format msgid "Invalid page (%(page_number)s): %(message)s" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/list.py:154 +#: venv2/lib/python2.7/site-packages/django/views/generic/list.py:172 #, python-format msgid "Empty list and '%(class_name)s.allow_empty' is False." msgstr "" #: venv/lib/python3.6/site-packages/django/views/static.py:40 +#: venv2/lib/python2.7/site-packages/django/views/static.py:44 msgid "Directory indexes are not allowed here." msgstr "" #: venv/lib/python3.6/site-packages/django/views/static.py:42 +#: venv2/lib/python2.7/site-packages/django/views/static.py:46 #, python-format msgid "\"%(path)s\" does not exist" msgstr "" #: venv/lib/python3.6/site-packages/django/views/static.py:80 +#: venv2/lib/python2.7/site-packages/django/views/static.py:86 #, python-format msgid "Index of %(directory)s" msgstr "" @@ -4731,3 +5083,271 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/views/templates/default_urlconf.html:408 msgid "Connect, get help, or contribute" msgstr "" + +#: venv/lib/python3.6/site-packages/django_icons/renderers/image.py:217 +msgid "Icon of {}" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:58 +msgid "Please enter your OTP token." +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:59 +#, python-brace-format +msgid "Error generating challenge: {0}" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:60 +msgid "The selected OTP device is not interactive" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:61 +#, python-brace-format +msgid "OTP Challenge: {0}" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:62 +msgid "Invalid token. Please make sure you have entered it correctly." +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:64 +#, python-format +msgid "" +"Verification temporarily disabled because of %(failure_count)d failed " +"attempt, please try again soon." +msgid_plural "" +"Verification temporarily disabled because of %(failure_count)d failed " +"attempts, please try again soon." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:67 +msgid "Verification of the token is currently disabled" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:36 +msgid "Please correct the error below." +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:36 +msgid "Please correct the errors below." +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:52 +#, python-format +msgid "" +"You are authenticated as %(username)s, but are not authorized to access this " +"page. Would you like to login to a different account?" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:72 +msgid "OTP Device:" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:77 +msgid "OTP Token:" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:82 +msgid "Forgotten your password or username?" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:86 +msgid "Log in" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:88 +msgid "Get OTP Challenge" +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1093 +msgid "The inline foreign key did not match the parent instance primary key." +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1267 +#, python-format +msgid "\"%(pk)s\" is not a valid value for a primary key." +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/utils/text.py:81 +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s..." +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:520 +msgid "Welcome to Django" +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:521 +msgid "It worked!" +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:522 +msgid "Congratulations on your first Django-powered page." +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:524 +msgid "" +"Next, start your first app by running python manage.py startapp " +"[app_label]." +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:527 +msgid "" +"You're seeing this message because you have DEBUG = True in " +"your Django settings file and you haven't configured any URLs. Get to work!" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:313 +msgid "usage: " +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:821 +msgid ".__call__() not defined" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1105 +#, python-format +msgid "unknown parser %r (choices: %s)" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1146 +#, python-format +msgid "argument \"-\" with mode %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1349 +#, python-format +msgid "cannot merge actions - two groups are named %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1387 +msgid "'required' is an invalid argument for positionals" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1407 +#, python-format +msgid "invalid option string %r: must start with a character %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1428 +#, python-format +msgid "dest= is required for options like %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1445 +#, python-format +msgid "invalid conflict_resolution value: %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1463 +#, python-format +msgid "conflicting option string(s): %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1526 +msgid "mutually exclusive arguments must be optional" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1596 +msgid "positional arguments" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1597 +msgid "optional arguments" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1615 +msgid "show this help message and exit" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1621 +msgid "show program's version number and exit" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1653 +msgid "cannot have multiple subparser arguments" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1705 +#, python-format +msgid "unrecognized arguments: %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1802 +#, python-format +msgid "not allowed with argument %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1848 +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1862 +#, python-format +msgid "ignored explicit argument %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1952 +msgid "too few arguments" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1959 +#, python-format +msgid "argument %s is required" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1973 +#, python-format +msgid "one of the arguments %s is required" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2019 +msgid "expected one argument" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2020 +msgid "expected at most one argument" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2021 +msgid "expected at least one argument" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2023 +#, python-format +msgid "expected %s argument(s)" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2080 +#, python-format +msgid "ambiguous option: %s could match %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2142 +#, python-format +msgid "unexpected option string: %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2243 +#, python-format +msgid "%r is not callable" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2259 +#, python-format +msgid "invalid %s value: %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2269 +#, python-format +msgid "invalid choice: %r (choose from %s)" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2362 +#, python-format +msgid "%s: error: %s\n" +msgstr "" + +#: webvirtcloud/middleware.py:21 +#, python-format +msgid "libvirt Error - %(exception)s" +msgstr "" diff --git a/locale/ru/LC_MESSAGES/django.po b/locale/ru/LC_MESSAGES/django.po index 63bfcba..d544ced 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-12 09:02+0000\n" +"POT-Creation-Date: 2020-07-20 09:29+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -20,253 +20,181 @@ msgstr "" "%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" "%100>=11 && n%100<=14)? 2 : 3);\n" -#: accounts/forms.py:10 -msgid "No username has been entered" +#: accounts/forms.py:24 +msgid "Instance owned by another user" msgstr "" -#: accounts/forms.py:13 -msgid "No password has been entered" -msgstr "" - -#: accounts/forms.py:19 create/forms.py:23 -msgid "The flavor name must not contain any special characters" -msgstr "" - -#: accounts/forms.py:21 create/forms.py:25 -msgid "The flavor name must not exceed 20 characters" -msgstr "" - -#: accounts/forms.py:26 create/forms.py:30 -msgid "Flavor name is already use" -msgstr "" - -#: accounts/models.py:22 -msgid "key name" -msgstr "" - -#: accounts/models.py:23 -msgid "public key" +#: accounts/models.py:24 +#, python-format +msgid "Instance \"%(inst)s\" of user %(user)s" msgstr "" #: accounts/models.py:32 +msgid "key name" +msgstr "" + +#: accounts/models.py:33 +msgid "public key" +msgstr "" + +#: accounts/models.py:42 msgid "max instances" msgstr "" -#: accounts/models.py:34 accounts/models.py:41 accounts/models.py:47 -#: accounts/models.py:53 +#: accounts/models.py:44 accounts/models.py:51 accounts/models.py:57 +#: accounts/models.py:63 msgid "-1 for unlimited. Any integer value" msgstr "" -#: accounts/models.py:39 +#: accounts/models.py:49 msgid "max CPUs" msgstr "" -#: accounts/models.py:45 +#: accounts/models.py:55 msgid "max memory" msgstr "" -#: accounts/models.py:51 +#: accounts/models.py:61 msgid "max disk size" msgstr "" -#: accounts/models.py:89 +#: accounts/models.py:77 msgid "Can change password" msgstr "" -#: accounts/templates/account.html:3 admin/templates/admin/common/form.html:6 -#: admin/templates/admin/logs.html:32 admin/templates/admin/user_form.html:6 -#: instances/templates/add_instance_owner_block.html:18 -#: instances/templates/allinstances_index_grouped.html:7 -#: instances/templates/allinstances_index_nongrouped.html:6 -#: instances/templates/instance.html:1644 instances/templates/instances.html:71 -msgid "User" +#: accounts/templates/account.html:4 accounts/templates/account.html:12 +msgid "User Profile" msgstr "" -#: accounts/templates/account.html:23 accounts/templates/profile.html:98 -msgid "Key name" +#: accounts/templates/account.html:21 +#: computes/templates/computes/instances.html:5 +#: computes/templates/computes/instances.html:32 +#: computes/templates/overview.html:16 instances/templates/allinstances.html:5 +#: instances/templates/allinstances.html:9 +#: instances/templates/bottom_bar.html:17 +#: interfaces/templates/interface.html:14 +#: interfaces/templates/interfaces.html:17 networks/templates/network.html:16 +#: networks/templates/networks.html:20 nwfilters/templates/nwfilter.html:15 +#: nwfilters/templates/nwfilters.html:24 secrets/templates/secrets.html:20 +#: storages/templates/storage.html:20 storages/templates/storages.html:20 +#: templates/navbar.html:14 +msgid "Instances" msgstr "" -#: accounts/templates/account.html:24 accounts/templates/profile.html:104 -msgid "Public key" +#: accounts/templates/account.html:24 +msgid "Public Keys" msgstr "" -#: accounts/templates/account.html:47 accounts/templates/accounts-list.html:25 -#: accounts/templates/accounts.html:21 admin/templates/admin/group_list.html:24 -#: admin/templates/admin/logs.html:21 admin/templates/admin/user_list.html:25 -#: computes/templates/computes.html:241 -#: create/templates/create_instance_w2.html:70 -#: instances/templates/allinstances.html:33 -#: instances/templates/allinstances.html:49 -#: instances/templates/instances.html:61 -#: interfaces/templates/interfaces.html:47 networks/templates/networks.html:50 -#: nwfilters/templates/nwfilters.html:138 secrets/templates/secrets.html:50 -#: storages/templates/storage.html:189 storages/templates/storages.html:50 -msgid "Warning" -msgstr "" - -#: accounts/templates/account.html:47 -msgid "User doesn't have any Instance" -msgstr "" - -#: accounts/templates/account.html:56 -#: accounts/templates/create_user_inst_block.html:18 -#: admin/templates/admin/logs.html:33 instances/templates/instance.html:4 +#: accounts/templates/account.html:34 admin/templates/admin/logs.html:34 +#: instances/templates/instance.html:4 msgid "Instance" msgstr "" -#: accounts/templates/account.html:57 accounts/templates/account.html:88 +#: accounts/templates/account.html:35 msgid "VNC" msgstr "" -#: accounts/templates/account.html:58 accounts/templates/account.html:97 -#: instances/templates/instance.html:88 instances/templates/instance.html:412 -#: instances/templates/instance.html:414 instances/templates/instance.html:441 -#: instances/templates/instance.html:476 instances/templates/instance.html:480 -#: instances/templates/instance.html:497 instances/templates/instance.html:499 -#: instances/templates/instance.html:504 +#: accounts/templates/account.html:36 instances/templates/instance.html:87 +#: instances/templates/instances/resize_tab.html:56 +#: instances/templates/instances/resize_tab.html:58 +#: instances/templates/instances/resize_tab.html:85 +#: instances/templates/instances/resize_tab.html:121 +#: instances/templates/instances/resize_tab.html:125 +#: instances/templates/instances/resize_tab.html:151 +#: instances/templates/instances/resize_tab.html:153 +#: instances/templates/instances/resize_tab.html:158 msgid "Resize" msgstr "" -#: accounts/templates/account.html:59 accounts/templates/account.html:106 -#: accounts/templates/account.html:127 +#: accounts/templates/account.html:37 accounts/templates/account.html:55 #: accounts/templates/accounts-list.html:133 -#: accounts/templates/accounts.html:126 accounts/templates/profile.html:84 -#: admin/templates/admin/common/confirm_delete.html:6 -#: admin/templates/admin/common/confirm_delete.html:16 +#: accounts/templates/accounts.html:126 accounts/templates/profile.html:60 #: admin/templates/admin/common/list.html:22 #: admin/templates/admin/group_list.html:47 -#: admin/templates/admin/user_list.html:67 computes/templates/computes.html:98 -#: computes/templates/computes.html:142 computes/templates/computes.html:190 -#: computes/templates/computes.html:220 instances/templates/instance.html:873 -#: instances/templates/instance.html:880 interfaces/templates/interface.html:61 -#: networks/templates/network.html:53 nwfilters/templates/nwfilter.html:114 -#: nwfilters/templates/nwfilter.html:154 nwfilters/templates/nwfilters.html:123 -#: secrets/templates/secrets.html:77 storages/templates/storage.html:63 -#: storages/templates/storage.html:176 +#: admin/templates/admin/user_list.html:67 +#: computes/templates/computes/list.html:55 +#: instances/templates/instances/settings_tab.html:310 +#: instances/templates/instances/settings_tab.html:314 +#: interfaces/templates/interface.html:61 networks/templates/network.html:53 +#: nwfilters/templates/nwfilter.html:114 nwfilters/templates/nwfilter.html:154 +#: nwfilters/templates/nwfilters.html:123 secrets/templates/secrets.html:77 +#: storages/templates/storage.html:62 storages/templates/storage.html:175 +#: templates/common/confirm_delete.html:6 +#: templates/common/confirm_delete.html:16 #: venv/lib/python3.6/site-packages/django/forms/formsets.py:375 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:394 msgid "Delete" msgstr "" -#: accounts/templates/account.html:60 -#: create/templates/create_instance_w2.html:85 -#: instances/templates/instance.html:556 instances/templates/instance.html:831 +#: accounts/templates/account.html:38 +#: instances/templates/create_instance_w2.html:86 +#: instances/templates/instances/settings_tab.html:239 +#: instances/templates/instances/snapshots_tab.html:49 #: nwfilters/templates/nwfilter.html:104 nwfilters/templates/nwfilter.html:138 #: nwfilters/templates/nwfilters.html:60 secrets/templates/secrets.html:62 -#: storages/templates/storage.html:102 +#: storages/templates/storage.html:101 msgid "Action" msgstr "" -#: accounts/templates/account.html:81 -msgid "Edit privilegies for" +#: accounts/templates/account.html:50 +msgid "edit" msgstr "" -#: accounts/templates/account.html:91 accounts/templates/account.html:100 -#: accounts/templates/account.html:109 -msgid "False" +#: accounts/templates/account.html:68 accounts/templates/profile.html:74 +msgid "Key name" msgstr "" -#: accounts/templates/account.html:116 -#: accounts/templates/accounts-list.html:145 -#: accounts/templates/accounts.html:138 -#: accounts/templates/create_user_block.html:31 -#: accounts/templates/create_user_inst_block.html:29 -#: computes/templates/computes.html:101 computes/templates/computes.html:145 -#: computes/templates/computes.html:193 computes/templates/computes.html:223 -#: create/templates/create_flav_block.html:51 -#: create/templates/create_instance_w2.html:273 -#: instances/templates/add_instance_network_block.html:49 -#: instances/templates/add_instance_owner_block.html:29 -#: instances/templates/add_instance_volume.html:89 -#: instances/templates/add_instance_volume.html:144 -#: instances/templates/create_inst_block.html:34 -#: instances/templates/edit_instance_volume.html:123 -#: instances/templates/instance.html:993 -#: interfaces/templates/create_iface_block.html:135 -#: networks/templates/add_network_qos.html:50 -#: networks/templates/create_net_block.html:84 -#: networks/templates/modify_ipv4_fixed_address.html:44 -#: networks/templates/modify_ipv6_fixed_address.html:44 -#: nwfilters/templates/add_nwf_rule.html:25 -#: nwfilters/templates/create_nwfilter_block.html:23 -#: nwfilters/templates/nwfilters.html:83 nwfilters/templates/nwfilters.html:111 -#: secrets/templates/create_secret_block.html:54 -#: secrets/templates/secrets.html:102 -#: storages/templates/create_stg_block.html:55 -#: storages/templates/create_stg_block.html:84 -#: storages/templates/create_stg_block.html:140 -#: storages/templates/create_stg_block.html:202 -#: storages/templates/create_stg_block.html:230 -#: storages/templates/create_stg_vol_block.html:27 -#: storages/templates/create_stg_vol_block.html:81 -#: storages/templates/storage.html:156 -msgid "Close" -msgstr "" - -#: accounts/templates/account.html:117 accounts/templates/accounts-list.html:45 -#: accounts/templates/accounts-list.html:148 -#: accounts/templates/accounts.html:36 accounts/templates/accounts.html:141 -#: admin/templates/admin/common/list.html:16 -#: admin/templates/admin/group_list.html:44 -#: admin/templates/admin/user_list.html:61 computes/templates/computes.html:33 -#: networks/templates/network.html:85 nwfilters/templates/nwfilter.html:62 -#: secrets/templates/secrets.html:74 -msgid "Edit" -msgstr "" - -#: accounts/templates/account.html:127 accounts/templates/profile.html:84 -#: create/templates/create_instance_w2.html:291 -#: instances/templates/instance.html:581 instances/templates/instance.html:1004 -#: instances/templates/instance.html:1074 -#: instances/templates/instance.html:1079 -#: interfaces/templates/interface.html:61 -#: interfaces/templates/interface.html:63 networks/templates/network.html:53 -#: networks/templates/network.html:55 networks/templates/network.html:65 -#: networks/templates/network.html:139 networks/templates/network.html:192 -#: networks/templates/network.html:197 networks/templates/network.html:252 -#: networks/templates/network.html:301 networks/templates/network.html:306 -#: networks/templates/network.html:356 networks/templates/network.html:361 -#: nwfilters/templates/nwfilter.html:114 nwfilters/templates/nwfilter.html:154 -#: nwfilters/templates/nwfilters.html:123 secrets/templates/secrets.html:77 -#: storages/templates/storage.html:64 storages/templates/storage.html:67 -#: storages/templates/storage.html:79 storages/templates/storage.html:176 -msgid "Are you sure?" +#: accounts/templates/account.html:69 accounts/templates/profile.html:80 +msgid "Public key" msgstr "" #: accounts/templates/accounts-list.html:4 #: accounts/templates/accounts-list.html:13 accounts/templates/accounts.html:3 #: accounts/templates/accounts.html:9 admin/templates/admin/group_list.html:5 #: admin/templates/admin/user_list.html:6 -#: admin/templates/admin/user_list.html:16 admin/views.py:83 -#: instances/templates/instance.html:657 templates/navbar.html:29 +#: admin/templates/admin/user_list.html:16 admin/views.py:84 +#: instances/templates/instances/settings_tab.html:63 templates/navbar.html:29 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 +#: computes/templates/computes/instances.html:18 +#: instances/templates/allinstances.html:16 +#: nwfilters/templates/nwfilters.html:11 storages/templates/storage.html:88 +#: templates/search_block.html:3 msgid "Search" msgstr "" +#: accounts/templates/accounts-list.html:25 accounts/templates/accounts.html:21 +#: admin/templates/admin/group_list.html:24 admin/templates/admin/logs.html:22 +#: admin/templates/admin/user_list.html:25 +#: computes/templates/computes/instances.html:57 +#: computes/templates/computes/list.html:21 +#: instances/templates/create_instance_w2.html:71 +#: interfaces/templates/interfaces.html:47 networks/templates/networks.html:50 +#: nwfilters/templates/nwfilters.html:138 secrets/templates/secrets.html:50 +#: storages/templates/storage.html:188 storages/templates/storages.html:50 +msgid "Warning" +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" msgstr "" -#: accounts/templates/accounts-list.html:33 accounts/templates/profile.html:27 -#: admin/templates/admin/user_list.html:33 computes/templates/computes.html:79 -#: computes/templates/computes.html:127 computes/templates/computes.html:170 +#: accounts/templates/accounts-list.html:33 accounts/templates/profile.html:31 +#: admin/templates/admin/user_list.html:33 msgid "Username" msgstr "" #: accounts/templates/accounts-list.html:34 accounts/templates/accounts.html:44 -#: admin/templates/admin/user_list.html:34 computes/templates/computes.html:40 -#: instances/templates/allinstances.html:57 -#: instances/templates/allinstances_index_grouped.html:8 -#: instances/templates/allinstances_index_nongrouped.html:7 -#: instances/templates/instances.html:72 +#: admin/templates/admin/user_list.html:34 +#: computes/templates/computes/instances.html:68 +#: computes/templates/computes/list.html:30 +#: instances/templates/allinstances_index_grouped.html:9 +#: instances/templates/allinstances_index_nongrouped.html:9 msgid "Status" msgstr "" @@ -281,22 +209,33 @@ msgid "Superuser" msgstr "" #: accounts/templates/accounts-list.html:37 -#: instances/templates/instance.html:631 instances/templates/instance.html:1444 -#: instances/templates/instance.html:1446 -#: instances/templates/instance_actions.html:7 +#: instances/templates/instance_actions.html:6 +#: instances/templates/instances/settings_tab.html:37 +#: instances/templates/instances/settings_tab.html:783 +#: instances/templates/instances/settings_tab.html:785 #: nwfilters/templates/nwfilters.html:112 -#: nwfilters/templates/nwfilters.html:118 storages/templates/storage.html:157 -#: storages/templates/storage.html:164 +#: nwfilters/templates/nwfilters.html:118 storages/templates/storage.html:156 +#: storages/templates/storage.html:163 msgid "Clone" msgstr "" +#: accounts/templates/accounts-list.html:45 +#: accounts/templates/accounts-list.html:148 +#: accounts/templates/accounts.html:36 accounts/templates/accounts.html:141 +#: admin/templates/admin/common/list.html:16 +#: admin/templates/admin/group_list.html:44 +#: admin/templates/admin/user_list.html:61 +#: computes/templates/computes/list.html:54 networks/templates/network.html:85 +#: nwfilters/templates/nwfilter.html:62 secrets/templates/secrets.html:74 +msgid "Edit" +msgstr "" + #: accounts/templates/accounts-list.html:51 accounts/templates/accounts.html:48 #: admin/templates/admin/user_list.html:50 -#: instances/templates/allinstances.html:68 -#: instances/templates/allinstances_index_grouped.html:26 -#: instances/templates/allinstances_index_grouped.html:56 -#: instances/templates/allinstances_index_nongrouped.html:20 -#: instances/templates/instance.html:17 instances/templates/instances.html:85 +#: computes/templates/computes/instances.html:94 +#: instances/templates/allinstances_index_grouped.html:57 +#: instances/templates/allinstances_index_nongrouped.html:40 +#: instances/templates/instance.html:17 msgid "Active" msgstr "" @@ -311,24 +250,21 @@ msgstr "" #: accounts/templates/accounts-list.html:76 accounts/templates/accounts.html:69 #: accounts/templates/create_user_block.html:18 -#: computes/templates/computes.html:66 computes/templates/computes.html:114 -#: computes/templates/computes.html:157 computes/templates/computes.html:172 -#: computes/templates/computes.html:205 -#: create/templates/create_flav_block.html:19 -#: create/templates/create_instance_w2.html:81 -#: create/templates/create_instance_w2.html:107 -#: create/templates/create_instance_w2.html:110 -#: create/templates/create_instance_w2.html:309 -#: create/templates/create_instance_w2.html:311 -#: create/templates/create_instance_w2.html:522 -#: create/templates/create_instance_w2.html:524 +#: computes/templates/computes/instances.html:66 +#: computes/templates/computes/list.html:29 #: instances/templates/add_instance_volume.html:40 #: instances/templates/add_instance_volume.html:42 -#: instances/templates/allinstances.html:56 -#: instances/templates/allinstances_index_grouped.html:6 +#: instances/templates/allinstances_index_grouped.html:7 #: instances/templates/allinstances_index_nongrouped.html:5 -#: instances/templates/instance.html:554 instances/templates/instance.html:906 -#: instances/templates/instances.html:70 +#: instances/templates/create_instance_w2.html:82 +#: instances/templates/create_instance_w2.html:108 +#: instances/templates/create_instance_w2.html:111 +#: instances/templates/create_instance_w2.html:310 +#: instances/templates/create_instance_w2.html:312 +#: instances/templates/create_instance_w2.html:523 +#: instances/templates/create_instance_w2.html:525 +#: instances/templates/instances/settings_tab.html:340 +#: instances/templates/instances/snapshots_tab.html:47 #: interfaces/templates/create_iface_block.html:18 #: interfaces/templates/interface.html:76 #: networks/templates/create_net_block.html:18 @@ -343,21 +279,18 @@ msgstr "" #: storages/templates/create_stg_block.html:100 #: storages/templates/create_stg_block.html:165 #: storages/templates/create_stg_block.html:214 -#: storages/templates/create_stg_vol_block.html:20 -#: storages/templates/create_stg_vol_block.html:51 -#: storages/templates/create_stg_vol_block.html:53 -#: storages/templates/storage.html:98 storages/templates/storage.html:126 -#: storages/templates/storage.html:128 +#: storages/templates/create_stg_vol_block.html:21 +#: storages/templates/storage.html:97 storages/templates/storage.html:125 +#: storages/templates/storage.html:127 msgid "Name" msgstr "" #: accounts/templates/accounts-list.html:83 accounts/templates/accounts.html:76 #: accounts/templates/create_user_block.html:24 -#: accounts/templates/login.html:19 computes/templates/computes.html:85 -#: computes/templates/computes.html:176 -#: console/templates/console-spice-full.html:200 -#: instances/templates/instance.html:1293 -#: instances/templates/instance.html:1300 +#: accounts/templates/login.html:19 +#: console/templates/console-spice-full.html:201 +#: console/templates/console-spice-lite.html:58 +#: console/templates/console-spice-lite.html:99 msgid "Password" msgstr "" @@ -370,7 +303,7 @@ msgid "Is superuser" msgstr "" #: accounts/templates/accounts-list.html:101 -#: accounts/templates/accounts.html:94 instances/models.py:25 +#: accounts/templates/accounts.html:94 msgid "Can clone instances" msgstr "" @@ -404,6 +337,63 @@ msgstr "" msgid "Unblock" msgstr "" +#: accounts/templates/accounts-list.html:145 +#: accounts/templates/accounts.html:138 +#: accounts/templates/create_user_block.html:31 +#: instances/templates/add_instance_network_block.html:49 +#: instances/templates/add_instance_owner_block.html:30 +#: instances/templates/add_instance_volume.html:89 +#: instances/templates/add_instance_volume.html:144 +#: instances/templates/create_flav_block.html:25 +#: instances/templates/create_inst_block.html:34 +#: instances/templates/create_instance_w2.html:274 +#: instances/templates/edit_instance_volume.html:123 +#: instances/templates/instances/settings_tab.html:427 +#: interfaces/templates/create_iface_block.html:135 +#: networks/templates/add_network_qos.html:50 +#: networks/templates/create_net_block.html:84 +#: networks/templates/modify_ipv4_fixed_address.html:44 +#: networks/templates/modify_ipv6_fixed_address.html:44 +#: nwfilters/templates/add_nwf_rule.html:25 +#: nwfilters/templates/create_nwfilter_block.html:23 +#: nwfilters/templates/nwfilters.html:83 nwfilters/templates/nwfilters.html:111 +#: secrets/templates/create_secret_block.html:54 +#: secrets/templates/secrets.html:102 +#: storages/templates/create_stg_block.html:55 +#: storages/templates/create_stg_block.html:84 +#: storages/templates/create_stg_block.html:140 +#: storages/templates/create_stg_block.html:202 +#: storages/templates/create_stg_block.html:230 +#: storages/templates/create_stg_vol_block.html:28 +#: storages/templates/create_stg_vol_block.html:56 +#: storages/templates/storage.html:155 +msgid "Close" +msgstr "" + +#: accounts/templates/accounts/change_password_form.html:7 +#: accounts/templates/accounts/change_password_form.html:12 +#: accounts/templates/profile.html:21 +msgid "Change Password" +msgstr "" + +#: accounts/templates/accounts/change_password_form.html:22 +#: admin/templates/admin/user_form.html:22 +#: computes/templates/computes/form.html:21 +#: templates/common/confirm_delete.html:14 templates/common/form.html:20 +msgid "Cancel" +msgstr "" + +#: accounts/templates/accounts/change_password_form.html:24 +#: accounts/templates/profile.html:44 +#: instances/templates/instances/settings_tab.html:633 +#: instances/templates/instances/settings_tab.html:637 +#: instances/templates/instances/settings_tab.html:819 +#: instances/templates/instances/settings_tab.html:821 +#: venv/lib/python3.6/site-packages/django/forms/widgets.py:397 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:379 +msgid "Change" +msgstr "" + #: accounts/templates/create_user_block.html:13 msgid "Add New User" msgstr "" @@ -413,13 +403,13 @@ msgid "john" msgstr "" #: accounts/templates/create_user_block.html:32 -#: create/templates/create_instance_w1.html:95 -#: create/templates/create_instance_w2.html:275 -#: create/templates/create_instance_w2.html:277 -#: create/templates/create_instance_w2.html:504 -#: create/templates/create_instance_w2.html:508 -#: create/templates/create_instance_w2.html:717 -#: create/templates/create_instance_w2.html:721 +#: instances/templates/create_instance_w1.html:95 +#: instances/templates/create_instance_w2.html:276 +#: instances/templates/create_instance_w2.html:278 +#: instances/templates/create_instance_w2.html:505 +#: instances/templates/create_instance_w2.html:509 +#: instances/templates/create_instance_w2.html:718 +#: instances/templates/create_instance_w2.html:722 #: interfaces/templates/create_iface_block.html:138 #: networks/templates/create_net_block.html:85 #: networks/templates/modify_ipv4_fixed_address.html:45 @@ -432,29 +422,10 @@ msgstr "" #: storages/templates/create_stg_block.html:148 #: storages/templates/create_stg_block.html:205 #: storages/templates/create_stg_block.html:233 -#: storages/templates/create_stg_vol_block.html:82 +#: storages/templates/create_stg_vol_block.html:57 msgid "Create" msgstr "" -#: accounts/templates/create_user_inst_block.html:12 -msgid "Add Instance for User" -msgstr "" - -#: accounts/templates/create_user_inst_block.html:18 -#: console/templates/console-spice-full.html:198 -#: instances/templates/allinstances_index_nongrouped.html:6 -msgid "Host" -msgstr "" - -#: accounts/templates/create_user_inst_block.html:30 -#: accounts/templates/profile.html:111 -#: create/templates/create_flav_block.html:54 -#: instances/templates/add_instance_network_block.html:50 -#: instances/templates/add_instance_owner_block.html:30 -#: nwfilters/templates/add_nwf_rule.html:26 -msgid "Add" -msgstr "" - #: accounts/templates/login.html:3 accounts/templates/logout.html:4 msgid "WebVirtCloud" msgstr "" @@ -468,7 +439,7 @@ msgstr "" msgid "Incorrect username or password." msgstr "" -#: accounts/templates/login.html:18 accounts/templates/profile.html:21 +#: accounts/templates/login.html:18 accounts/templates/profile.html:25 msgid "Login" msgstr "" @@ -480,72 +451,86 @@ msgstr "" msgid "Successful log out" msgstr "" -#: accounts/templates/profile.html:4 accounts/templates/profile.html:9 +#: accounts/templates/profile.html:5 accounts/templates/profile.html:10 #: templates/navbar.html:45 msgid "Profile" msgstr "" -#: accounts/templates/profile.html:18 +#: accounts/templates/profile.html:19 msgid "Edit Profile" msgstr "" -#: accounts/templates/profile.html:33 +#: accounts/templates/profile.html:37 msgid "Email" msgstr "" -#: accounts/templates/profile.html:40 accounts/templates/profile.html:67 -#: computes/templates/computes.html:104 computes/templates/computes.html:148 -#: computes/templates/computes.html:196 computes/templates/computes.html:225 -#: instances/templates/instance.html:1190 -#: instances/templates/instance.html:1194 -#: instances/templates/instance.html:1480 -#: instances/templates/instance.html:1482 -#: venv/lib/python3.6/site-packages/django/forms/widgets.py:397 -msgid "Change" -msgstr "" - -#: accounts/templates/profile.html:45 -msgid "Edit Password" -msgstr "" - #: accounts/templates/profile.html:48 -msgid "Old" -msgstr "" - -#: accounts/templates/profile.html:54 -msgid "New" -msgstr "" - -#: accounts/templates/profile.html:60 -msgid "Retry" -msgstr "" - -#: accounts/templates/profile.html:72 instances/templates/instance.html:266 +#: instances/templates/instances/access_tab.html:23 msgid "SSH Keys" msgstr "" -#: accounts/templates/profile.html:100 +#: accounts/templates/profile.html:60 +#: instances/templates/create_instance_w2.html:292 +#: instances/templates/instances/settings_tab.html:438 +#: instances/templates/instances/settings_tab.html:510 +#: instances/templates/instances/settings_tab.html:520 +#: instances/templates/instances/snapshots_tab.html:75 +#: interfaces/templates/interface.html:61 +#: interfaces/templates/interface.html:63 networks/templates/network.html:53 +#: networks/templates/network.html:55 networks/templates/network.html:65 +#: networks/templates/network.html:139 networks/templates/network.html:192 +#: networks/templates/network.html:197 networks/templates/network.html:252 +#: networks/templates/network.html:301 networks/templates/network.html:306 +#: networks/templates/network.html:356 networks/templates/network.html:361 +#: nwfilters/templates/nwfilter.html:114 nwfilters/templates/nwfilter.html:154 +#: nwfilters/templates/nwfilters.html:123 secrets/templates/secrets.html:77 +#: storages/templates/storage.html:63 storages/templates/storage.html:66 +#: storages/templates/storage.html:78 storages/templates/storage.html:175 +msgid "Are you sure?" +msgstr "" + +#: accounts/templates/profile.html:76 msgid "Enter Name" msgstr "" -#: accounts/templates/profile.html:106 +#: accounts/templates/profile.html:82 msgid "Enter Public Key" msgstr "" -#: accounts/views.py:52 +#: accounts/templates/profile.html:87 +#: instances/templates/add_instance_network_block.html:50 +#: instances/templates/add_instance_owner_block.html:31 +#: instances/templates/create_flav_block.html:28 +#: nwfilters/templates/add_nwf_rule.html:26 +msgid "Add" +msgstr "" + +#: accounts/views.py:39 msgid "Key name already exist" msgstr "" -#: accounts/views.py:55 +#: accounts/views.py:42 msgid "Public key already exist" msgstr "" -#: accounts/views.py:58 +#: accounts/views.py:45 msgid "Invalid characters in public key" msgstr "" -#: accounts/views.py:112 -msgid "Instance already added" +#: accounts/views.py:77 +msgid "Password Changed" +msgstr "" + +#: accounts/views.py:80 +msgid "Wrong Data Provided" +msgstr "" + +#: accounts/views.py:100 +msgid "Create User Instance" +msgstr "" + +#: accounts/views.py:118 +msgid "Update User Instance" msgstr "" #: admin/forms.py:46 @@ -557,25 +542,6 @@ msgstr "" msgid "Groups" msgstr "" -#: admin/templates/admin/common/confirm_delete.html:12 -msgid "Are you sure you want to delete" -msgstr "" - -#: admin/templates/admin/common/confirm_delete.html:14 -#: admin/templates/admin/common/form.html:22 -#: admin/templates/admin/user_form.html:22 -#: computes/templates/computes/form.html:22 -msgid "Cancel" -msgstr "" - -#: admin/templates/admin/common/form.html:24 -#: admin/templates/admin/user_form.html:24 -#: computes/templates/computes/form.html:24 -#: instances/templates/edit_instance_volume.html:124 -#: networks/templates/add_network_qos.html:51 -msgid "Save" -msgstr "" - #: admin/templates/admin/common/list.html:9 msgid "Create New" msgstr "" @@ -590,33 +556,53 @@ 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 -#: instances/templates/instance.html:909 instances/templates/instance.html:1051 -#: instances/templates/instances.html:75 networks/templates/network.html:178 -#: networks/templates/network.html:287 networks/templates/network.html:335 +#: computes/templates/computes/instances.html:71 +#: computes/templates/computes/list.html:32 +#: instances/templates/allinstances_index_grouped.html:12 +#: instances/templates/allinstances_index_nongrouped.html:12 +#: instances/templates/instances/settings_tab.html:343 +#: instances/templates/instances/settings_tab.html:486 +#: networks/templates/network.html:178 networks/templates/network.html:287 +#: networks/templates/network.html:335 msgid "Actions" msgstr "" -#: admin/templates/admin/logs.html:3 admin/templates/admin/logs.html:8 -#: instances/templates/instance.html:1577 templates/navbar.html:31 +#: admin/templates/admin/logs.html:4 admin/templates/admin/logs.html:9 +#: instances/templates/instances/stats_tab.html:13 templates/navbar.html:31 msgid "Logs" msgstr "" -#: admin/templates/admin/logs.html:21 +#: admin/templates/admin/logs.html:22 msgid "You don't have any Logs" msgstr "" -#: admin/templates/admin/logs.html:31 instances/templates/instance.html:555 -#: instances/templates/instance.html:1643 +#: admin/templates/admin/logs.html:32 +#: instances/templates/instances/snapshots_tab.html:48 +#: instances/templates/instances/stats_tab.html:83 msgid "Date" msgstr "" -#: admin/templates/admin/logs.html:34 instances/templates/instance.html:1645 +#: admin/templates/admin/logs.html:33 admin/templates/admin/user_form.html:6 +#: computes/templates/computes/instances.html:67 +#: instances/templates/add_instance_owner_block.html:18 +#: instances/templates/allinstances_index_grouped.html:8 +#: instances/templates/allinstances_index_nongrouped.html:7 +#: instances/templates/instances/stats_tab.html:84 +msgid "User" +msgstr "" + +#: admin/templates/admin/logs.html:35 +#: instances/templates/instances/stats_tab.html:85 msgid "Message" msgstr "" +#: admin/templates/admin/user_form.html:24 +#: computes/templates/computes/form.html:23 +#: instances/templates/edit_instance_volume.html:124 +#: networks/templates/add_network_qos.html:51 templates/common/form.html:22 +msgid "Save" +msgstr "" + #: admin/templates/admin/user_list.html:37 msgid "Can Clone" msgstr "" @@ -625,19 +611,19 @@ msgstr "" msgid "View Profile" msgstr "" -#: admin/views.py:38 +#: admin/views.py:39 msgid "Create Group" msgstr "" -#: admin/views.py:56 +#: admin/views.py:57 msgid "Update Group" msgstr "" -#: admin/views.py:108 +#: admin/views.py:110 msgid "Create User" msgstr "" -#: admin/views.py:130 +#: admin/views.py:132 msgid "Update User" msgstr "" @@ -849,7 +835,39 @@ msgstr "" msgid "Show access ssh keys" msgstr "" -#: appsettings/models.py:9 computes/models.py:5 instances/models.py:10 +#: appsettings/migrations/0004_auto_20200716_0637.py:11 +msgid "Console Scale" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:11 +msgid "Allow console to scaling view" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:12 +msgid "Console View-Only" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:12 +msgid "Allow only view not modify" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:13 +msgid "Console Resize Session" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:13 +msgid "Allow to resize session for console" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:14 +msgid "Console Clip Viewport" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:14 +msgid "Clip console viewport" +msgstr "" + +#: appsettings/models.py:9 computes/models.py:11 instances/models.py:27 msgid "name" msgstr "" @@ -874,19 +892,19 @@ msgstr "" msgid "Edit Settings" msgstr "" -#: appsettings/templates/appsettings.html:18 +#: appsettings/templates/appsettings.html:17 msgid "App Settings" msgstr "" -#: appsettings/templates/appsettings.html:22 templates/navbar.html:43 +#: appsettings/templates/appsettings.html:21 templates/navbar.html:43 msgid "Language" msgstr "" -#: appsettings/templates/appsettings.html:55 +#: appsettings/templates/appsettings.html:54 msgid "After change please full refresh page with 'Ctrl + F5' " msgstr "" -#: appsettings/templates/appsettings.html:60 +#: appsettings/templates/appsettings.html:59 msgid "Other Settings" msgstr "" @@ -909,97 +927,22 @@ msgstr "" msgid "FQDN/IP" msgstr "" -#: computes/forms.py:47 -msgid "No hostname has been entered" -msgstr "" - -#: computes/forms.py:48 -msgid "No IP / Domain name has been entered" -msgstr "" - -#: computes/forms.py:49 -msgid "No login has been entered" -msgstr "" - -#: computes/forms.py:57 -msgid "The name of the host must not contain any special characters" -msgstr "" - -#: computes/forms.py:59 -msgid "The name of the host must not exceed 20 characters" -msgstr "" - -#: computes/forms.py:67 computes/validators.py:16 -msgid "" -"Hostname must contain only numbers, or the domain name separated by \".\"" -msgstr "" - -#: computes/forms.py:69 computes/validators.py:18 -msgid "Wrong IP address" -msgstr "" - -#: computes/models.py:6 +#: computes/models.py:12 msgid "hostname" msgstr "" -#: computes/models.py:7 +#: computes/models.py:13 msgid "login" msgstr "" -#: computes/models.py:8 +#: computes/models.py:14 msgid "password" msgstr "" -#: computes/models.py:9 +#: computes/models.py:15 msgid "details" msgstr "" -#: computes/templates/computes.html:3 computes/templates/computes.html:9 -#: templates/navbar.html:18 -msgid "Computes" -msgstr "" - -#: computes/templates/computes.html:42 instances/templates/instance.html:1537 -msgid "Connected" -msgstr "" - -#: computes/templates/computes.html:44 -msgid "Not Connected" -msgstr "" - -#: computes/templates/computes.html:46 computes/templates/computes.html:91 -#: 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 "" - -#: computes/templates/computes.html:50 -msgid "No details available" -msgstr "" - -#: computes/templates/computes.html:59 -msgid "Edit connection" -msgstr "" - -#: computes/templates/computes.html:73 computes/templates/computes.html:121 -#: computes/templates/computes.html:164 -msgid "FQDN / IP" -msgstr "" - -#: computes/templates/computes.html:112 -msgid "" -"Need create ssh authorization key. If you have another SSH port on " -"your server, you can add IP:PORT like '192.168.1.1:2222'." -msgstr "" - -#: computes/templates/computes.html:241 -msgid "Hypervisor doesn't have any Computes" -msgstr "" - #: computes/templates/computes/form.html:6 msgid "Add Compute" msgstr "" @@ -1008,6 +951,137 @@ msgstr "" msgid "Create Compute" msgstr "" +#: computes/templates/computes/instances.html:29 +#: computes/templates/computes/list.html:50 +#: computes/templates/computes/list.html:52 computes/templates/overview.html:4 +#: computes/templates/overview.html:13 interfaces/templates/interface.html:11 +#: interfaces/templates/interfaces.html:14 networks/templates/network.html:13 +#: networks/templates/networks.html:17 nwfilters/templates/nwfilter.html:12 +#: nwfilters/templates/nwfilters.html:21 secrets/templates/secrets.html:17 +#: storages/templates/storage.html:17 storages/templates/storages.html:17 +msgid "Overview" +msgstr "" + +#: computes/templates/computes/instances.html:35 +#: computes/templates/overview.html:19 interfaces/templates/interface.html:17 +#: interfaces/templates/interfaces.html:20 networks/templates/network.html:19 +#: networks/templates/networks.html:23 nwfilters/templates/nwfilter.html:18 +#: nwfilters/templates/nwfilters.html:27 secrets/templates/secrets.html:23 +#: storages/templates/storage.html:23 storages/templates/storages.html:3 +#: storages/templates/storages.html:9 storages/templates/storages.html:23 +msgid "Storages" +msgstr "" + +#: computes/templates/computes/instances.html:38 +#: computes/templates/overview.html:22 interfaces/templates/interface.html:20 +#: interfaces/templates/interfaces.html:23 networks/templates/network.html:22 +#: networks/templates/networks.html:3 networks/templates/networks.html:9 +#: networks/templates/networks.html:26 nwfilters/templates/nwfilter.html:21 +#: nwfilters/templates/nwfilters.html:30 secrets/templates/secrets.html:26 +#: storages/templates/storage.html:26 storages/templates/storages.html:26 +msgid "Networks" +msgstr "" + +#: computes/templates/computes/instances.html:41 +#: computes/templates/overview.html:25 interfaces/templates/interface.html:23 +#: interfaces/templates/interfaces.html:4 +#: interfaces/templates/interfaces.html:26 networks/templates/network.html:25 +#: networks/templates/networks.html:29 nwfilters/templates/nwfilter.html:24 +#: nwfilters/templates/nwfilters.html:33 secrets/templates/secrets.html:29 +#: storages/templates/storage.html:29 storages/templates/storages.html:29 +msgid "Interfaces" +msgstr "" + +#: computes/templates/computes/instances.html:44 +#: computes/templates/overview.html:28 interfaces/templates/interface.html:26 +#: interfaces/templates/interfaces.html:29 networks/templates/network.html:28 +#: networks/templates/networks.html:32 nwfilters/templates/nwfilter.html:4 +#: nwfilters/templates/nwfilter.html:27 nwfilters/templates/nwfilters.html:4 +#: nwfilters/templates/nwfilters.html:13 nwfilters/templates/nwfilters.html:36 +#: secrets/templates/secrets.html:32 storages/templates/storage.html:32 +#: storages/templates/storages.html:32 +msgid "NWFilters" +msgstr "" + +#: computes/templates/computes/instances.html:47 +#: computes/templates/overview.html:31 interfaces/templates/interface.html:29 +#: interfaces/templates/interfaces.html:32 networks/templates/network.html:31 +#: networks/templates/networks.html:35 nwfilters/templates/nwfilter.html:30 +#: nwfilters/templates/nwfilters.html:39 secrets/templates/secrets.html:4 +#: secrets/templates/secrets.html:13 secrets/templates/secrets.html:35 +#: storages/templates/create_stg_block.html:124 +#: storages/templates/storage.html:35 storages/templates/storages.html:35 +msgid "Secrets" +msgstr "" + +#: computes/templates/computes/instances.html:58 +msgid "Hypervisor doesn't have any Instances" +msgstr "" + +#: computes/templates/computes/instances.html:66 +#: instances/templates/allinstances_index_grouped.html:7 +#: instances/templates/allinstances_index_nongrouped.html:5 +#: instances/templates/instances/settings_tab.html:777 +#: instances/templates/instances/settings_tab.html:800 +msgid "Description" +msgstr "" + +#: computes/templates/computes/instances.html:69 +#: instances/templates/allinstances_index_grouped.html:10 +#: instances/templates/allinstances_index_nongrouped.html:10 +#: instances/templates/create_instance_w2.html:83 +#: instances/templates/create_instance_w2.html:328 +#: instances/templates/create_instance_w2.html:541 +#: instances/templates/instance.html:40 instances/templates/instance.html:42 +msgid "VCPU" +msgstr "" + +#: computes/templates/computes/instances.html:70 +#: computes/templates/overview.html:82 +#: instances/templates/allinstances_index_grouped.html:11 +#: instances/templates/allinstances_index_nongrouped.html:11 +#: instances/templates/instances/resize_tab.html:13 +msgid "Memory" +msgstr "" + +#: computes/templates/computes/instances.html:96 +#: instances/templates/allinstances_index_grouped.html:58 +#: instances/templates/allinstances_index_nongrouped.html:42 +#: instances/templates/instance.html:14 +msgid "Off" +msgstr "" + +#: computes/templates/computes/instances.html:98 +#: instances/templates/allinstances_index_grouped.html:60 +#: instances/templates/allinstances_index_nongrouped.html:44 +msgid "Suspended" +msgstr "" + +#: computes/templates/computes/list.html:6 +#: computes/templates/computes/list.html:12 templates/navbar.html:18 +msgid "Computes" +msgstr "" + +#: computes/templates/computes/list.html:21 +msgid "You don't have any computes" +msgstr "" + +#: computes/templates/computes/list.html:31 computes/templates/overview.html:92 +#: instances/templates/instances/settings_tab.html:163 +#: instances/templates/instances/settings_tab.html:248 +msgid "Details" +msgstr "" + +#: computes/templates/computes/list.html:42 +#: instances/templates/allinstances_index_grouped.html:28 +#: instances/templates/instances/settings_tab.html:876 +msgid "Connected" +msgstr "" + +#: computes/templates/computes/list.html:42 +msgid "Not Connected" +msgstr "" + #: computes/templates/create_comp_block.html:5 msgid "TCP" msgstr "" @@ -1028,79 +1102,6 @@ msgstr "" msgid "Add new host" msgstr "" -#: computes/templates/overview.html:4 computes/templates/overview.html:13 -#: instances/templates/instances.html:30 interfaces/templates/interface.html:11 -#: interfaces/templates/interfaces.html:14 networks/templates/network.html:13 -#: networks/templates/networks.html:17 nwfilters/templates/nwfilter.html:12 -#: nwfilters/templates/nwfilters.html:21 secrets/templates/secrets.html:17 -#: storages/templates/storage.html:17 storages/templates/storages.html:17 -msgid "Overview" -msgstr "" - -#: computes/templates/overview.html:16 instances/templates/allinstances.html:4 -#: instances/templates/allinstances.html:20 -#: instances/templates/bottom_bar.html:17 instances/templates/instances.html:4 -#: instances/templates/instances.html:33 interfaces/templates/interface.html:14 -#: interfaces/templates/interfaces.html:17 networks/templates/network.html:16 -#: networks/templates/networks.html:20 nwfilters/templates/nwfilter.html:15 -#: nwfilters/templates/nwfilters.html:24 secrets/templates/secrets.html:20 -#: storages/templates/storage.html:20 storages/templates/storages.html:20 -#: templates/navbar.html:14 -msgid "Instances" -msgstr "" - -#: computes/templates/overview.html:19 instances/templates/instances.html:36 -#: interfaces/templates/interface.html:17 -#: interfaces/templates/interfaces.html:20 networks/templates/network.html:19 -#: networks/templates/networks.html:23 nwfilters/templates/nwfilter.html:18 -#: nwfilters/templates/nwfilters.html:27 secrets/templates/secrets.html:23 -#: storages/templates/storage.html:23 storages/templates/storages.html:3 -#: storages/templates/storages.html:9 storages/templates/storages.html:23 -msgid "Storages" -msgstr "" - -#: computes/templates/overview.html:22 instances/templates/instances.html:39 -#: interfaces/templates/interface.html:20 -#: interfaces/templates/interfaces.html:23 networks/templates/network.html:22 -#: networks/templates/networks.html:3 networks/templates/networks.html:9 -#: networks/templates/networks.html:26 nwfilters/templates/nwfilter.html:21 -#: nwfilters/templates/nwfilters.html:30 secrets/templates/secrets.html:26 -#: storages/templates/storage.html:26 storages/templates/storages.html:26 -msgid "Networks" -msgstr "" - -#: computes/templates/overview.html:25 instances/templates/instances.html:42 -#: interfaces/templates/interface.html:23 -#: interfaces/templates/interfaces.html:4 -#: interfaces/templates/interfaces.html:26 networks/templates/network.html:25 -#: networks/templates/networks.html:29 nwfilters/templates/nwfilter.html:24 -#: nwfilters/templates/nwfilters.html:33 secrets/templates/secrets.html:29 -#: storages/templates/storage.html:29 storages/templates/storages.html:29 -msgid "Interfaces" -msgstr "" - -#: computes/templates/overview.html:28 instances/templates/instances.html:45 -#: interfaces/templates/interface.html:26 -#: interfaces/templates/interfaces.html:29 networks/templates/network.html:28 -#: networks/templates/networks.html:32 nwfilters/templates/nwfilter.html:4 -#: nwfilters/templates/nwfilter.html:27 nwfilters/templates/nwfilters.html:4 -#: nwfilters/templates/nwfilters.html:13 nwfilters/templates/nwfilters.html:36 -#: secrets/templates/secrets.html:32 storages/templates/storage.html:32 -#: storages/templates/storages.html:32 -msgid "NWFilters" -msgstr "" - -#: computes/templates/overview.html:31 instances/templates/instances.html:48 -#: interfaces/templates/interface.html:29 -#: interfaces/templates/interfaces.html:32 networks/templates/network.html:31 -#: networks/templates/networks.html:35 nwfilters/templates/nwfilter.html:30 -#: nwfilters/templates/nwfilters.html:39 secrets/templates/secrets.html:4 -#: secrets/templates/secrets.html:13 secrets/templates/secrets.html:35 -#: storages/templates/create_stg_block.html:124 -#: storages/templates/storage.html:35 storages/templates/storages.html:35 -msgid "Secrets" -msgstr "" - #: computes/templates/overview.html:42 msgid "Basic details" msgstr "" @@ -1134,16 +1135,9 @@ msgstr "" msgid "Libvirt" msgstr "" -#: computes/templates/overview.html:82 instances/templates/allinstances.html:59 -#: instances/templates/allinstances_index_grouped.html:10 -#: instances/templates/allinstances_index_nongrouped.html:9 -#: instances/templates/instance.html:369 instances/templates/instances.html:74 -msgid "Memory" -msgstr "" - #: computes/templates/overview.html:84 -#: create/templates/create_instance_w1.html:42 -#: create/templates/create_instance_w1.html:58 +#: instances/templates/create_instance_w1.html:42 +#: instances/templates/create_instance_w1.html:58 msgid "Architecture" msgstr "" @@ -1172,287 +1166,153 @@ msgstr "" msgid "RAM Utilization" msgstr "" +#: computes/validators.py:16 +msgid "" +"Hostname must contain only numbers, or the domain name separated by \".\"" +msgstr "" + +#: computes/validators.py:18 +msgid "Wrong IP address" +msgstr "" + #: computes/validators.py:24 msgid "The hostname must not contain any special characters" msgstr "" -#: console/templates/console-base.html:69 +#: console/templates/console-base.html:51 msgid "Send key(s)" msgstr "" -#: console/templates/console-base.html:89 +#: console/templates/console-base.html:71 msgid "Fullscreen" msgstr "" +#: console/templates/console-spice-full.html:56 +msgid "must set host and port" +msgstr "" + +#: console/templates/console-spice-full.html:83 +#: console/templates/console-spice-full.html:97 +#: console/templates/console-spice-lite.html:138 +#: console/templates/console-spice-lite.html:150 +msgid "disconnect" +msgstr "" + +#: console/templates/console-spice-full.html:114 +#: console/templates/console-spice-lite.html:167 +msgid "File API is not supported" +msgstr "" + +#: console/templates/console-spice-full.html:197 +#: instances/templates/allinstances_index_nongrouped.html:7 +msgid "Host" +msgstr "" + #: console/templates/console-spice-full.html:199 msgid "Port" msgstr "" -#: console/templates/console-spice-full.html:201 +#: console/templates/console-spice-full.html:207 msgid "Show console" msgstr "" -#: console/templates/console-spice-full.html:202 +#: console/templates/console-spice-full.html:209 #: interfaces/templates/interface.html:60 networks/templates/network.html:52 #: networks/templates/network.html:122 networks/templates/network.html:128 #: networks/templates/network.html:234 networks/templates/network.html:240 -#: storages/templates/storage.html:62 +#: storages/templates/storage.html:61 msgid "Start" msgstr "" -#: console/templates/console-vnc-full.html:83 +#: console/templates/console-spice-lite.html:109 +msgid "must specify host and port in URL" +msgstr "" + +#: console/templates/console-vnc-full.html:78 msgid "noVNC encountered an error" msgstr "" -#: console/templates/console-vnc-lite.html:297 +#: console/templates/console-vnc-lite.html:222 msgid "Loading" msgstr "" -#: create/forms.py:10 -msgid "No flavor name has been entered" -msgstr "" - -#: create/forms.py:13 create/forms.py:37 -msgid "No VCPU has been entered" -msgstr "" - -#: create/forms.py:15 -msgid "No HDD image has been entered" -msgstr "" - -#: create/forms.py:17 create/forms.py:40 -msgid "No RAM size has been entered" -msgstr "" - -#: create/forms.py:34 +#: instances/forms.py:37 msgid "No Virtual Machine name has been entered" msgstr "" -#: create/forms.py:41 +#: instances/forms.py:39 +msgid "No VCPU has been entered" +msgstr "" + +#: instances/forms.py:42 +msgid "No RAM size has been entered" +msgstr "" + +#: instances/forms.py:43 msgid "No Network pool has been choosen" msgstr "" -#: create/forms.py:46 +#: instances/forms.py:48 msgid "Please select HDD cache mode" msgstr "" -#: create/forms.py:53 +#: instances/forms.py:55 msgid "Please select a graphics type" msgstr "" -#: create/forms.py:54 +#: instances/forms.py:56 msgid "Please select a video driver" msgstr "" -#: create/forms.py:61 +#: instances/forms.py:63 msgid "The name of the virtual machine must not contain any special characters" msgstr "" -#: create/forms.py:63 +#: instances/forms.py:65 msgid "The name of the virtual machine must not exceed 20 characters" msgstr "" -#: create/models.py:5 +#: instances/models.py:11 msgid "label" msgstr "" -#: create/models.py:6 +#: instances/models.py:12 msgid "memory" msgstr "" -#: create/models.py:7 +#: instances/models.py:13 msgid "vcpu" msgstr "" -#: create/models.py:8 +#: instances/models.py:14 msgid "disk" msgstr "" -#: create/templates/create_flav_block.html:13 -msgid "Add New Flavor" +#: instances/models.py:28 +msgid "uuid" msgstr "" -#: create/templates/create_flav_block.html:21 -msgid "Micro" +#: instances/models.py:29 +msgid "is template" msgstr "" -#: create/templates/create_flav_block.html:26 -#: create/templates/create_instance_w2.html:82 -#: create/templates/create_instance_w2.html:327 -#: create/templates/create_instance_w2.html:540 -#: instances/templates/allinstances.html:58 -#: instances/templates/allinstances_index_grouped.html:9 -#: instances/templates/allinstances_index_nongrouped.html:8 -#: instances/templates/instance.html:40 instances/templates/instance.html:42 -#: instances/templates/instances.html:73 -msgid "VCPU" +#: instances/models.py:30 +msgid "created" msgstr "" -#: create/templates/create_flav_block.html:33 -#: create/templates/create_instance_w2.html:83 -#: create/templates/create_instance_w2.html:356 -#: create/templates/create_instance_w2.html:567 -#: instances/templates/instance.html:45 -msgid "RAM" +#: instances/models.py:215 +msgid "Can access console without password" msgstr "" -#: create/templates/create_flav_block.html:38 -#: create/templates/create_instance_w2.html:94 -#: create/templates/create_instance_w2.html:360 -#: create/templates/create_instance_w2.html:571 -#: instances/templates/allinstances.html:78 -#: instances/templates/instance.html:45 instances/templates/instance.html:450 -#: instances/templates/instance.html:463 -msgid "MB" +#: instances/templates/add_instance_network_block.html:12 +msgid "Add Instance Network" msgstr "" -#: create/templates/create_flav_block.html:41 -#: create/templates/create_instance_w2.html:84 -#: create/templates/create_instance_w2.html:371 -msgid "HDD" -msgstr "" - -#: create/templates/create_flav_block.html:46 -#: create/templates/create_instance_w2.html:95 -#: instances/templates/add_instance_volume.html:60 -#: storages/templates/create_stg_vol_block.html:71 -msgid "GB" -msgstr "" - -#: create/templates/create_instance_w1.html:4 -#: create/templates/create_instance_w2.html:4 -msgid "Create new instance" -msgstr "" - -#: create/templates/create_instance_w1.html:4 -msgid "Select Type" -msgstr "" - -#: create/templates/create_instance_w1.html:11 -#: create/templates/create_instance_w2.html:13 -#, python-format -msgid "New instance on %(host)s " -msgstr "" - -#: create/templates/create_instance_w1.html:47 -#: instances/templates/instance.html:643 networks/templates/network.html:75 -#: nwfilters/templates/nwfilter.html:52 -msgid "XML" -msgstr "" - -#: create/templates/create_instance_w1.html:68 -msgid "Chipset" -msgstr "" - -#: create/templates/create_instance_w1.html:78 -msgid "Next" -msgstr "" - -#: create/templates/create_instance_w2.html:49 -msgid "Flavor" -msgstr "" - -#: create/templates/create_instance_w2.html:54 -msgid "Custom" -msgstr "" - -#: create/templates/create_instance_w2.html:59 -msgid "Template" -msgstr "" - -#: create/templates/create_instance_w2.html:70 -msgid "Hypervisor doesn't have any Flavors" -msgstr "" - -#: create/templates/create_instance_w2.html:75 -msgid "Create from flavor" -msgstr "" - -#: create/templates/create_instance_w2.html:101 -msgid "Create Virtual Machine" -msgstr "" - -#: create/templates/create_instance_w2.html:119 -#: create/templates/create_instance_w2.html:316 -#: create/templates/create_instance_w2.html:529 -msgid "Firmware" -msgstr "" - -#: create/templates/create_instance_w2.html:131 -#: create/templates/create_instance_w2.html:334 -#: create/templates/create_instance_w2.html:546 -msgid "VCPU Config" -msgstr "" - -#: create/templates/create_instance_w2.html:134 -#: create/templates/create_instance_w2.html:337 -#: create/templates/create_instance_w2.html:549 -msgid "no-mode" -msgstr "" - -#: create/templates/create_instance_w2.html:153 -#: create/templates/create_instance_w2.html:595 -#: instances/templates/add_instance_volume.html:30 -#: instances/templates/add_instance_volume.html:100 -#: instances/templates/instance.html:829 storages/templates/storage.html:4 -#: storages/templates/storage.html:14 -msgid "Storage" -msgstr "" - -#: create/templates/create_instance_w2.html:162 -#: create/templates/create_instance_w2.html:190 -#: create/templates/create_instance_w2.html:381 -#: create/templates/create_instance_w2.html:436 -#: create/templates/create_instance_w2.html:584 -#: create/templates/create_instance_w2.html:603 -#: create/templates/create_instance_w2.html:649 -#: instances/templates/add_instance_network_block.html:40 -#: instances/templates/add_instance_volume.html:117 -#: instances/templates/create_inst_block.html:25 -#: instances/templates/instance.html:329 instances/templates/instance.html:776 -#: instances/templates/instance.html:972 instances/templates/instance.html:1649 -#: interfaces/templates/interface.html:42 -#: interfaces/templates/interface.html:44 nwfilters/templates/nwfilter.html:81 -#: storages/templates/create_stg_block.html:132 -#: storages/templates/storage.html:49 storages/templates/storage.html:51 -#: storages/templates/storage.html:53 -msgid "None" -msgstr "" - -#: create/templates/create_instance_w2.html:168 -#: create/templates/create_instance_w2.html:392 -#: create/templates/create_instance_w2.html:609 -#: instances/templates/add_instance_network_block.html:24 -#: instances/templates/instance.html:624 instances/templates/instance.html:959 -#: networks/templates/network.html:4 networks/templates/network.html:9 -#: networks/templates/network.html:110 networks/templates/network.html:221 -msgid "Network" -msgstr "" - -#: create/templates/create_instance_w2.html:178 -#: create/templates/create_instance_w2.html:406 -#: create/templates/create_instance_w2.html:619 -#: instances/templates/edit_instance_volume.html:25 -msgid "Advanced" -msgstr "" - -#: create/templates/create_instance_w2.html:187 -#: create/templates/create_instance_w2.html:433 -#: create/templates/create_instance_w2.html:646 -#: instances/templates/add_instance_network_block.html:37 -#: instances/templates/instance.html:968 nwfilters/templates/nwfilter.html:9 -msgid "NWFilter" -msgstr "" - -#: create/templates/create_instance_w2.html:198 -#: create/templates/create_instance_w2.html:635 -msgid "HDD cache mode" -msgstr "" - -#: create/templates/create_instance_w2.html:209 #: instances/templates/add_instance_network_block.html:18 -#: instances/templates/instance.html:924 instances/templates/instance.html:947 -#: instances/templates/instance.html:1047 +#: instances/templates/create_instance_w2.html:210 +#: instances/templates/instances/settings_tab.html:358 +#: instances/templates/instances/settings_tab.html:381 +#: instances/templates/instances/settings_tab.html:482 #: interfaces/templates/interface.html:46 #: interfaces/templates/interface.html:75 #: interfaces/templates/interfaces.html:63 @@ -1461,128 +1321,46 @@ msgstr "" msgid "MAC" msgstr "" -#: create/templates/create_instance_w2.html:216 -#: create/templates/create_instance_w2.html:445 -#: create/templates/create_instance_w2.html:658 -msgid "Graphics" +#: instances/templates/add_instance_network_block.html:24 +#: instances/templates/create_instance_w2.html:169 +#: instances/templates/create_instance_w2.html:393 +#: instances/templates/create_instance_w2.html:610 +#: instances/templates/instances/settings_tab.html:30 +#: instances/templates/instances/settings_tab.html:393 +#: networks/templates/network.html:4 networks/templates/network.html:9 +#: networks/templates/network.html:110 networks/templates/network.html:221 +msgid "Network" msgstr "" -#: create/templates/create_instance_w2.html:227 -#: create/templates/create_instance_w2.html:456 -#: create/templates/create_instance_w2.html:669 -msgid "Video" +#: instances/templates/add_instance_network_block.html:37 +#: instances/templates/create_instance_w2.html:188 +#: instances/templates/create_instance_w2.html:434 +#: instances/templates/create_instance_w2.html:647 +#: instances/templates/instances/settings_tab.html:402 +#: nwfilters/templates/nwfilter.html:9 +msgid "NWFilter" msgstr "" -#: create/templates/create_instance_w2.html:241 -#: create/templates/create_instance_w2.html:470 -#: create/templates/create_instance_w2.html:683 -msgid "Console Access" -msgstr "" - -#: create/templates/create_instance_w2.html:251 -#: create/templates/create_instance_w2.html:253 -#: create/templates/create_instance_w2.html:480 -#: create/templates/create_instance_w2.html:482 -#: create/templates/create_instance_w2.html:693 -#: create/templates/create_instance_w2.html:695 -msgid "Console Password" -msgstr "" - -#: create/templates/create_instance_w2.html:257 -#: create/templates/create_instance_w2.html:486 -#: create/templates/create_instance_w2.html:699 -msgid "Guest Agent" -msgstr "" - -#: create/templates/create_instance_w2.html:264 -#: create/templates/create_instance_w2.html:493 -#: create/templates/create_instance_w2.html:706 -msgid "VirtIO" -msgstr "" - -#: create/templates/create_instance_w2.html:363 -msgid "Added Disks" -msgstr "" - -#: create/templates/create_instance_w2.html:376 -#: create/templates/create_instance_w2.html:579 -msgid "Select pool" -msgstr "" - -#: create/templates/create_instance_w2.html:415 -#: create/templates/create_instance_w2.html:628 -msgid "Disk Metadata" -msgstr "" - -#: create/templates/create_instance_w2.html:417 -#: create/templates/create_instance_w2.html:630 -msgid "Metadata preallocation" -msgstr "" - -#: create/templates/create_instance_w2.html:419 -#: create/templates/create_instance_w2.html:632 -#: venv/lib/python3.6/site-packages/django/db/models/fields/files.py:360 -msgid "Image" -msgstr "" - -#: create/templates/create_instance_w2.html:422 -msgid "HDD Cache Mode" -msgstr "" - -#: create/templates/create_instance_w2.html:574 -msgid "Template Disk" -msgstr "" - -#: create/views.py:52 create/views.py:164 -msgid "A virtual machine with this name already exists" -msgstr "" - -#: create/views.py:133 -msgid "You haven't defined any storage pools" -msgstr "" - -#: create/views.py:136 -msgid "You haven't defined any network pools" -msgstr "" - -#: create/views.py:167 -msgid "There is an instance with same name. Are you sure?" -msgstr "" - -#: create/views.py:171 -msgid "No Virtual Machine MAC has been entered" -msgstr "" - -#: create/views.py:204 -msgid "Image has already exist. Please check volumes or change instance name" -msgstr "" - -#: create/views.py:230 -msgid "First you need to create or select an image" -msgstr "" - -#: create/views.py:252 -msgid "Invalid cache mode" -msgstr "" - -#: create/views.py:290 -msgid "Instance is created" -msgstr "" - -#: instances/models.py:11 -msgid "uuid" -msgstr "" - -#: instances/models.py:12 -msgid "is template" -msgstr "" - -#: instances/models.py:13 -msgid "created" -msgstr "" - -#: instances/templates/add_instance_network_block.html:12 -msgid "Add Instance Network" +#: instances/templates/add_instance_network_block.html:40 +#: instances/templates/add_instance_volume.html:117 +#: instances/templates/create_inst_block.html:25 +#: instances/templates/create_instance_w2.html:163 +#: instances/templates/create_instance_w2.html:191 +#: instances/templates/create_instance_w2.html:382 +#: instances/templates/create_instance_w2.html:437 +#: instances/templates/create_instance_w2.html:585 +#: instances/templates/create_instance_w2.html:604 +#: instances/templates/create_instance_w2.html:650 +#: instances/templates/instances/access_tab.html:135 +#: instances/templates/instances/settings_tab.html:183 +#: instances/templates/instances/settings_tab.html:406 +#: instances/templates/instances/stats_tab.html:90 +#: interfaces/templates/interface.html:42 +#: interfaces/templates/interface.html:44 nwfilters/templates/nwfilter.html:81 +#: storages/templates/create_stg_block.html:132 +#: storages/templates/storage.html:48 storages/templates/storage.html:50 +#: storages/templates/storage.html:52 +msgid "None" msgstr "" #: instances/templates/add_instance_owner_block.html:12 @@ -1612,24 +1390,36 @@ msgstr "" msgid "Volume parameters" msgstr "" +#: instances/templates/add_instance_volume.html:30 +#: instances/templates/add_instance_volume.html:100 +#: instances/templates/create_instance_w2.html:154 +#: instances/templates/create_instance_w2.html:596 +#: instances/templates/instances/settings_tab.html:237 +#: storages/templates/storage.html:4 storages/templates/storage.html:14 +msgid "Storage" +msgstr "" + #: instances/templates/add_instance_volume.html:46 #: storages/templates/create_stg_block.html:183 -#: storages/templates/create_stg_vol_block.html:57 -#: storages/templates/storage.html:101 storages/templates/storage.html:139 +#: storages/templates/storage.html:100 storages/templates/storage.html:138 msgid "Format" msgstr "" #: instances/templates/add_instance_volume.html:56 -#: storages/templates/create_stg_vol_block.html:67 -#: storages/templates/storage.html:54 storages/templates/storage.html:100 +#: storages/templates/storage.html:53 storages/templates/storage.html:99 #: storages/templates/storages.html:66 msgid "Size" msgstr "" +#: instances/templates/add_instance_volume.html:60 +#: instances/templates/create_instance_w2.html:96 +msgid "GB" +msgstr "" + #: instances/templates/add_instance_volume.html:63 #: instances/templates/add_instance_volume.html:123 #: instances/templates/edit_instance_volume.html:53 -#: instances/templates/instance.html:763 +#: instances/templates/instances/settings_tab.html:168 msgid "Bus" msgstr "" @@ -1639,9 +1429,8 @@ msgid "Cache" msgstr "" #: instances/templates/add_instance_volume.html:83 -#: instances/templates/instance.html:1416 -#: storages/templates/create_stg_vol_block.html:74 -#: storages/templates/storage.html:149 +#: instances/templates/instances/settings_tab.html:755 +#: storages/templates/storage.html:148 msgid "Metadata" msgstr "" @@ -1653,55 +1442,23 @@ msgstr "" msgid "Volume" msgstr "" -#: instances/templates/allinstances.html:33 -#: instances/templates/allinstances.html:49 -msgid "You don't have any Instance" +#: instances/templates/allinstances.html:24 +msgid "Problem occurred with host" msgstr "" -#: instances/templates/allinstances.html:71 -#: instances/templates/allinstances_index_grouped.html:57 -#: instances/templates/allinstances_index_nongrouped.html:21 -#: instances/templates/instance.html:14 instances/templates/instances.html:86 -msgid "Off" -msgstr "" - -#: instances/templates/allinstances.html:74 -#: instances/templates/allinstances_index_grouped.html:58 -#: instances/templates/allinstances_index_nongrouped.html:22 -#: instances/templates/instance.html:20 instances/templates/instance.html:143 -#: instances/templates/instance.html:198 -#: instances/templates/instance_actions.html:15 -#: instances/templates/instance_actions.html:32 -#: instances/templates/instance_actions.html:49 -#: instances/templates/instances.html:87 instances/views.py:699 -#: instances/views.py:1239 -msgid "Suspend" -msgstr "" - -#: instances/templates/allinstances_index_grouped.html:6 -#: instances/templates/allinstances_index_nongrouped.html:5 -#: instances/templates/instance.html:1438 -#: instances/templates/instance.html:1461 instances/templates/instances.html:70 -msgid "Description" -msgstr "" - -#: instances/templates/allinstances_index_grouped.html:11 +#: instances/templates/allinstances_index_grouped.html:12 msgid "Mem Usage" msgstr "" -#: instances/templates/allinstances_index_grouped.html:27 -msgid "Not Active" -msgstr "" - -#: instances/templates/allinstances_index_grouped.html:28 -msgid "Connection Failed" -msgstr "" - #: instances/templates/bottom_bar.html:4 msgid "HOST" msgstr "" -#: instances/templates/create_inst_block.html:12 +#: instances/templates/create_flav_block.html:14 +msgid "Add New Flavor" +msgstr "" + +#: instances/templates/create_inst_block.html:11 msgid "Choose a compute for new instance" msgstr "" @@ -1718,6 +1475,183 @@ msgstr "" msgid "Choose" msgstr "" +#: instances/templates/create_instance_w1.html:4 +#: instances/templates/create_instance_w2.html:5 +msgid "Create new instance" +msgstr "" + +#: instances/templates/create_instance_w1.html:4 +msgid "Select Type" +msgstr "" + +#: instances/templates/create_instance_w1.html:11 +#: instances/templates/create_instance_w2.html:14 +#, python-format +msgid "New instance on %(host)s " +msgstr "" + +#: instances/templates/create_instance_w1.html:47 +#: instances/templates/instances/settings_tab.html:49 +#: networks/templates/network.html:75 nwfilters/templates/nwfilter.html:52 +msgid "XML" +msgstr "" + +#: instances/templates/create_instance_w1.html:68 +msgid "Chipset" +msgstr "" + +#: instances/templates/create_instance_w1.html:78 +msgid "Next" +msgstr "" + +#: instances/templates/create_instance_w2.html:50 +msgid "Flavor" +msgstr "" + +#: instances/templates/create_instance_w2.html:55 +msgid "Custom" +msgstr "" + +#: instances/templates/create_instance_w2.html:60 +msgid "Template" +msgstr "" + +#: instances/templates/create_instance_w2.html:71 +msgid "Hypervisor doesn't have any Flavors" +msgstr "" + +#: instances/templates/create_instance_w2.html:76 +msgid "Create from flavor" +msgstr "" + +#: instances/templates/create_instance_w2.html:84 +#: instances/templates/create_instance_w2.html:357 +#: instances/templates/create_instance_w2.html:568 +#: instances/templates/instance.html:45 +msgid "RAM" +msgstr "" + +#: instances/templates/create_instance_w2.html:85 +#: instances/templates/create_instance_w2.html:372 +msgid "HDD" +msgstr "" + +#: instances/templates/create_instance_w2.html:95 +#: instances/templates/create_instance_w2.html:361 +#: instances/templates/create_instance_w2.html:572 +#: instances/templates/instance.html:45 +#: instances/templates/instances/resize_tab.html:95 +#: instances/templates/instances/resize_tab.html:108 +msgid "MB" +msgstr "" + +#: instances/templates/create_instance_w2.html:102 +msgid "Create Virtual Machine" +msgstr "" + +#: instances/templates/create_instance_w2.html:120 +#: instances/templates/create_instance_w2.html:317 +#: instances/templates/create_instance_w2.html:530 +msgid "Firmware" +msgstr "" + +#: instances/templates/create_instance_w2.html:132 +#: instances/templates/create_instance_w2.html:335 +#: instances/templates/create_instance_w2.html:547 +msgid "VCPU Config" +msgstr "" + +#: instances/templates/create_instance_w2.html:135 +#: instances/templates/create_instance_w2.html:338 +#: instances/templates/create_instance_w2.html:550 +msgid "no-mode" +msgstr "" + +#: instances/templates/create_instance_w2.html:179 +#: instances/templates/create_instance_w2.html:407 +#: instances/templates/create_instance_w2.html:620 +#: instances/templates/edit_instance_volume.html:25 +msgid "Advanced" +msgstr "" + +#: instances/templates/create_instance_w2.html:199 +#: instances/templates/create_instance_w2.html:636 +msgid "HDD cache mode" +msgstr "" + +#: instances/templates/create_instance_w2.html:217 +#: instances/templates/create_instance_w2.html:446 +#: instances/templates/create_instance_w2.html:659 +msgid "Graphics" +msgstr "" + +#: instances/templates/create_instance_w2.html:228 +#: instances/templates/create_instance_w2.html:457 +#: instances/templates/create_instance_w2.html:670 +msgid "Video" +msgstr "" + +#: instances/templates/create_instance_w2.html:242 +#: instances/templates/create_instance_w2.html:471 +#: instances/templates/create_instance_w2.html:684 +msgid "Console Access" +msgstr "" + +#: instances/templates/create_instance_w2.html:252 +#: instances/templates/create_instance_w2.html:254 +#: instances/templates/create_instance_w2.html:481 +#: instances/templates/create_instance_w2.html:483 +#: instances/templates/create_instance_w2.html:694 +#: instances/templates/create_instance_w2.html:696 +msgid "Console Password" +msgstr "" + +#: instances/templates/create_instance_w2.html:258 +#: instances/templates/create_instance_w2.html:487 +#: instances/templates/create_instance_w2.html:700 +msgid "Guest Agent" +msgstr "" + +#: instances/templates/create_instance_w2.html:265 +#: instances/templates/create_instance_w2.html:494 +#: instances/templates/create_instance_w2.html:707 +msgid "VirtIO" +msgstr "" + +#: instances/templates/create_instance_w2.html:364 +msgid "Added Disks" +msgstr "" + +#: instances/templates/create_instance_w2.html:377 +#: instances/templates/create_instance_w2.html:580 +msgid "Select pool" +msgstr "" + +#: instances/templates/create_instance_w2.html:416 +#: instances/templates/create_instance_w2.html:629 +msgid "Disk Metadata" +msgstr "" + +#: instances/templates/create_instance_w2.html:418 +#: instances/templates/create_instance_w2.html:631 +msgid "Metadata preallocation" +msgstr "" + +#: instances/templates/create_instance_w2.html:420 +#: instances/templates/create_instance_w2.html:633 +#: venv/lib/python3.6/site-packages/django/db/models/fields/files.py:360 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/files.py:391 +msgid "Image" +msgstr "" + +#: instances/templates/create_instance_w2.html:423 +msgid "HDD Cache Mode" +msgstr "" + +#: instances/templates/create_instance_w2.html:575 +msgid "Template Disk" +msgstr "" + #: instances/templates/edit_instance_volume.html:3 msgid "Edit Volume" msgstr "" @@ -1766,6 +1700,15 @@ msgstr "" msgid "Detect zeroes" msgstr "" +#: instances/templates/instance.html:20 +#: instances/templates/instance_actions.html:14 +#: instances/templates/instance_actions.html:25 +#: instances/templates/instance_actions.html:37 +#: instances/templates/instances/power_tab.html:25 +#: instances/templates/instances/power_tab.html:82 instances/views.py:287 +msgid "Suspend" +msgstr "" + #: instances/templates/instance.html:26 msgid "Guest Agent Enabled & Connected" msgstr "" @@ -1778,8 +1721,9 @@ msgstr "" msgid "Guest Agent Not Enabled & Not Connected" msgstr "" -#: instances/templates/instance.html:48 instances/templates/instance.html:374 -#: instances/templates/instance.html:610 +#: instances/templates/instance.html:48 +#: instances/templates/instances/resize_tab.html:18 +#: instances/templates/instances/settings_tab.html:16 msgid "Disk" msgstr "" @@ -1791,808 +1735,820 @@ msgstr "" msgid "quota reached" msgstr "" -#: instances/templates/instance.html:76 +#: instances/templates/instance.html:75 msgid "Power" msgstr "" -#: instances/templates/instance.html:82 +#: instances/templates/instance.html:81 msgid "Access" msgstr "" -#: instances/templates/instance.html:95 +#: instances/templates/instance.html:94 msgid "Snapshot" msgstr "" -#: instances/templates/instance.html:102 templates/navbar.html:32 +#: instances/templates/instance.html:101 templates/navbar.html:32 msgid "Settings" msgstr "" -#: instances/templates/instance.html:108 +#: instances/templates/instance.html:107 msgid "Stats" msgstr "" -#: instances/templates/instance.html:114 instances/templates/instance.html:1674 -#: instances/templates/instance.html:1691 -#: instances/templates/instance.html:1695 instances/views.py:421 +#: instances/templates/instance.html:113 +#: instances/templates/instances/destroy_instance_form.html:40 +#: instances/templates/instances/destroy_tab.html:18 +#: instances/templates/instances/destroy_tab.html:20 +#: instances/templates/instances/destroy_tab.html:23 instances/views.py:329 msgid "Destroy" msgstr "" -#: instances/templates/instance.html:127 instances/templates/instance.html:176 -#: instances/templates/instance_actions.html:18 -#: instances/templates/instance_actions.html:52 instances/views.py:387 -#: instances/views.py:1199 -msgid "Power Off" -msgstr "" - -#: instances/templates/instance.html:132 instances/templates/instance.html:183 -#: instances/templates/instance_actions.html:21 -#: instances/templates/instance_actions.html:38 -#: instances/templates/instance_actions.html:55 instances/views.py:381 -#: instances/views.py:1211 -msgid "Power Cycle" -msgstr "" - -#: instances/templates/instance.html:137 instances/templates/instance.html:157 -#: instances/templates/instance.html:190 instances/templates/instance.html:216 -#: instances/templates/instance_actions.html:35 instances/views.py:393 -#: instances/views.py:1206 -msgid "Force Off" -msgstr "" - -#: instances/templates/instance.html:152 instances/templates/instance.html:209 -#: instances/templates/instance.html:224 -#: instances/templates/instance_actions.html:29 instances/views.py:705 -#: instances/views.py:1245 -msgid "Resume" -msgstr "" - -#: instances/templates/instance.html:165 instances/templates/instance.html:236 -#: instances/templates/instance.html:238 -#: instances/templates/instance_actions.html:11 -#: instances/templates/instance_actions.html:46 instances/views.py:374 -#: instances/views.py:1193 +#: instances/templates/instance_actions.html:10 +#: instances/templates/instance_actions.html:35 +#: instances/templates/instances/power_tab.html:47 +#: instances/templates/instances/power_tab.html:121 +#: instances/templates/instances/power_tab.html:123 instances/views.py:262 msgid "Power On" msgstr "" -#: instances/templates/instance.html:174 -msgid "This action sends an ACPI shutdown signal to the instance." +#: instances/templates/instance_actions.html:15 +#: instances/templates/instances/power_tab.html:9 +#: instances/templates/instances/power_tab.html:59 instances/views.py:278 +msgid "Power Off" msgstr "" -#: instances/templates/instance.html:181 -msgid "" -"This action forcibly powers off and start the instance and may cause data " -"corruption." +#: instances/templates/instance_actions.html:16 +#: instances/templates/instance_actions.html:29 +#: instances/templates/instances/power_tab.html:14 +#: instances/templates/instances/power_tab.html:66 instances/views.py:271 +msgid "Power Cycle" msgstr "" -#: instances/templates/instance.html:188 instances/templates/instance.html:214 -msgid "" -"This action forcibly powers off the instance and may cause data corruption." +#: instances/templates/instance_actions.html:17 +#: instances/templates/instance_actions.html:30 +msgid "VNC Console" msgstr "" -#: instances/templates/instance.html:196 -msgid "This action suspends the instance." +#: instances/templates/instance_actions.html:22 +#: instances/templates/instances/power_tab.html:34 +#: instances/templates/instances/power_tab.html:93 +#: instances/templates/instances/power_tab.html:108 instances/views.py:295 +msgid "Resume" msgstr "" -#: instances/templates/instance.html:207 -msgid "This action restore the instance after suspend." +#: instances/templates/instance_actions.html:26 +#: instances/templates/instances/power_tab.html:19 +#: instances/templates/instances/power_tab.html:39 +#: instances/templates/instances/power_tab.html:74 +#: instances/templates/instances/power_tab.html:100 instances/views.py:302 +msgid "Force Off" msgstr "" -#: instances/templates/instance.html:222 -msgid "Administrator blocked your instance." -msgstr "" - -#: instances/templates/instance.html:232 -msgid "Click on Power On button to start this instance." -msgstr "" - -#: instances/templates/instance.html:235 -msgid "Template instance cannot be started." -msgstr "" - -#: instances/templates/instance.html:253 instances/templates/instance.html:285 -#: instances/templates/instance.html:290 instances/templates/instance.html:291 -#: instances/templates/instance.html:295 instances/templates/instance.html:617 -#: instances/templates/instance_actions.html:58 +#: instances/templates/instance_actions.html:41 +#: instances/templates/instances/access_tab.html:9 +#: instances/templates/instances/access_tab.html:79 +#: instances/templates/instances/access_tab.html:87 +#: instances/templates/instances/access_tab.html:90 +#: instances/templates/instances/access_tab.html:94 +#: instances/templates/instances/settings_tab.html:23 msgid "Console" msgstr "" -#: instances/templates/instance.html:259 +#: instances/templates/instances/access_tab.html:16 msgid "Root Password" msgstr "" -#: instances/templates/instance.html:273 instances/templates/instance.html:349 +#: instances/templates/instances/access_tab.html:31 +#: instances/templates/instances/access_tab.html:156 msgid "VDI" msgstr "" -#: instances/templates/instance.html:281 +#: instances/templates/instances/access_tab.html:39 +#, python-format msgid "" -"This action opens a new window with a VNC connection to the console of the " -"instance." +" This action opens a new window with a %(type)s connection to the console of " +"the instance." msgstr "" -#: instances/templates/instance.html:287 +#: instances/templates/instances/access_tab.html:47 +msgid "Scale" +msgstr "" + +#: instances/templates/instances/access_tab.html:55 +msgid "View Only" +msgstr "" + +#: instances/templates/instances/access_tab.html:63 +msgid "Resize Session" +msgstr "" + +#: instances/templates/instances/access_tab.html:71 +msgid "View Clipboard" +msgstr "" + +#: instances/templates/instances/access_tab.html:82 msgid "Toggle Dropdown" msgstr "" -#: instances/templates/instance.html:290 instances/templates/instance.html:291 +#: instances/templates/instances/access_tab.html:86 +#: instances/templates/instances/access_tab.html:89 msgid "Console port" msgstr "" -#: instances/templates/instance.html:290 +#: instances/templates/instances/access_tab.html:87 msgid "Lite" msgstr "" -#: instances/templates/instance.html:291 +#: instances/templates/instances/access_tab.html:90 msgid "Full" msgstr "" -#: instances/templates/instance.html:301 +#: instances/templates/instances/access_tab.html:100 msgid "You need shut down your instance and enter a new root password." msgstr "" -#: instances/templates/instance.html:305 +#: instances/templates/instances/access_tab.html:107 msgid "Enter Password" msgstr "" -#: instances/templates/instance.html:309 instances/templates/instance.html:311 +#: instances/templates/instances/access_tab.html:112 +#: instances/templates/instances/access_tab.html:115 msgid "Reset Root Password" msgstr "" -#: instances/templates/instance.html:319 +#: instances/templates/instances/access_tab.html:123 msgid "You need shut down your instance and choose your public key." msgstr "" -#: instances/templates/instance.html:335 instances/templates/instance.html:337 +#: instances/templates/instances/access_tab.html:142 +#: instances/templates/instances/access_tab.html:144 msgid "Add Public Key" msgstr "" -#: instances/templates/instance.html:345 +#: instances/templates/instances/access_tab.html:152 msgid "" "This action opens a remote viewer with a connection to the console of the " "instance." msgstr "" -#: instances/templates/instance.html:364 +#: instances/templates/instances/destroy_instance_form.html:4 +msgid "Confirm Destroy" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:8 +msgid "Destroy instance" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:15 +msgid "Instance is suspended, cannot destroy!" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:19 +msgid "This action is irreversible!" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:26 +msgid "Remove Instance's data" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:34 +msgid "Remove Instance's NVRAM" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:46 +msgid "You cannot destroy instance!" +msgstr "" + +#: instances/templates/instances/destroy_tab.html:8 +msgid "Destroy Instance" +msgstr "" + +#: instances/templates/instances/destroy_tab.html:15 +msgid "This action starts remove instance process" +msgstr "" + +#: instances/templates/instances/power_tab.html:56 +msgid "This action sends an ACPI shutdown signal to the instance." +msgstr "" + +#: instances/templates/instances/power_tab.html:64 +msgid "" +"This action forcibly powers off and start the instance and may cause data " +"corruption." +msgstr "" + +#: instances/templates/instances/power_tab.html:71 +#: instances/templates/instances/power_tab.html:98 +msgid "" +"This action forcibly powers off the instance and may cause data corruption." +msgstr "" + +#: instances/templates/instances/power_tab.html:80 +msgid "This action suspends the instance." +msgstr "" + +#: instances/templates/instances/power_tab.html:91 +msgid "This action restore the instance after suspend." +msgstr "" + +#: instances/templates/instances/power_tab.html:106 +msgid "Administrator blocked your instance." +msgstr "" + +#: instances/templates/instances/power_tab.html:116 +msgid "Click on Power On button to start this instance." +msgstr "" + +#: instances/templates/instances/power_tab.html:120 +msgid "Template instance cannot be started." +msgstr "" + +#: instances/templates/instances/resize_tab.html:8 msgid "CPU" msgstr "" -#: instances/templates/instance.html:385 +#: instances/templates/instances/resize_tab.html:29 msgid "Logical host CPUs" msgstr "" -#: instances/templates/instance.html:387 instances/templates/instance.html:450 -#: instances/templates/instance.html:490 +#: instances/templates/instances/resize_tab.html:31 +#: instances/templates/instances/resize_tab.html:95 +#: instances/templates/instances/resize_tab.html:136 msgid "Current Allocation" msgstr "" -#: instances/templates/instance.html:401 instances/templates/instance.html:463 +#: instances/templates/instances/resize_tab.html:45 +#: instances/templates/instances/resize_tab.html:108 msgid "Maximum Allocation" msgstr "" -#: instances/templates/instance.html:419 +#: instances/templates/instances/resize_tab.html:63 msgid "Logical Instance Active/Maximum CPUs" msgstr "" -#: instances/templates/instance.html:427 instances/templates/instance.html:674 -#: instances/templates/instance.html:689 networks/templates/network.html:65 -#: storages/templates/storage.html:79 +#: instances/templates/instances/resize_tab.html:71 +#: instances/templates/instances/settings_tab.html:79 +#: instances/templates/instances/settings_tab.html:95 +#: networks/templates/network.html:65 storages/templates/storage.html:78 msgid "Disable" msgstr "" -#: instances/templates/instance.html:429 +#: instances/templates/instances/resize_tab.html:73 msgid "Constant" msgstr "" -#: instances/templates/instance.html:431 instances/templates/instance.html:672 -#: instances/templates/instance.html:687 networks/templates/network.html:63 -#: storages/templates/storage.html:76 +#: instances/templates/instances/resize_tab.html:75 +#: instances/templates/instances/settings_tab.html:77 +#: instances/templates/instances/settings_tab.html:91 +#: networks/templates/network.html:63 storages/templates/storage.html:75 msgid "Enable" msgstr "" -#: instances/templates/instance.html:440 instances/templates/instance.html:479 -#: instances/templates/instance.html:503 +#: instances/templates/instances/resize_tab.html:84 +#: instances/templates/instances/resize_tab.html:124 +#: instances/templates/instances/resize_tab.html:157 msgid "You don't have permission for resizing instance" msgstr "" -#: instances/templates/instance.html:448 +#: instances/templates/instances/resize_tab.html:93 msgid "Total host memory" msgstr "" -#: instances/templates/instance.html:458 instances/templates/instance.html:473 +#: instances/templates/instances/resize_tab.html:103 +#: instances/templates/instances/resize_tab.html:118 msgid "Custom value" msgstr "" -#: instances/templates/instance.html:487 +#: instances/templates/instances/resize_tab.html:133 msgid "Disk allocation (GB)" msgstr "" -#: instances/templates/instance.html:517 instances/templates/instance.html:538 -#: instances/templates/instance.html:540 -msgid "Take Snapshot" +#: instances/templates/instances/resize_tab.html:140 +#: instances/templates/instances/settings_tab.html:269 +msgid "Error getting disk info" msgstr "" -#: instances/templates/instance.html:522 -msgid "Manage Snapshots" -msgstr "" - -#: instances/templates/instance.html:530 -msgid "" -"This may take more than an hour, depending on how much content is on your " -"droplet and how large the disk is." -msgstr "" - -#: instances/templates/instance.html:534 -msgid "Enter Snapshot Name" -msgstr "" - -#: instances/templates/instance.html:545 -msgid "To take a snapshot please Power Off the instance." -msgstr "" - -#: instances/templates/instance.html:550 -msgid "Choose a snapshot for restore/delete" -msgstr "" - -#: instances/templates/instance.html:567 -msgid "Revert to this Snapshot" -msgstr "" - -#: instances/templates/instance.html:572 -msgid "To restore snapshots you need Power Off the instance." -msgstr "" - -#: instances/templates/instance.html:581 -msgid "Delete Snapshot" -msgstr "" - -#: instances/templates/instance.html:592 -msgid "You do not have any snapshots" -msgstr "" - -#: instances/templates/instance.html:605 +#: instances/templates/instances/settings_tab.html:11 msgid "Boot" msgstr "" -#: instances/templates/instance.html:638 instances/templates/instance.html:1174 -#: instances/templates/instance.html:1176 +#: instances/templates/instances/settings_tab.html:44 +#: instances/templates/instances/settings_tab.html:616 +#: instances/templates/instances/settings_tab.html:618 msgid "Migrate" msgstr "" -#: instances/templates/instance.html:650 +#: instances/templates/instances/settings_tab.html:56 msgid "Options" msgstr "" -#: instances/templates/instance.html:666 networks/templates/network.html:59 -#: storages/templates/storage.html:71 +#: instances/templates/instances/settings_tab.html:72 +#: networks/templates/network.html:59 storages/templates/storage.html:70 msgid "Autostart" msgstr "" -#: instances/templates/instance.html:670 +#: instances/templates/instances/settings_tab.html:75 msgid "Autostart your instance when host server is power on " msgstr "" -#: instances/templates/instance.html:680 +#: instances/templates/instances/settings_tab.html:84 msgid "Boot Order" msgstr "" -#: instances/templates/instance.html:685 +#: instances/templates/instances/settings_tab.html:88 msgid "Enable Boot Menu for your instance when it starts up " msgstr "" -#: instances/templates/instance.html:687 +#: instances/templates/instances/settings_tab.html:91 msgid "Show boot menu" msgstr "" -#: instances/templates/instance.html:689 +#: instances/templates/instances/settings_tab.html:95 msgid "Hide boot menu" msgstr "" -#: instances/templates/instance.html:693 +#: instances/templates/instances/settings_tab.html:100 msgid "Please shutdown instance to modify boot menu" msgstr "" -#: instances/templates/instance.html:724 +#: instances/templates/instances/settings_tab.html:130 msgid "up: move selected devices" msgstr "" -#: instances/templates/instance.html:727 +#: instances/templates/instances/settings_tab.html:133 msgid "down: move selected devices" msgstr "" -#: instances/templates/instance.html:733 instances/templates/instance.html:994 +#: instances/templates/instances/settings_tab.html:139 +#: instances/templates/instances/settings_tab.html:428 msgid "Apply" msgstr "" -#: instances/templates/instance.html:743 +#: instances/templates/instances/settings_tab.html:149 msgid "Instance Media" msgstr "" -#: instances/templates/instance.html:746 +#: instances/templates/instances/settings_tab.html:152 msgid "Add CD-ROM" msgstr "" -#: instances/templates/instance.html:764 instances/templates/instance.html:826 +#: instances/templates/instances/settings_tab.html:169 +#: instances/templates/instances/settings_tab.html:234 #: interfaces/templates/create_iface_block.html:34 #: networks/templates/network.html:46 networks/templates/networks.html:63 #: storages/templates/create_stg_block.html:77 msgid "Device" msgstr "" -#: instances/templates/instance.html:765 +#: instances/templates/instances/settings_tab.html:170 msgid "CD-ROM" msgstr "" -#: instances/templates/instance.html:781 instances/templates/instance.html:783 +#: instances/templates/instances/settings_tab.html:188 +#: instances/templates/instances/settings_tab.html:190 msgid "Mount" msgstr "" -#: instances/templates/instance.html:786 +#: instances/templates/instances/settings_tab.html:193 msgid "Detach CD-ROM (remove device)" msgstr "" -#: instances/templates/instance.html:800 instances/templates/instance.html:802 +#: instances/templates/instances/settings_tab.html:208 +#: instances/templates/instances/settings_tab.html:210 msgid "Unmount" msgstr "" -#: instances/templates/instance.html:812 +#: instances/templates/instances/settings_tab.html:220 msgid "There is not any CD-ROM device." msgstr "" -#: instances/templates/instance.html:817 +#: instances/templates/instances/settings_tab.html:225 msgid "Instance Volume" msgstr "" -#: instances/templates/instance.html:827 +#: instances/templates/instances/settings_tab.html:235 msgid "Used" msgstr "" -#: instances/templates/instance.html:828 +#: instances/templates/instances/settings_tab.html:236 msgid "Capacity" msgstr "" -#: instances/templates/instance.html:830 instances/templates/instance.html:928 +#: instances/templates/instances/settings_tab.html:238 +#: instances/templates/instances/settings_tab.html:362 msgid "Source" msgstr "" -#: instances/templates/instance.html:870 instances/templates/instance.html:877 +#: instances/templates/instances/settings_tab.html:294 +#: instances/templates/instances/settings_tab.html:298 msgid "Detach" msgstr "" -#: instances/templates/instance.html:870 +#: instances/templates/instances/settings_tab.html:294 msgid "Are you sure to detach volume?" msgstr "" -#: instances/templates/instance.html:873 -msgid "Are you sure to delete volume?" -msgstr "" - -#: instances/templates/instance.html:877 instances/templates/instance.html:880 +#: instances/templates/instances/settings_tab.html:298 +#: instances/templates/instances/settings_tab.html:314 msgid "Are you sure? This may lead data corruption!" msgstr "" -#: instances/templates/instance.html:896 +#: instances/templates/instances/settings_tab.html:310 +msgid "Are you sure to delete volume?" +msgstr "" + +#: instances/templates/instances/settings_tab.html:330 msgid "Add a network device" msgstr "" -#: instances/templates/instance.html:902 +#: instances/templates/instances/settings_tab.html:336 msgid "Network Devices" msgstr "" -#: instances/templates/instance.html:907 instances/templates/instance.html:908 +#: instances/templates/instances/settings_tab.html:341 +#: instances/templates/instances/settings_tab.html:342 msgid "Info" msgstr "" -#: instances/templates/instance.html:921 +#: instances/templates/instances/settings_tab.html:355 msgid "active" msgstr "" -#: instances/templates/instance.html:926 nwfilters/templates/nwfilter.html:78 +#: instances/templates/instances/settings_tab.html:360 +#: nwfilters/templates/nwfilter.html:78 msgid "Filter" msgstr "" -#: instances/templates/instance.html:933 +#: instances/templates/instances/settings_tab.html:367 msgid "Edit NIC" msgstr "" -#: instances/templates/instance.html:941 +#: instances/templates/instances/settings_tab.html:375 msgid "Edit Instance Network" msgstr "" -#: instances/templates/instance.html:954 +#: instances/templates/instances/settings_tab.html:388 msgid "Net Source" msgstr "" -#: instances/templates/instance.html:962 interfaces/templates/interface.html:3 -#: interfaces/templates/interface.html:8 interfaces/templates/interface.html:40 +#: instances/templates/instances/settings_tab.html:396 +#: interfaces/templates/interface.html:3 interfaces/templates/interface.html:8 +#: interfaces/templates/interface.html:40 msgid "Interface" msgstr "" -#: instances/templates/instance.html:980 instances/templates/instance.html:1019 +#: instances/templates/instances/settings_tab.html:414 +#: instances/templates/instances/settings_tab.html:453 msgid "Model" msgstr "" -#: instances/templates/instance.html:994 +#: instances/templates/instances/settings_tab.html:428 msgid "Apply network changes" msgstr "" -#: instances/templates/instance.html:1003 +#: instances/templates/instances/settings_tab.html:437 msgid "Delete Device" msgstr "" -#: instances/templates/instance.html:1011 +#: instances/templates/instances/settings_tab.html:445 #: interfaces/templates/create_iface_block.html:71 #: interfaces/templates/interface.html:42 msgid "IPv4" msgstr "" -#: instances/templates/instance.html:1015 +#: instances/templates/instances/settings_tab.html:449 #: interfaces/templates/create_iface_block.html:74 #: interfaces/templates/interface.html:44 msgid "IPv6" msgstr "" -#: instances/templates/instance.html:1021 +#: instances/templates/instances/settings_tab.html:455 msgid "QoS" msgstr "" -#: instances/templates/instance.html:1041 networks/templates/network.html:325 +#: instances/templates/instances/settings_tab.html:476 +#: networks/templates/network.html:325 msgid "QoS Configuration" msgstr "" -#: instances/templates/instance.html:1047 +#: instances/templates/instances/settings_tab.html:482 #: networks/templates/add_network_qos.html:18 #: networks/templates/network.html:331 nwfilters/templates/nwfilter.html:134 msgid "Direction" msgstr "" -#: instances/templates/instance.html:1048 +#: instances/templates/instances/settings_tab.html:483 #: networks/templates/add_network_qos.html:27 #: networks/templates/network.html:332 msgid "Average" msgstr "" -#: instances/templates/instance.html:1049 +#: instances/templates/instances/settings_tab.html:484 #: networks/templates/add_network_qos.html:34 #: networks/templates/network.html:333 msgid "Peak" msgstr "" -#: instances/templates/instance.html:1050 +#: instances/templates/instances/settings_tab.html:485 #: networks/templates/add_network_qos.html:41 #: networks/templates/network.html:334 msgid "Burst" msgstr "" -#: instances/templates/instance.html:1074 networks/templates/network.html:356 +#: instances/templates/instances/settings_tab.html:510 +#: networks/templates/network.html:356 msgid "Edit QoS" msgstr "" -#: instances/templates/instance.html:1079 networks/templates/network.html:361 +#: instances/templates/instances/settings_tab.html:520 +#: networks/templates/network.html:361 msgid "Delete QoS" msgstr "" -#: instances/templates/instance.html:1095 +#: instances/templates/instances/settings_tab.html:536 msgid "For migration both host servers must have equal settings and OS type" msgstr "" -#: instances/templates/instance.html:1098 +#: instances/templates/instances/settings_tab.html:540 msgid "Original host" msgstr "" -#: instances/templates/instance.html:1104 +#: instances/templates/instances/settings_tab.html:546 msgid "Host migration" msgstr "" -#: instances/templates/instance.html:1121 +#: instances/templates/instances/settings_tab.html:563 msgid "Live migration" msgstr "" -#: instances/templates/instance.html:1129 +#: instances/templates/instances/settings_tab.html:571 msgid "Unsafe migration" msgstr "" -#: instances/templates/instance.html:1137 +#: instances/templates/instances/settings_tab.html:579 msgid "Delete original" msgstr "" -#: instances/templates/instance.html:1145 +#: instances/templates/instances/settings_tab.html:587 msgid "Offline migration" msgstr "" -#: instances/templates/instance.html:1153 +#: instances/templates/instances/settings_tab.html:595 msgid "Post copy" msgstr "" -#: instances/templates/instance.html:1161 +#: instances/templates/instances/settings_tab.html:603 msgid "Forces CPU convergence during live migration" msgstr "" -#: instances/templates/instance.html:1161 +#: instances/templates/instances/settings_tab.html:603 msgid "Auto converge" msgstr "" -#: instances/templates/instance.html:1169 +#: instances/templates/instances/settings_tab.html:611 msgid "Compress instance memory for fast migration" msgstr "" -#: instances/templates/instance.html:1169 +#: instances/templates/instances/settings_tab.html:611 msgid "Compressed" msgstr "" -#: instances/templates/instance.html:1182 +#: instances/templates/instances/settings_tab.html:624 msgid "If you need to edit XML please Power Off the instance" msgstr "" -#: instances/templates/instance.html:1203 +#: instances/templates/instances/settings_tab.html:646 msgid "Instance owners" msgstr "" -#: instances/templates/instance.html:1216 -msgid "Delete Ownership" +#: instances/templates/instances/settings_tab.html:675 +msgid "To change console settings, shutdown the instance." msgstr "" -#: instances/templates/instance.html:1231 -msgid "To set console's type, shutdown the instance." +#: instances/templates/instances/settings_tab.html:681 +#: instances/templates/instances/settings_tab.html:683 +msgid "Update" msgstr "" -#: instances/templates/instance.html:1234 -#: interfaces/templates/create_iface_block.html:44 -#: interfaces/templates/interface.html:77 -#: interfaces/templates/interfaces.html:62 -#: storages/templates/create_stg_block.html:35 -#: storages/templates/create_stg_block.html:64 -#: storages/templates/create_stg_block.html:93 -#: storages/templates/create_stg_block.html:158 -#: storages/templates/storages.html:64 -msgid "Type" -msgstr "" - -#: instances/templates/instance.html:1238 -#: instances/templates/instance.html:1262 -#: instances/templates/instance.html:1331 -#: instances/templates/instance.html:1495 -msgid "please choose" -msgstr "" - -#: instances/templates/instance.html:1246 -#: instances/templates/instance.html:1248 -#: instances/templates/instance.html:1269 -#: instances/templates/instance.html:1271 -#: instances/templates/instance.html:1307 -#: instances/templates/instance.html:1309 -#: instances/templates/instance.html:1339 -#: instances/templates/instance.html:1341 -#: instances/templates/instance.html:1502 -#: instances/templates/instance.html:1504 -#: instances/templates/instance.html:1524 -#: instances/templates/instance.html:1526 -#: instances/templates/instance.html:1554 secrets/templates/secrets.html:103 -msgid "Set" -msgstr "" - -#: instances/templates/instance.html:1255 -msgid "To set console listen address, shutdown the instance." -msgstr "" - -#: instances/templates/instance.html:1258 -msgid "Listen on" -msgstr "" - -#: instances/templates/instance.html:1278 -msgid "To create console password, shutdown the instance." -msgstr "" - -#: instances/templates/instance.html:1284 -msgid "Generate" -msgstr "" - -#: instances/templates/instance.html:1288 -#: instances/templates/instance.html:1322 networks/templates/network.html:169 -#: networks/templates/network.html:279 -#: venv/lib/python3.6/site-packages/django/forms/widgets.py:395 -msgid "Clear" -msgstr "" - -#: instances/templates/instance.html:1304 networks/templates/network.html:161 -#: networks/templates/network.html:271 nwfilters/templates/nwfilters.html:88 -msgid "Show" -msgstr "" - -#: instances/templates/instance.html:1316 -msgid "To set console's keymap, shutdown the instance." -msgstr "" - -#: instances/templates/instance.html:1327 -msgid "Keymap" -msgstr "" - -#: instances/templates/instance.html:1353 +#: instances/templates/instances/settings_tab.html:692 msgid "Create a clone" msgstr "" -#: instances/templates/instance.html:1356 +#: instances/templates/instances/settings_tab.html:695 msgid "Clone Name" msgstr "" -#: instances/templates/instance.html:1363 -#: instances/templates/instance.html:1394 +#: instances/templates/instances/settings_tab.html:702 +#: instances/templates/instances/settings_tab.html:733 msgid "Guess" msgstr "" -#: instances/templates/instance.html:1382 +#: instances/templates/instances/settings_tab.html:721 msgid "Network devices" msgstr "" -#: instances/templates/instance.html:1392 +#: instances/templates/instances/settings_tab.html:731 msgid "Random" msgstr "" -#: instances/templates/instance.html:1407 +#: instances/templates/instances/settings_tab.html:746 msgid "Storage devices" msgstr "" -#: instances/templates/instance.html:1432 -#: instances/templates/instance.html:1455 +#: instances/templates/instances/settings_tab.html:771 +#: instances/templates/instances/settings_tab.html:794 msgid "Title" msgstr "" -#: instances/templates/instance.html:1452 +#: instances/templates/instances/settings_tab.html:791 msgid "To set instance template name description, shutdown the instance." msgstr "" -#: instances/templates/instance.html:1467 +#: instances/templates/instances/settings_tab.html:806 msgid "Is template" msgstr "" -#: instances/templates/instance.html:1488 +#: instances/templates/instances/settings_tab.html:827 msgid "To set instance video model, shutdown the instance." msgstr "" -#: instances/templates/instance.html:1491 +#: instances/templates/instances/settings_tab.html:830 msgid "Primary Video Model" msgstr "" -#: instances/templates/instance.html:1512 +#: instances/templates/instances/settings_tab.html:834 +msgid "please choose" +msgstr "" + +#: instances/templates/instances/settings_tab.html:841 +#: instances/templates/instances/settings_tab.html:843 +#: instances/templates/instances/settings_tab.html:863 +#: instances/templates/instances/settings_tab.html:865 +#: instances/templates/instances/settings_tab.html:893 +#: secrets/templates/secrets.html:103 +msgid "Set" +msgstr "" + +#: instances/templates/instances/settings_tab.html:851 msgid "To set instance vCPUs hotpluggable" msgstr "" -#: instances/templates/instance.html:1515 +#: instances/templates/instances/settings_tab.html:854 msgid "vCPU Hot Plug" msgstr "" -#: instances/templates/instance.html:1519 -#: instances/templates/instance.html:1550 +#: instances/templates/instances/settings_tab.html:858 +#: instances/templates/instances/settings_tab.html:889 msgid "Enabled" msgstr "" -#: instances/templates/instance.html:1520 -#: instances/templates/instance.html:1551 +#: instances/templates/instances/settings_tab.html:859 +#: instances/templates/instances/settings_tab.html:890 msgid "Disabled" msgstr "" -#: instances/templates/instance.html:1534 +#: instances/templates/instances/settings_tab.html:873 msgid "To Enable/Disable Qemu Guest Agent. Status" msgstr "" -#: instances/templates/instance.html:1539 +#: instances/templates/instances/settings_tab.html:878 msgid "Disconnected" msgstr "" -#: instances/templates/instance.html:1542 +#: instances/templates/instances/settings_tab.html:881 #: venv/lib/python3.6/site-packages/django/forms/widgets.py:709 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:703 msgid "Unknown" msgstr "" -#: instances/templates/instance.html:1546 +#: instances/templates/instances/settings_tab.html:885 msgid "Qemu Guest Agent" msgstr "" -#: instances/templates/instance.html:1572 +#: instances/templates/instances/snapshots_tab.html:9 +#: instances/templates/instances/snapshots_tab.html:31 +#: instances/templates/instances/snapshots_tab.html:33 +msgid "Take Snapshot" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:14 +msgid "Manage Snapshots" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:22 +msgid "" +"This may take more than an hour, depending on how much content is on your " +"droplet and how large the disk is." +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:27 +msgid "Enter Snapshot Name" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:38 +msgid "To take a snapshot please Power Off the instance." +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:43 +msgid "Choose a snapshot for restore/delete" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:61 +msgid "Revert to this Snapshot" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:66 +msgid "To restore snapshots you need Power Off the instance." +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:75 +msgid "Delete Snapshot" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:86 +msgid "You do not have any snapshots" +msgstr "" + +#: instances/templates/instances/stats_tab.html:8 msgid "Real Time" msgstr "" -#: instances/templates/instance.html:1586 +#: instances/templates/instances/stats_tab.html:23 msgid "CPU Usage" msgstr "" -#: instances/templates/instance.html:1598 +#: instances/templates/instances/stats_tab.html:36 msgid "Memory Usage" msgstr "" -#: instances/templates/instance.html:1611 +#: instances/templates/instances/stats_tab.html:50 msgid "Bandwidth Device" msgstr "" -#: instances/templates/instance.html:1625 +#: instances/templates/instances/stats_tab.html:65 msgid "Disk I/O device" msgstr "" -#: instances/templates/instance.html:1664 -msgid "Destroy Instance" -msgstr "" - -#: instances/templates/instance.html:1671 -msgid "Delete storage for instance?" -msgstr "" - -#: instances/templates/instance.html:1680 -msgid "Remove Instance's data" -msgstr "" - -#: instances/templates/instance.html:1687 -msgid "Remove Instance's NVRAM" -msgstr "" - -#: instances/templates/instance_actions.html:24 -#: instances/templates/instance_actions.html:41 -msgid "VNC Console" -msgstr "" - -#: instances/templates/instances.html:61 -msgid "Hypervisor doesn't have any Instances" -msgstr "" - -#: instances/views.py:224 +#: instances/utils.py:122 msgid "None available device name" msgstr "" -#: instances/views.py:260 +#: instances/utils.py:239 +msgid "Deleting due to multiple(Instance Name) records." +msgstr "" + +#: instances/utils.py:247 +msgid "Deleting due to multiple(UUID) records." +msgstr "" + +#: instances/views.py:259 +msgid "Templates cannot be started." +msgstr "" + +#: instances/views.py:362 #, python-brace-format msgid "Migrate to {new_compute.hostname}" msgstr "" -#: instances/views.py:340 -#, python-brace-format -msgid "Fixing UUID {uuid}" -msgstr "" - -#: instances/views.py:345 -msgid "Instance does not exist: Creating new instance" -msgstr "" - -#: instances/views.py:370 instances/views.py:1190 -msgid "Templates cannot be started." -msgstr "" - -#: instances/views.py:437 +#: instances/views.py:385 msgid "Reset root password" msgstr "" -#: instances/views.py:445 instances/views.py:467 +#: instances/views.py:391 instances/views.py:417 msgid "Please shutdown down your instance and then try again" msgstr "" -#: instances/views.py:459 +#: instances/views.py:409 #, python-brace-format msgid "Installed new SSH public key {publickey.keyname}" msgstr "" -#: instances/views.py:477 +#: instances/views.py:436 #, python-brace-format msgid "User {quota_msg} quota reached, cannot resize CPU of '{instance.name}'!" msgstr "" -#: instances/views.py:483 +#: instances/views.py:442 msgid "Resize CPU" msgstr "" -#: instances/views.py:501 +#: instances/views.py:470 #, python-brace-format msgid "" "User {quota_msg} quota reached, cannot resize memory of '{instance.name}'!" msgstr "" -#: instances/views.py:507 +#: instances/views.py:476 msgid "Resize Memory" msgstr "" -#: instances/views.py:524 +#: instances/views.py:506 #, python-brace-format msgid "" "User {quota_msg} quota reached, cannot resize disks of '{instance.name}'!" msgstr "" -#: instances/views.py:528 +#: instances/views.py:510 msgid "Disk resize" msgstr "" @@ -2601,259 +2557,289 @@ msgstr "" msgid "Attach new disk {name} ({format})" msgstr "" -#: instances/views.py:571 +#: instances/views.py:580 #, python-brace-format msgid "Attach Existing disk: {target_dev}" msgstr "" -#: instances/views.py:603 +#: instances/views.py:636 msgid "Volume changes are applied. But it will be activated after shutdown" msgstr "" -#: instances/views.py:606 +#: instances/views.py:638 msgid "Volume is changed successfully." msgstr "" -#: instances/views.py:607 +#: instances/views.py:639 #, python-brace-format msgid "Edit disk: {target_dev}" msgstr "" -#: instances/views.py:623 +#: instances/views.py:661 #, python-brace-format msgid "Delete disk: {dev}" msgstr "" -#: instances/views.py:628 -#, python-brace-format -msgid "The disk: {dev} is detached but not deleted. Error: {err}" -msgstr "" - -#: instances/views.py:638 +#: instances/views.py:677 #, python-brace-format msgid "Detach disk: {dev}" msgstr "" -#: instances/views.py:646 +#: instances/views.py:690 #, python-brace-format msgid "Add CD-ROM: {target}" msgstr "" -#: instances/views.py:653 +#: instances/views.py:703 #, python-brace-format msgid "Detach CD-ROM: {dev}" msgstr "" -#: instances/views.py:661 +#: instances/views.py:716 #, python-brace-format msgid "Mount media: {dev}" msgstr "" -#: instances/views.py:669 +#: instances/views.py:729 #, python-brace-format msgid "Umount media: {dev}" msgstr "" -#: instances/views.py:676 +#: instances/views.py:742 #, python-brace-format msgid "New snapshot : {name}" msgstr "" -#: instances/views.py:683 +#: instances/views.py:753 #, python-brace-format msgid "Delete snapshot : {snap_name}" msgstr "" -#: instances/views.py:690 +#: instances/views.py:764 msgid "Successful revert snapshot: " msgstr "" -#: instances/views.py:693 +#: instances/views.py:767 msgid "Revert snapshot" msgstr "" -#: instances/views.py:716 +#: instances/views.py:781 #, python-brace-format msgid "VCPU {id} is enabled={enabled}" msgstr "" -#: instances/views.py:723 +#: instances/views.py:792 #, python-brace-format msgid "VCPU Hot-plug is enabled={status}" msgstr "" -#: instances/views.py:734 +#: instances/views.py:803 msgid "Set autostart" msgstr "" -#: instances/views.py:740 +#: instances/views.py:812 msgid "Unset autostart" msgstr "" -#: instances/views.py:746 +#: instances/views.py:821 msgid "Enable boot menu" msgstr "" -#: instances/views.py:752 +#: instances/views.py:830 msgid "Disable boot menu" msgstr "" -#: instances/views.py:764 +#: instances/views.py:845 msgid "Set boot order" msgstr "" -#: instances/views.py:767 +#: instances/views.py:848 msgid "Boot menu changes applied. But it will be activated after shutdown" msgstr "" -#: instances/views.py:770 +#: instances/views.py:850 msgid "Boot order changed successfully." msgstr "" -#: instances/views.py:778 +#: instances/views.py:861 msgid "Edit XML" msgstr "" -#: instances/views.py:792 -msgid "Enter the console password or select Generate" +#: instances/views.py:875 +#, python-brace-format +msgid "Set Quest Agent {status}" msgstr "" -#: instances/views.py:796 +#: instances/views.py:885 +msgid "Set Video Model" +msgstr "" + +#: instances/views.py:894 +msgid "Change network" +msgstr "" + +#: instances/views.py:907 +msgid "Network Device Config is changed. Please shutdown instance to activate." +msgstr "" + +#: instances/views.py:915 +msgid "Add network" +msgstr "" + +#: instances/views.py:929 +msgid "Delete network" +msgstr "" + +#: instances/views.py:945 +#, python-brace-format +msgid "Set Link State: {state}" +msgstr "" + +#: instances/views.py:964 +msgid "{qos_dir.capitalize()} QoS is set" +msgstr "" + +#: instances/views.py:968 networks/views.py:216 +msgid "{qos_dir.capitalize()} QoS is set. Network XML is changed." +msgstr "" + +#: instances/views.py:969 networks/views.py:217 +msgid "Stop and start network to activate new config" +msgstr "" + +#: instances/views.py:983 networks/views.py:233 +msgid "{qos_dir.capitalize()} QoS is deleted" +msgstr "" + +#: instances/views.py:987 networks/views.py:230 +msgid "{qos_dir.capitalize()} QoS is deleted. Network XML is changed. " +msgstr "" + +#: instances/views.py:988 networks/views.py:231 +msgid "Stop and start network to activate new config." +msgstr "" + +#: instances/views.py:1004 +msgid "Only one owner is allowed and the one already added" +msgstr "" + +#: instances/views.py:1009 +#, python-format +msgid "Added owner %(user)s" +msgstr "" + +#: instances/views.py:1020 +#, python-brace-format +msgid "Deleted owner {userinstance_id}" +msgstr "" + +#: instances/views.py:1052 +msgid "User '{quota_msg}' quota reached, cannot create '{clone_data['name']}'!" +msgstr "" + +#: instances/views.py:1055 +msgid "Instance '{clone_data['name']}' already exists!" +msgstr "" + +#: instances/views.py:1058 +msgid "Instance name '{clone_data['name']}' contains invalid characters!" +msgstr "" + +#: instances/views.py:1061 +msgid "Instance MAC '{clone_data['clone-net-mac-0']}' invalid format!" +msgstr "" + +#: instances/views.py:1071 +#, python-brace-format +msgid "Clone of '{instance.name}'" +msgstr "" + +#: instances/views.py:1104 msgid "" "Error setting console password. You should check that your instance have an " "graphic device." msgstr "" -#: instances/views.py:800 +#: instances/views.py:1107 msgid "Set VNC password" msgstr "" -#: instances/views.py:811 +#: instances/views.py:1115 msgid "Set VNC keymap" msgstr "" -#: instances/views.py:817 +#: instances/views.py:1120 msgid "Set VNC type" msgstr "" -#: instances/views.py:821 -msgid "Console type not supported" -msgstr "" - -#: instances/views.py:828 +#: instances/views.py:1125 msgid "Set VNC listen address" msgstr "" -#: instances/views.py:840 -#, python-brace-format -msgid "Set Quest Agent {status}" -msgstr "" - -#: instances/views.py:847 -msgid "Set Video Model" -msgstr "" - -#: instances/views.py:872 -msgid "Change network" -msgstr "" - -#: instances/views.py:885 -msgid "Network Device Config is changed. Please shutdown instance to activate." -msgstr "" - -#: instances/views.py:890 -msgid "Add network" -msgstr "" - -#: instances/views.py:900 -msgid "Delete network" -msgstr "" - -#: instances/views.py:912 -#, python-brace-format -msgid "Set Link State: {state}" -msgstr "" - -#: instances/views.py:928 -msgid "{qos_dir.capitalize()} QoS is set" -msgstr "" - -#: instances/views.py:931 networks/views.py:216 -msgid "{qos_dir.capitalize()} QoS is set. Network XML is changed." -msgstr "" - -#: instances/views.py:932 networks/views.py:217 -msgid "Stop and start network to activate new config" -msgstr "" - -#: instances/views.py:943 networks/views.py:233 -msgid "{qos_dir.capitalize()} QoS is deleted" -msgstr "" - -#: instances/views.py:946 networks/views.py:230 -msgid "{qos_dir.capitalize()} QoS is deleted. Network XML is changed. " -msgstr "" - -#: instances/views.py:947 networks/views.py:231 -msgid "Stop and start network to activate new config." -msgstr "" - -#: instances/views.py:959 -msgid "Only one owner is allowed and the one already added" -msgstr "" - -#: instances/views.py:964 -#, python-brace-format -msgid "Added owner {user_id}" -msgstr "" - -#: instances/views.py:972 -#, python-brace-format -msgid "Deleted owner {userinstance_id}" -msgstr "" - -#: instances/views.py:1001 -msgid "User '{quota_msg}' quota reached, cannot create '{clone_data['name']}'!" -msgstr "" - -#: instances/views.py:1004 -msgid "Instance '{clone_data['name']}' already exists!" -msgstr "" - -#: instances/views.py:1007 -msgid "Instance name '{clone_data['name']}' contains invalid characters!" -msgstr "" - -#: instances/views.py:1011 -msgid "Instance MAC '{clone_data['clone-net-mac-0']}' invalid format!" -msgstr "" - -#: instances/views.py:1027 -#, python-brace-format -msgid "Clone of '{instance.name}'" -msgstr "" - -#: instances/views.py:1046 +#: instances/views.py:1148 msgid "Edit options" msgstr "" -#: instances/views.py:1103 -msgid "Deleting due to multiple(Instance Name) records." -msgstr "" - -#: instances/views.py:1111 -msgid "Deleting due to multiple(UUID) records." -msgstr "" - -#: instances/views.py:1160 -#, python-brace-format -msgid "Problem occurred with host: {comp.name} - {status}" -msgstr "" - -#: instances/views.py:1218 +#: instances/views.py:1162 msgid "Send console.vv file" msgstr "" +#: instances/views.py:1214 instances/views.py:1307 +msgid "A virtual machine with this name already exists" +msgstr "" + +#: instances/views.py:1288 +msgid "You haven't defined any storage pools" +msgstr "" + +#: instances/views.py:1291 +msgid "You haven't defined any network pools" +msgstr "" + +#: instances/views.py:1310 +msgid "There is an instance with same name. Are you sure?" +msgstr "" + +#: instances/views.py:1313 +msgid "No Virtual Machine MAC has been entered" +msgstr "" + +#: instances/views.py:1337 +msgid "Image has already exist. Please check volumes or change instance name" +msgstr "" + +#: instances/views.py:1358 +msgid "First you need to create or select an image" +msgstr "" + +#: instances/views.py:1377 +msgid "Invalid cache mode" +msgstr "" + +#: instances/views.py:1414 +msgid "Instance is created" +msgstr "" + +#: instances/views.py:1433 +msgid "Flavor Created" +msgstr "" + +#: instances/views.py:1441 +msgid "Create Flavor" +msgstr "" + +#: instances/views.py:1452 +msgid "Flavor Updated" +msgstr "" + +#: instances/views.py:1460 +msgid "Update Flavor" +msgstr "" + +#: instances/views.py:1470 +msgid "Flavor Deleted" +msgstr "" + #: interfaces/forms.py:25 msgid "The IPv4 address must not contain any special characters" msgstr "" @@ -2914,6 +2900,17 @@ msgstr "" msgid "hotplug" msgstr "" +#: interfaces/templates/create_iface_block.html:44 +#: interfaces/templates/interface.html:77 +#: interfaces/templates/interfaces.html:62 +#: storages/templates/create_stg_block.html:35 +#: storages/templates/create_stg_block.html:64 +#: storages/templates/create_stg_block.html:93 +#: storages/templates/create_stg_block.html:158 +#: storages/templates/storages.html:64 +msgid "Type" +msgstr "" + #: interfaces/templates/create_iface_block.html:47 msgid "bridge" msgstr "" @@ -2992,12 +2989,12 @@ msgstr "" #: interfaces/templates/interface.html:56 #: interfaces/templates/interface.html:79 networks/templates/network.html:48 -#: storages/templates/storage.html:58 +#: storages/templates/storage.html:57 msgid "State" msgstr "" #: interfaces/templates/interface.html:63 networks/templates/network.html:55 -#: storages/templates/storage.html:66 +#: storages/templates/storage.html:65 msgid "Stop" msgstr "" @@ -3013,19 +3010,19 @@ msgstr "" msgid "Hypervisor doesn't have any Interfaces" msgstr "" -#: logs/models.py:5 +#: logs/models.py:6 msgid "user" msgstr "" -#: logs/models.py:6 +#: logs/models.py:7 msgid "instance" msgstr "" -#: logs/models.py:7 +#: logs/models.py:8 msgid "message" msgstr "" -#: logs/models.py:8 +#: logs/models.py:9 msgid "date" msgstr "" @@ -3041,11 +3038,11 @@ msgstr "" msgid "No IPv6 subnet has been entered" msgstr "" -#: networks/forms.py:24 storages/forms.py:25 +#: networks/forms.py:24 storages/forms.py:22 msgid "The pool name must not contain any special characters" msgstr "" -#: networks/forms.py:26 storages/forms.py:27 +#: networks/forms.py:26 storages/forms.py:24 msgid "The pool name must not exceed 20 characters" msgstr "" @@ -3214,6 +3211,17 @@ msgstr "" msgid "IPv4 Fixed Addresses" msgstr "" +#: networks/templates/network.html:161 networks/templates/network.html:271 +#: nwfilters/templates/nwfilters.html:88 +msgid "Show" +msgstr "" + +#: networks/templates/network.html:169 networks/templates/network.html:279 +#: venv/lib/python3.6/site-packages/django/forms/widgets.py:395 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:377 +msgid "Clear" +msgstr "" + #: networks/templates/network.html:192 networks/templates/network.html:301 msgid "Edit entry" msgstr "" @@ -3395,7 +3403,7 @@ msgid "Private" msgstr "" #: secrets/templates/create_secret_block.html:36 -#: storages/templates/storage.html:56 +#: storages/templates/storage.html:55 msgid "Usage" msgstr "" @@ -3420,27 +3428,27 @@ msgstr "" msgid "Value" msgstr "" -#: storages/forms.py:10 storages/forms.py:39 +#: storages/forms.py:9 storages/forms.py:36 msgid "No path has been entered" msgstr "" -#: storages/forms.py:36 +#: storages/forms.py:33 msgid "The target must not contain any special characters" msgstr "" -#: storages/forms.py:48 +#: storages/forms.py:45 msgid "No device or path has been entered" msgstr "" -#: storages/forms.py:50 +#: storages/forms.py:47 msgid "The disk source must not contain any special characters" msgstr "" -#: storages/forms.py:66 storages/forms.py:85 +#: storages/forms.py:61 storages/forms.py:76 msgid "The image name must not contain any special characters" msgstr "" -#: storages/forms.py:68 storages/forms.py:87 +#: storages/forms.py:78 msgid "The image name must not exceed 120 characters" msgstr "" @@ -3509,66 +3517,63 @@ msgstr "" msgid "Local Path" msgstr "" -#: storages/templates/create_stg_vol_block.html:14 +#: storages/templates/create_stg_vol_block.html:15 msgid "Upload ISO Image" msgstr "" -#: storages/templates/create_stg_vol_block.html:28 +#: storages/templates/create_stg_vol_block.html:29 msgid "Upload" msgstr "" -#: storages/templates/create_stg_vol_block.html:45 +#: storages/templates/create_stg_vol_block.html:46 msgid "Add New Volume" msgstr "" -#: storages/templates/create_stg_vol_block.html:60 -#: storages/templates/storage.html:144 -msgid "qcow2" -msgstr "" - -#: storages/templates/create_stg_vol_block.html:61 -#: storages/templates/storage.html:143 -msgid "qcow" -msgstr "" - -#: storages/templates/create_stg_vol_block.html:62 -#: storages/templates/storage.html:142 -msgid "raw" -msgstr "" - -#: storages/templates/storage.html:46 +#: storages/templates/storage.html:45 msgid "Pool name" msgstr "" -#: storages/templates/storage.html:48 +#: storages/templates/storage.html:47 msgid "Pool type" msgstr "" -#: storages/templates/storage.html:50 +#: storages/templates/storage.html:49 msgid "Pool path" msgstr "" -#: storages/templates/storage.html:52 +#: storages/templates/storage.html:51 msgid "Pool status" msgstr "" -#: storages/templates/storage.html:87 storages/templates/storages.html:68 +#: storages/templates/storage.html:86 storages/templates/storages.html:68 msgid "Volumes" msgstr "" -#: storages/templates/storage.html:99 +#: storages/templates/storage.html:98 msgid "Allocated" msgstr "" -#: storages/templates/storage.html:120 +#: storages/templates/storage.html:119 msgid "Clone image" msgstr "" -#: storages/templates/storage.html:133 +#: storages/templates/storage.html:132 msgid "Convert" msgstr "" -#: storages/templates/storage.html:189 +#: storages/templates/storage.html:141 +msgid "raw" +msgstr "" + +#: storages/templates/storage.html:142 +msgid "qcow" +msgstr "" + +#: storages/templates/storage.html:143 +msgid "qcow2" +msgstr "" + +#: storages/templates/storage.html:188 msgid "Hypervisor doesn't have any Volumes" msgstr "" @@ -3576,44 +3581,44 @@ msgstr "" msgid "Hypervisor doesn't have any Storages" msgstr "" -#: storages/views.py:38 +#: storages/views.py:40 msgid "Pool name already use" msgstr "" -#: storages/views.py:42 +#: storages/views.py:44 msgid "You need create secret for pool" msgstr "" -#: storages/views.py:45 +#: storages/views.py:47 msgid "You need input all fields for creating ceph pool" msgstr "" -#: storages/views.py:153 -#, python-brace-format -msgid "Image file {name} is created successfully" -msgstr "" - -#: storages/views.py:165 +#: storages/views.py:129 #, python-brace-format msgid "Volume: {volname} is deleted." msgstr "" -#: storages/views.py:171 +#: storages/views.py:134 msgid "ISO image already exist" msgstr "" -#: storages/views.py:175 +#: storages/views.py:138 msgid "ISO: {request.FILES['file']} is uploaded." msgstr "" -#: storages/views.py:184 +#: storages/views.py:147 msgid "Name of volume already in use" msgstr "" -#: storages/views.py:195 +#: storages/views.py:157 msgid "{data['image']} image cloned as {name} successfully" msgstr "" +#: storages/views.py:196 +#, python-brace-format +msgid "Image file {name} is created successfully" +msgstr "" + #: templates/403.html:3 msgid "403" msgstr "" @@ -3660,6 +3665,10 @@ msgid "" "to complete you request." msgstr "" +#: templates/common/confirm_delete.html:12 +msgid "Are you sure you want to delete" +msgstr "" + #: templates/errors_block.html:8 msgid "Error" msgstr "" @@ -3683,57 +3692,71 @@ msgid "close" msgstr "" #: venv/lib/python3.6/site-packages/django/contrib/messages/apps.py:7 +#: venv2/lib/python2.7/site-packages/django/contrib/messages/apps.py:7 msgid "Messages" msgstr "" #: venv/lib/python3.6/site-packages/django/contrib/sitemaps/apps.py:7 +#: venv2/lib/python2.7/site-packages/django/contrib/sitemaps/apps.py:7 msgid "Site Maps" msgstr "" #: venv/lib/python3.6/site-packages/django/contrib/staticfiles/apps.py:9 +#: venv2/lib/python2.7/site-packages/django/contrib/staticfiles/apps.py:7 msgid "Static Files" msgstr "" #: venv/lib/python3.6/site-packages/django/contrib/syndication/apps.py:7 +#: venv2/lib/python2.7/site-packages/django/contrib/syndication/apps.py:7 msgid "Syndication" msgstr "" #: venv/lib/python3.6/site-packages/django/core/paginator.py:45 +#: venv2/lib/python2.7/site-packages/django/core/paginator.py:43 msgid "That page number is not an integer" msgstr "" #: venv/lib/python3.6/site-packages/django/core/paginator.py:47 +#: venv2/lib/python2.7/site-packages/django/core/paginator.py:45 msgid "That page number is less than 1" msgstr "" #: venv/lib/python3.6/site-packages/django/core/paginator.py:52 +#: venv2/lib/python2.7/site-packages/django/core/paginator.py:50 msgid "That page contains no results" msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:31 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:34 msgid "Enter a valid value." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:102 #: venv/lib/python3.6/site-packages/django/forms/fields.py:658 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:107 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:671 msgid "Enter a valid URL." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:154 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:160 msgid "Enter a valid integer." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:165 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:171 msgid "Enter a valid email address." msgstr "" #. Translators: "letters" means latin letters: a-z and A-Z. #: venv/lib/python3.6/site-packages/django/core/validators.py:239 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:245 msgid "" "Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:246 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:252 msgid "" "Enter a valid 'slug' consisting of Unicode letters, numbers, underscores, or " "hyphens." @@ -3741,39 +3764,51 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:255 #: venv/lib/python3.6/site-packages/django/core/validators.py:275 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:257 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:277 msgid "Enter a valid IPv4 address." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:260 #: venv/lib/python3.6/site-packages/django/core/validators.py:276 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:262 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:278 msgid "Enter a valid IPv6 address." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:270 #: venv/lib/python3.6/site-packages/django/core/validators.py:274 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:272 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:276 msgid "Enter a valid IPv4 or IPv6 address." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:304 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:308 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1131 msgid "Enter only digits separated by commas." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:310 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:314 #, python-format msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:342 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:345 #, python-format msgid "Ensure this value is less than or equal to %(limit_value)s." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:351 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:354 #, python-format msgid "Ensure this value is greater than or equal to %(limit_value)s." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:361 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:364 #, python-format msgid "" "Ensure this value has at least %(limit_value)d character (it has " @@ -3785,6 +3820,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:376 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:379 #, python-format msgid "" "Ensure this value has at most %(limit_value)d character (it has " @@ -3798,10 +3834,13 @@ msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:395 #: venv/lib/python3.6/site-packages/django/forms/fields.py:290 #: venv/lib/python3.6/site-packages/django/forms/fields.py:325 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:303 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:340 msgid "Enter a number." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:397 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:399 #, python-format msgid "Ensure that there are no more than %(max)s digit in total." msgid_plural "Ensure that there are no more than %(max)s digits in total." @@ -3809,6 +3848,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:402 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:404 #, python-format msgid "Ensure that there are no more than %(max)s decimal place." msgid_plural "Ensure that there are no more than %(max)s decimal places." @@ -3816,6 +3856,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:407 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:409 #, python-format msgid "" "Ensure that there are no more than %(max)s digit before the decimal point." @@ -3825,6 +3866,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:469 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:463 #, python-format msgid "" "File extension '%(extension)s' is not allowed. Allowed extensions are: " @@ -3837,28 +3879,35 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/base.py:1162 #: venv/lib/python3.6/site-packages/django/forms/models.py:756 +#: venv2/lib/python2.7/site-packages/django/db/models/base.py:1209 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:749 msgid "and" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/base.py:1164 +#: venv2/lib/python2.7/site-packages/django/db/models/base.py:1211 #, python-format msgid "%(model_name)s with this %(field_labels)s already exists." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:104 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:116 #, python-format msgid "Value %(value)r is not a valid choice." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:105 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:117 msgid "This field cannot be null." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:106 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:118 msgid "This field cannot be blank." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:107 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:119 #, python-format msgid "%(model_name)s with this %(field_label)s already exists." msgstr "" @@ -3866,33 +3915,42 @@ msgstr "" #. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. #. Eg: "Title must be unique for pub_date year" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:111 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:123 #, python-format msgid "" "%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:128 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:140 #, python-format msgid "Field of type: %(field_type)s" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:905 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1772 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:901 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1809 msgid "Integer" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:909 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1770 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:905 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1807 #, python-format msgid "'%(value)s' value must be an integer." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:984 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1850 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:978 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1878 msgid "Big (8 byte) integer" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:996 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:990 #, python-format msgid "'%(value)s' value must be either True or False." msgstr "" @@ -3903,19 +3961,23 @@ msgid "'%(value)s' value must be either True, False, or None." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:999 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:992 msgid "Boolean (Either True or False)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1040 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1058 #, python-format msgid "String (up to %(max_length)s)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1104 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1115 msgid "Comma-separated integers" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1153 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1172 #, python-format msgid "" "'%(value)s' value has an invalid date format. It must be in YYYY-MM-DD " @@ -3924,6 +3986,8 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1155 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1298 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1174 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1319 #, python-format msgid "" "'%(value)s' value has the correct format (YYYY-MM-DD) but it is an invalid " @@ -3931,10 +3995,12 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1158 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1177 msgid "Date (without time)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1296 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1317 #, python-format msgid "" "'%(value)s' value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." @@ -3942,6 +4008,7 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1300 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1321 #, python-format msgid "" "'%(value)s' value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" @@ -3949,19 +4016,23 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1304 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1325 msgid "Date (with time)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1452 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1475 #, python-format msgid "'%(value)s' value must be a decimal number." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1454 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1477 msgid "Decimal number" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1593 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1628 #, python-format msgid "" "'%(value)s' value has an invalid format. It must be in [DD] [HH:[MM:]]ss[." @@ -3969,66 +4040,81 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1596 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1631 msgid "Duration" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1646 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1683 msgid "Email address" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1669 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1707 msgid "File path" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1735 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1773 #, python-format msgid "'%(value)s' value must be a float." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1737 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1775 msgid "Floating point number" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1866 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1893 msgid "IPv4 address" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1897 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1924 msgid "IP address" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1977 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1978 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2006 #, python-format msgid "'%(value)s' value must be either None, True or False." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1980 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2008 msgid "Boolean (Either True, False or None)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2015 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2071 msgid "Positive integer" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2028 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2083 msgid "Positive small integer" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2042 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2096 #, python-format msgid "Slug (up to %(max_length)s)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2074 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2130 msgid "Small integer" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2081 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2137 msgid "Text" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2109 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2163 #, python-format msgid "" "'%(value)s' value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " @@ -4036,6 +4122,7 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2111 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2165 #, python-format msgid "" "'%(value)s' value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " @@ -4043,18 +4130,22 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2114 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2168 msgid "Time" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2240 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2296 msgid "URL" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2262 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2319 msgid "Raw binary data" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2312 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2366 #, python-format msgid "'%(value)s' is not a valid UUID." msgstr "" @@ -4064,65 +4155,81 @@ msgid "Universally unique identifier" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/files.py:221 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/files.py:228 msgid "File" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:778 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:788 #, python-format msgid "%(model)s instance with %(field)s %(value)r does not exist." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:780 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:790 msgid "Foreign Key (type determined by related field)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:1007 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:1029 msgid "One-to-one relationship" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:1057 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:1104 #, python-format msgid "%(from)s-%(to)s relationship" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:1058 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:1105 #, python-format msgid "%(from)s-%(to)s relationships" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:1100 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:1147 msgid "Many-to-many relationship" msgstr "" #. Translators: If found as last label character, these punctuation #. characters will prevent the default label_suffix to be appended to the label #: venv/lib/python3.6/site-packages/django/forms/boundfield.py:146 +#: venv2/lib/python2.7/site-packages/django/forms/boundfield.py:181 msgid ":?.!" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:53 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:56 msgid "This field is required." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:245 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:258 msgid "Enter a whole number." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:396 #: venv/lib/python3.6/site-packages/django/forms/fields.py:1126 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:418 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:1149 msgid "Enter a valid date." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:420 #: venv/lib/python3.6/site-packages/django/forms/fields.py:1127 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:442 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:1150 msgid "Enter a valid time." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:442 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:464 msgid "Enter a valid date/time." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:471 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:493 msgid "Enter a valid duration." msgstr "" @@ -4132,18 +4239,22 @@ msgid "The number of days must be between {min_days} and {max_days}." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:532 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:547 msgid "No file was submitted. Check the encoding type on the form." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:533 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:548 msgid "No file was submitted." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:534 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:549 msgid "The submitted file is empty." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:536 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:551 #, python-format msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." msgid_plural "" @@ -4152,10 +4263,12 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:539 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:554 msgid "Please either submit a file or check the clear checkbox, not both." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:600 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:619 msgid "" "Upload a valid image. The file you uploaded was either not an image or a " "corrupted image." @@ -4164,6 +4277,9 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:762 #: venv/lib/python3.6/site-packages/django/forms/fields.py:852 #: venv/lib/python3.6/site-packages/django/forms/models.py:1270 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:776 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:872 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1265 #, python-format msgid "Select a valid choice. %(value)s is not one of the available choices." msgstr "" @@ -4171,32 +4287,41 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:853 #: venv/lib/python3.6/site-packages/django/forms/fields.py:968 #: venv/lib/python3.6/site-packages/django/forms/models.py:1269 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:873 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:990 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1264 msgid "Enter a list of values." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:969 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:991 msgid "Enter a complete value." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:1185 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:1208 msgid "Enter a valid UUID." msgstr "" #. Translators: This is the default suffix added to form field labels #: venv/lib/python3.6/site-packages/django/forms/forms.py:86 +#: venv2/lib/python2.7/site-packages/django/forms/forms.py:87 msgid ":" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/forms.py:212 +#: venv2/lib/python2.7/site-packages/django/forms/forms.py:213 #, python-format msgid "(Hidden field %(name)s) %(error)s" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/formsets.py:91 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:97 msgid "ManagementForm data is missing or has been tampered with" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/formsets.py:338 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:355 #, python-format msgid "Please submit %d or fewer forms." msgid_plural "Please submit %d or fewer forms." @@ -4204,6 +4329,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/forms/formsets.py:345 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:362 #, python-format msgid "Please submit %d or more forms." msgid_plural "Please submit %d or more forms." @@ -4212,20 +4338,25 @@ msgstr[1] "" #: venv/lib/python3.6/site-packages/django/forms/formsets.py:371 #: venv/lib/python3.6/site-packages/django/forms/formsets.py:373 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:390 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:392 msgid "Order" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:751 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:744 #, python-format msgid "Please correct the duplicate data for %(field)s." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:755 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:748 #, python-format msgid "Please correct the duplicate data for %(field)s, which must be unique." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:761 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:754 #, python-format msgid "" "Please correct the duplicate data for %(field_name)s which must be unique " @@ -4233,6 +4364,7 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:770 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:763 msgid "Please correct the duplicate values below." msgstr "" @@ -4241,6 +4373,7 @@ msgid "The inline value did not match the parent instance." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:1158 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1154 msgid "Select a valid choice. That choice is not one of the available choices." msgstr "" @@ -4250,6 +4383,7 @@ msgid "\"%(pk)s\" is not a valid value." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/utils.py:162 +#: venv2/lib/python2.7/site-packages/django/forms/utils.py:172 #, python-format msgid "" "%(datetime)s couldn't be interpreted in time zone %(current_timezone)s; it " @@ -4257,23 +4391,29 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/widgets.py:396 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:378 msgid "Currently" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/widgets.py:710 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:704 msgid "Yes" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/widgets.py:711 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:705 msgid "No" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:788 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:851 msgid "yes,no,maybe" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:817 #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:834 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:880 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:897 #, python-format msgid "%(size)d byte" msgid_plural "%(size)d bytes" @@ -4281,327 +4421,401 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:836 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:899 #, python-format msgid "%s KB" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:838 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:901 #, python-format msgid "%s MB" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:840 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:903 #, python-format msgid "%s GB" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:842 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:905 #, python-format msgid "%s TB" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:844 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:907 #, python-format msgid "%s PB" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:62 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:66 msgid "p.m." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:63 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:67 msgid "a.m." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:68 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:72 msgid "PM" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:69 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:73 msgid "AM" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:150 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:158 msgid "midnight" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:152 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:160 msgid "noon" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Monday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Tuesday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Wednesday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Thursday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Friday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:7 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:7 msgid "Saturday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:7 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:7 msgid "Sunday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Mon" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Tue" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Wed" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Thu" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Fri" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:11 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:11 msgid "Sat" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:11 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:11 msgid "Sun" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "January" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "February" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "March" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "April" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "May" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "June" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "July" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "August" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "September" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "October" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "November" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:16 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:20 msgid "December" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "jan" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "feb" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "mar" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "apr" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "may" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "jun" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "jul" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "aug" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "sep" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "oct" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "nov" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "dec" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:23 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:31 msgctxt "abbrev. month" msgid "Jan." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:24 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:32 msgctxt "abbrev. month" msgid "Feb." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:25 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:33 msgctxt "abbrev. month" msgid "March" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:26 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:34 msgctxt "abbrev. month" msgid "April" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:27 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:35 msgctxt "abbrev. month" msgid "May" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:28 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:36 msgctxt "abbrev. month" msgid "June" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:29 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:37 msgctxt "abbrev. month" msgid "July" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:30 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:38 msgctxt "abbrev. month" msgid "Aug." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:31 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:39 msgctxt "abbrev. month" msgid "Sept." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:32 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:40 msgctxt "abbrev. month" msgid "Oct." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:33 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:41 msgctxt "abbrev. month" msgid "Nov." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:34 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:42 msgctxt "abbrev. month" msgid "Dec." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:37 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:45 msgctxt "alt. month" msgid "January" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:38 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:46 msgctxt "alt. month" msgid "February" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:39 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:47 msgctxt "alt. month" msgid "March" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:40 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:48 msgctxt "alt. month" msgid "April" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:41 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:49 msgctxt "alt. month" msgid "May" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:42 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:50 msgctxt "alt. month" msgid "June" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:43 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:51 msgctxt "alt. month" msgid "July" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:44 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:52 msgctxt "alt. month" msgid "August" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:45 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:53 msgctxt "alt. month" msgid "September" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:46 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:54 msgctxt "alt. month" msgid "October" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:47 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:55 msgctxt "alt. month" msgid "November" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:48 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:56 msgctxt "alt. month" msgid "December" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/ipv6.py:8 +#: venv2/lib/python2.7/site-packages/django/utils/ipv6.py:12 msgid "This is not a valid IPv6 address." msgstr "" @@ -4612,16 +4826,20 @@ msgid "%(truncated_text)s…" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/text.py:233 +#: venv2/lib/python2.7/site-packages/django/utils/text.py:251 msgid "or" msgstr "" #. Translators: This string is used as a separator between list elements #: venv/lib/python3.6/site-packages/django/utils/text.py:252 #: venv/lib/python3.6/site-packages/django/utils/timesince.py:83 +#: venv2/lib/python2.7/site-packages/django/utils/text.py:270 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:71 msgid ", " msgstr "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:9 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:11 #, python-format msgid "%d year" msgid_plural "%d years" @@ -4629,6 +4847,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:12 #, python-format msgid "%d month" msgid_plural "%d months" @@ -4636,6 +4855,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:11 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:13 #, python-format msgid "%d week" msgid_plural "%d weeks" @@ -4643,6 +4863,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:12 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:14 #, python-format msgid "%d day" msgid_plural "%d days" @@ -4650,6 +4871,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:13 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:15 #, python-format msgid "%d hour" msgid_plural "%d hours" @@ -4657,6 +4879,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:16 #, python-format msgid "%d minute" msgid_plural "%d minutes" @@ -4664,18 +4887,22 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:72 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:60 msgid "0 minutes" msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:110 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:109 msgid "Forbidden" msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:111 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:110 msgid "CSRF verification failed. Request aborted." msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:115 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:114 msgid "" "You are seeing this message because this HTTPS site requires a 'Referer " "header' to be sent by your Web browser, but none was sent. This header is " @@ -4684,6 +4911,7 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:120 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:119 msgid "" "If you have configured your browser to disable 'Referer' headers, please re-" "enable them, at least for this site, or for HTTPS connections, or for 'same-" @@ -4700,6 +4928,7 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:132 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:124 msgid "" "You are seeing this message because this site requires a CSRF cookie when " "submitting forms. This cookie is required for security reasons, to ensure " @@ -4707,44 +4936,56 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:137 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:129 msgid "" "If you have configured your browser to disable cookies, please re-enable " "them, at least for this site, or for 'same-origin' requests." msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:142 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:134 msgid "More information is available with DEBUG=True." msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:41 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:48 msgid "No year specified" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:61 #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:111 #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:208 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:72 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:132 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:249 msgid "Date out of range" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:90 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:107 msgid "No month specified" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:142 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:169 msgid "No day specified" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:188 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:225 msgid "No week specified" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:338 #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:367 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:387 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:415 #, python-format msgid "No %(verbose_name_plural)s available" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:589 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:669 #, python-format msgid "" "Future %(verbose_name_plural)s not available because %(class_name)s." @@ -4752,39 +4993,47 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:623 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:703 #, python-format msgid "Invalid date string '%(datestr)s' given format '%(format)s'" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/detail.py:54 +#: venv2/lib/python2.7/site-packages/django/views/generic/detail.py:55 #, python-format msgid "No %(verbose_name)s found matching the query" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/list.py:67 +#: venv2/lib/python2.7/site-packages/django/views/generic/list.py:77 msgid "Page is not 'last', nor can it be converted to an int." msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/list.py:72 +#: venv2/lib/python2.7/site-packages/django/views/generic/list.py:82 #, python-format msgid "Invalid page (%(page_number)s): %(message)s" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/list.py:154 +#: venv2/lib/python2.7/site-packages/django/views/generic/list.py:172 #, python-format msgid "Empty list and '%(class_name)s.allow_empty' is False." msgstr "" #: venv/lib/python3.6/site-packages/django/views/static.py:40 +#: venv2/lib/python2.7/site-packages/django/views/static.py:44 msgid "Directory indexes are not allowed here." msgstr "" #: venv/lib/python3.6/site-packages/django/views/static.py:42 +#: venv2/lib/python2.7/site-packages/django/views/static.py:46 #, python-format msgid "\"%(path)s\" does not exist" msgstr "" #: venv/lib/python3.6/site-packages/django/views/static.py:80 +#: venv2/lib/python2.7/site-packages/django/views/static.py:86 #, python-format msgid "Index of %(directory)s" msgstr "" @@ -4836,3 +5085,273 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/views/templates/default_urlconf.html:408 msgid "Connect, get help, or contribute" msgstr "" + +#: venv/lib/python3.6/site-packages/django_icons/renderers/image.py:217 +msgid "Icon of {}" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:58 +msgid "Please enter your OTP token." +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:59 +#, python-brace-format +msgid "Error generating challenge: {0}" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:60 +msgid "The selected OTP device is not interactive" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:61 +#, python-brace-format +msgid "OTP Challenge: {0}" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:62 +msgid "Invalid token. Please make sure you have entered it correctly." +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:64 +#, python-format +msgid "" +"Verification temporarily disabled because of %(failure_count)d failed " +"attempt, please try again soon." +msgid_plural "" +"Verification temporarily disabled because of %(failure_count)d failed " +"attempts, please try again soon." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:67 +msgid "Verification of the token is currently disabled" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:36 +msgid "Please correct the error below." +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:36 +msgid "Please correct the errors below." +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:52 +#, python-format +msgid "" +"You are authenticated as %(username)s, but are not authorized to access this " +"page. Would you like to login to a different account?" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:72 +msgid "OTP Device:" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:77 +msgid "OTP Token:" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:82 +msgid "Forgotten your password or username?" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:86 +msgid "Log in" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:88 +msgid "Get OTP Challenge" +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1093 +msgid "The inline foreign key did not match the parent instance primary key." +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1267 +#, python-format +msgid "\"%(pk)s\" is not a valid value for a primary key." +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/utils/text.py:81 +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s..." +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:520 +msgid "Welcome to Django" +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:521 +msgid "It worked!" +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:522 +msgid "Congratulations on your first Django-powered page." +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:524 +msgid "" +"Next, start your first app by running python manage.py startapp " +"[app_label]." +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:527 +msgid "" +"You're seeing this message because you have DEBUG = True in " +"your Django settings file and you haven't configured any URLs. Get to work!" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:313 +msgid "usage: " +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:821 +msgid ".__call__() not defined" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1105 +#, python-format +msgid "unknown parser %r (choices: %s)" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1146 +#, python-format +msgid "argument \"-\" with mode %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1349 +#, python-format +msgid "cannot merge actions - two groups are named %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1387 +msgid "'required' is an invalid argument for positionals" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1407 +#, python-format +msgid "invalid option string %r: must start with a character %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1428 +#, python-format +msgid "dest= is required for options like %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1445 +#, python-format +msgid "invalid conflict_resolution value: %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1463 +#, python-format +msgid "conflicting option string(s): %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1526 +msgid "mutually exclusive arguments must be optional" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1596 +msgid "positional arguments" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1597 +msgid "optional arguments" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1615 +msgid "show this help message and exit" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1621 +msgid "show program's version number and exit" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1653 +msgid "cannot have multiple subparser arguments" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1705 +#, python-format +msgid "unrecognized arguments: %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1802 +#, python-format +msgid "not allowed with argument %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1848 +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1862 +#, python-format +msgid "ignored explicit argument %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1952 +msgid "too few arguments" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1959 +#, python-format +msgid "argument %s is required" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1973 +#, python-format +msgid "one of the arguments %s is required" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2019 +msgid "expected one argument" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2020 +msgid "expected at most one argument" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2021 +msgid "expected at least one argument" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2023 +#, python-format +msgid "expected %s argument(s)" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2080 +#, python-format +msgid "ambiguous option: %s could match %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2142 +#, python-format +msgid "unexpected option string: %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2243 +#, python-format +msgid "%r is not callable" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2259 +#, python-format +msgid "invalid %s value: %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2269 +#, python-format +msgid "invalid choice: %r (choose from %s)" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2362 +#, python-format +msgid "%s: error: %s\n" +msgstr "" + +#: webvirtcloud/middleware.py:21 +#, python-format +msgid "libvirt Error - %(exception)s" +msgstr "" diff --git a/locale/tr/LC_MESSAGES/django.mo b/locale/tr/LC_MESSAGES/django.mo index 82d3730..e2c548b 100644 Binary files a/locale/tr/LC_MESSAGES/django.mo and b/locale/tr/LC_MESSAGES/django.mo differ diff --git a/locale/tr/LC_MESSAGES/django.po b/locale/tr/LC_MESSAGES/django.po index 62a5072..31059bb 100644 --- a/locale/tr/LC_MESSAGES/django.po +++ b/locale/tr/LC_MESSAGES/django.po @@ -2,278 +2,207 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # catborise , 2020 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-06-12 07:57+0000\n" +"POT-Creation-Date: 2020-07-20 09:29+0000\n" "PO-Revision-Date: 2020-06-09 12:00+0000\n" "Last-Translator: catborise , 2020\n" -"Language-Team: Turkish (https://www.transifex.com/catborise/teams/110663/tr/)\n" +"Language-Team: Turkish (https://www.transifex.com/catborise/teams/110663/" +"tr/)\n" +"Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: accounts/forms.py:10 -msgid "No username has been entered" -msgstr "Kullanıcı adı girilmedi" +#: accounts/forms.py:24 +#, fuzzy +#| msgid "Instance owners" +msgid "Instance owned by another user" +msgstr "Sanal makine sahipleri" -#: accounts/forms.py:13 -msgid "No password has been entered" -msgstr "Parola girilmedi" - -#: accounts/forms.py:19 create/forms.py:23 -msgid "The flavor name must not contain any special characters" +#: accounts/models.py:24 +#, python-format +msgid "Instance \"%(inst)s\" of user %(user)s" msgstr "" -#: accounts/forms.py:21 create/forms.py:25 -msgid "The flavor name must not exceed 20 characters" -msgstr "" - -#: accounts/forms.py:26 create/forms.py:30 -msgid "Flavor name is already use" -msgstr "" - -#: accounts/models.py:22 +#: accounts/models.py:32 msgid "key name" msgstr "anahtar adı" -#: accounts/models.py:23 +#: accounts/models.py:33 msgid "public key" msgstr "açık anahtar" -#: accounts/models.py:32 +#: accounts/models.py:42 msgid "max instances" msgstr "maksimum sanal makineler" -#: accounts/models.py:34 accounts/models.py:41 accounts/models.py:47 -#: accounts/models.py:53 +#: accounts/models.py:44 accounts/models.py:51 accounts/models.py:57 +#: accounts/models.py:63 msgid "-1 for unlimited. Any integer value" msgstr "Herhangi bir değer. Sınırsız için -1." -#: accounts/models.py:39 +#: accounts/models.py:49 msgid "max CPUs" msgstr "maksimum CPUlar" -#: accounts/models.py:45 +#: accounts/models.py:55 msgid "max memory" msgstr "maksimum bellek" -#: accounts/models.py:51 +#: accounts/models.py:61 msgid "max disk size" msgstr "Maksimum disk boyutu" -#: accounts/models.py:89 +#: accounts/models.py:77 msgid "Can change password" msgstr "Parola değiştirebilir" -#: accounts/templates/account.html:3 admin/templates/admin/common/form.html:6 -#: admin/templates/admin/logs.html:32 admin/templates/admin/user_form.html:6 -#: instances/templates/add_instance_owner_block.html:18 -#: instances/templates/allinstances_index_grouped.html:7 -#: instances/templates/allinstances_index_nongrouped.html:6 -#: instances/templates/instance.html:1644 -#: instances/templates/instances.html:71 -msgid "User" -msgstr "Kullanıcı" +#: accounts/templates/account.html:4 accounts/templates/account.html:12 +#, fuzzy +#| msgid "View Profile" +msgid "User Profile" +msgstr "Profili Görüntüle" -#: accounts/templates/account.html:23 accounts/templates/profile.html:98 -msgid "Key name" -msgstr "Anahtar adı" +#: accounts/templates/account.html:21 +#: computes/templates/computes/instances.html:5 +#: computes/templates/computes/instances.html:32 +#: computes/templates/overview.html:16 instances/templates/allinstances.html:5 +#: instances/templates/allinstances.html:9 +#: instances/templates/bottom_bar.html:17 +#: interfaces/templates/interface.html:14 +#: interfaces/templates/interfaces.html:17 networks/templates/network.html:16 +#: networks/templates/networks.html:20 nwfilters/templates/nwfilter.html:15 +#: nwfilters/templates/nwfilters.html:24 secrets/templates/secrets.html:20 +#: storages/templates/storage.html:20 storages/templates/storages.html:20 +#: templates/navbar.html:14 +msgid "Instances" +msgstr "Sanal Makineler" -#: accounts/templates/account.html:24 accounts/templates/profile.html:104 -msgid "Public key" +#: accounts/templates/account.html:24 +#, fuzzy +#| msgid "Public key" +msgid "Public Keys" msgstr "Açık anahtar" -#: accounts/templates/account.html:47 accounts/templates/accounts-list.html:25 -#: accounts/templates/accounts.html:21 -#: admin/templates/admin/group_list.html:24 admin/templates/admin/logs.html:21 -#: admin/templates/admin/user_list.html:25 -#: computes/templates/computes.html:241 -#: create/templates/create_instance_w2.html:70 -#: instances/templates/allinstances.html:33 -#: instances/templates/allinstances.html:49 -#: instances/templates/instances.html:61 -#: interfaces/templates/interfaces.html:47 networks/templates/networks.html:50 -#: nwfilters/templates/nwfilters.html:138 secrets/templates/secrets.html:50 -#: storages/templates/storage.html:189 storages/templates/storages.html:50 -msgid "Warning" -msgstr "Uyarı" - -#: accounts/templates/account.html:47 -msgid "User doesn't have any Instance" -msgstr "Kullanıcının hiç sanal makinesi yok" - -#: accounts/templates/account.html:56 -#: accounts/templates/create_user_inst_block.html:18 -#: admin/templates/admin/logs.html:33 instances/templates/instance.html:4 +#: accounts/templates/account.html:34 admin/templates/admin/logs.html:34 +#: instances/templates/instance.html:4 msgid "Instance" msgstr "Sanal Makine" -#: accounts/templates/account.html:57 accounts/templates/account.html:88 +#: accounts/templates/account.html:35 msgid "VNC" msgstr "VNC" -#: accounts/templates/account.html:58 accounts/templates/account.html:97 -#: instances/templates/instance.html:88 instances/templates/instance.html:412 -#: instances/templates/instance.html:414 instances/templates/instance.html:441 -#: instances/templates/instance.html:476 instances/templates/instance.html:480 -#: instances/templates/instance.html:497 instances/templates/instance.html:499 -#: instances/templates/instance.html:504 +#: accounts/templates/account.html:36 instances/templates/instance.html:87 +#: instances/templates/instances/resize_tab.html:56 +#: instances/templates/instances/resize_tab.html:58 +#: instances/templates/instances/resize_tab.html:85 +#: instances/templates/instances/resize_tab.html:121 +#: instances/templates/instances/resize_tab.html:125 +#: instances/templates/instances/resize_tab.html:151 +#: instances/templates/instances/resize_tab.html:153 +#: instances/templates/instances/resize_tab.html:158 msgid "Resize" msgstr "Boyutlandır" -#: accounts/templates/account.html:59 accounts/templates/account.html:106 -#: accounts/templates/account.html:127 +#: accounts/templates/account.html:37 accounts/templates/account.html:55 #: accounts/templates/accounts-list.html:133 -#: accounts/templates/accounts.html:126 accounts/templates/profile.html:84 -#: admin/templates/admin/common/confirm_delete.html:6 -#: admin/templates/admin/common/confirm_delete.html:16 +#: accounts/templates/accounts.html:126 accounts/templates/profile.html:60 #: admin/templates/admin/common/list.html:22 #: admin/templates/admin/group_list.html:47 -#: admin/templates/admin/user_list.html:67 computes/templates/computes.html:98 -#: computes/templates/computes.html:142 computes/templates/computes.html:190 -#: computes/templates/computes.html:220 instances/templates/instance.html:873 -#: instances/templates/instance.html:880 +#: admin/templates/admin/user_list.html:67 +#: computes/templates/computes/list.html:55 +#: instances/templates/instances/settings_tab.html:310 +#: instances/templates/instances/settings_tab.html:314 #: interfaces/templates/interface.html:61 networks/templates/network.html:53 #: nwfilters/templates/nwfilter.html:114 nwfilters/templates/nwfilter.html:154 #: nwfilters/templates/nwfilters.html:123 secrets/templates/secrets.html:77 -#: storages/templates/storage.html:63 storages/templates/storage.html:176 +#: storages/templates/storage.html:62 storages/templates/storage.html:175 +#: templates/common/confirm_delete.html:6 +#: templates/common/confirm_delete.html:16 #: venv/lib/python3.6/site-packages/django/forms/formsets.py:375 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:394 msgid "Delete" msgstr "Sil" -#: accounts/templates/account.html:60 -#: create/templates/create_instance_w2.html:85 -#: instances/templates/instance.html:556 instances/templates/instance.html:831 +#: accounts/templates/account.html:38 +#: instances/templates/create_instance_w2.html:86 +#: instances/templates/instances/settings_tab.html:239 +#: instances/templates/instances/snapshots_tab.html:49 #: nwfilters/templates/nwfilter.html:104 nwfilters/templates/nwfilter.html:138 #: nwfilters/templates/nwfilters.html:60 secrets/templates/secrets.html:62 -#: storages/templates/storage.html:102 +#: storages/templates/storage.html:101 msgid "Action" msgstr "Eylem" -#: accounts/templates/account.html:81 -msgid "Edit privilegies for" -msgstr "İmtiyazları düzenle" +#: accounts/templates/account.html:50 +msgid "edit" +msgstr "düzenle" -#: accounts/templates/account.html:91 accounts/templates/account.html:100 -#: accounts/templates/account.html:109 -msgid "False" -msgstr "" +#: accounts/templates/account.html:68 accounts/templates/profile.html:74 +msgid "Key name" +msgstr "Anahtar adı" -#: accounts/templates/account.html:116 -#: accounts/templates/accounts-list.html:145 -#: accounts/templates/accounts.html:138 -#: accounts/templates/create_user_block.html:31 -#: accounts/templates/create_user_inst_block.html:29 -#: computes/templates/computes.html:101 computes/templates/computes.html:145 -#: computes/templates/computes.html:193 computes/templates/computes.html:223 -#: create/templates/create_flav_block.html:51 -#: create/templates/create_instance_w2.html:273 -#: instances/templates/add_instance_network_block.html:49 -#: instances/templates/add_instance_owner_block.html:29 -#: instances/templates/add_instance_volume.html:89 -#: instances/templates/add_instance_volume.html:144 -#: instances/templates/create_inst_block.html:34 -#: instances/templates/edit_instance_volume.html:123 -#: instances/templates/instance.html:993 -#: interfaces/templates/create_iface_block.html:135 -#: networks/templates/add_network_qos.html:50 -#: networks/templates/create_net_block.html:84 -#: networks/templates/modify_ipv4_fixed_address.html:44 -#: networks/templates/modify_ipv6_fixed_address.html:44 -#: nwfilters/templates/add_nwf_rule.html:25 -#: nwfilters/templates/create_nwfilter_block.html:23 -#: nwfilters/templates/nwfilters.html:83 -#: nwfilters/templates/nwfilters.html:111 -#: secrets/templates/create_secret_block.html:54 -#: secrets/templates/secrets.html:102 -#: storages/templates/create_stg_block.html:55 -#: storages/templates/create_stg_block.html:84 -#: storages/templates/create_stg_block.html:140 -#: storages/templates/create_stg_block.html:202 -#: storages/templates/create_stg_block.html:230 -#: storages/templates/create_stg_vol_block.html:27 -#: storages/templates/create_stg_vol_block.html:81 -#: storages/templates/storage.html:156 -msgid "Close" -msgstr "Kapat" - -#: accounts/templates/account.html:117 -#: accounts/templates/accounts-list.html:45 -#: accounts/templates/accounts-list.html:148 -#: accounts/templates/accounts.html:36 accounts/templates/accounts.html:141 -#: admin/templates/admin/common/list.html:16 -#: admin/templates/admin/group_list.html:44 -#: admin/templates/admin/user_list.html:61 computes/templates/computes.html:33 -#: networks/templates/network.html:85 nwfilters/templates/nwfilter.html:62 -#: secrets/templates/secrets.html:74 -msgid "Edit" -msgstr "Düzenle" - -#: accounts/templates/account.html:127 accounts/templates/profile.html:84 -#: create/templates/create_instance_w2.html:291 -#: instances/templates/instance.html:581 -#: instances/templates/instance.html:1004 -#: instances/templates/instance.html:1074 -#: instances/templates/instance.html:1079 -#: interfaces/templates/interface.html:61 -#: interfaces/templates/interface.html:63 networks/templates/network.html:53 -#: networks/templates/network.html:55 networks/templates/network.html:65 -#: networks/templates/network.html:139 networks/templates/network.html:192 -#: networks/templates/network.html:197 networks/templates/network.html:252 -#: networks/templates/network.html:301 networks/templates/network.html:306 -#: networks/templates/network.html:356 networks/templates/network.html:361 -#: nwfilters/templates/nwfilter.html:114 nwfilters/templates/nwfilter.html:154 -#: nwfilters/templates/nwfilters.html:123 secrets/templates/secrets.html:77 -#: storages/templates/storage.html:64 storages/templates/storage.html:67 -#: storages/templates/storage.html:79 storages/templates/storage.html:176 -msgid "Are you sure?" -msgstr "Emin misiniz?" +#: accounts/templates/account.html:69 accounts/templates/profile.html:80 +msgid "Public key" +msgstr "Açık anahtar" #: accounts/templates/accounts-list.html:4 #: accounts/templates/accounts-list.html:13 accounts/templates/accounts.html:3 #: accounts/templates/accounts.html:9 admin/templates/admin/group_list.html:5 #: admin/templates/admin/user_list.html:6 -#: admin/templates/admin/user_list.html:16 admin/views.py:83 -#: instances/templates/instance.html:657 templates/navbar.html:29 +#: admin/templates/admin/user_list.html:16 admin/views.py:84 +#: instances/templates/instances/settings_tab.html:63 templates/navbar.html:29 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 +#: computes/templates/computes/instances.html:18 +#: instances/templates/allinstances.html:16 +#: nwfilters/templates/nwfilters.html:11 storages/templates/storage.html:88 +#: templates/search_block.html:3 msgid "Search" msgstr "Ara" -#: accounts/templates/accounts-list.html:25 -#: accounts/templates/accounts.html:21 admin/templates/admin/user_list.html:25 +#: accounts/templates/accounts-list.html:25 accounts/templates/accounts.html:21 +#: admin/templates/admin/group_list.html:24 admin/templates/admin/logs.html:22 +#: admin/templates/admin/user_list.html:25 +#: computes/templates/computes/instances.html:57 +#: computes/templates/computes/list.html:21 +#: instances/templates/create_instance_w2.html:71 +#: interfaces/templates/interfaces.html:47 networks/templates/networks.html:50 +#: nwfilters/templates/nwfilters.html:138 secrets/templates/secrets.html:50 +#: storages/templates/storage.html:188 storages/templates/storages.html:50 +msgid "Warning" +msgstr "Uyarı" + +#: 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ı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 -#: computes/templates/computes.html:127 computes/templates/computes.html:170 +#: accounts/templates/accounts-list.html:33 accounts/templates/profile.html:31 +#: admin/templates/admin/user_list.html:33 msgid "Username" msgstr "Kullanıcı Adı" -#: accounts/templates/accounts-list.html:34 -#: accounts/templates/accounts.html:44 admin/templates/admin/user_list.html:34 -#: computes/templates/computes.html:40 -#: instances/templates/allinstances.html:57 -#: instances/templates/allinstances_index_grouped.html:8 -#: instances/templates/allinstances_index_nongrouped.html:7 -#: instances/templates/instances.html:72 +#: accounts/templates/accounts-list.html:34 accounts/templates/accounts.html:44 +#: admin/templates/admin/user_list.html:34 +#: computes/templates/computes/instances.html:68 +#: computes/templates/computes/list.html:30 +#: instances/templates/allinstances_index_grouped.html:9 +#: instances/templates/allinstances_index_nongrouped.html:9 msgid "Status" msgstr "Durum" @@ -288,57 +217,62 @@ msgid "Superuser" msgstr "Süperkullanıcı" #: accounts/templates/accounts-list.html:37 -#: instances/templates/instance.html:631 -#: instances/templates/instance.html:1444 -#: instances/templates/instance.html:1446 -#: instances/templates/instance_actions.html:7 +#: instances/templates/instance_actions.html:6 +#: instances/templates/instances/settings_tab.html:37 +#: instances/templates/instances/settings_tab.html:783 +#: instances/templates/instances/settings_tab.html:785 #: nwfilters/templates/nwfilters.html:112 -#: nwfilters/templates/nwfilters.html:118 storages/templates/storage.html:157 -#: storages/templates/storage.html:164 +#: nwfilters/templates/nwfilters.html:118 storages/templates/storage.html:156 +#: storages/templates/storage.html:163 msgid "Clone" msgstr "Klonla" -#: accounts/templates/accounts-list.html:51 -#: accounts/templates/accounts.html:48 admin/templates/admin/user_list.html:50 -#: instances/templates/allinstances.html:68 -#: instances/templates/allinstances_index_grouped.html:26 -#: instances/templates/allinstances_index_grouped.html:56 -#: instances/templates/allinstances_index_nongrouped.html:20 -#: instances/templates/instance.html:17 instances/templates/instances.html:85 +#: accounts/templates/accounts-list.html:45 +#: accounts/templates/accounts-list.html:148 +#: accounts/templates/accounts.html:36 accounts/templates/accounts.html:141 +#: admin/templates/admin/common/list.html:16 +#: admin/templates/admin/group_list.html:44 +#: admin/templates/admin/user_list.html:61 +#: computes/templates/computes/list.html:54 networks/templates/network.html:85 +#: nwfilters/templates/nwfilter.html:62 secrets/templates/secrets.html:74 +msgid "Edit" +msgstr "Düzenle" + +#: accounts/templates/accounts-list.html:51 accounts/templates/accounts.html:48 +#: admin/templates/admin/user_list.html:50 +#: computes/templates/computes/instances.html:94 +#: instances/templates/allinstances_index_grouped.html:57 +#: instances/templates/allinstances_index_nongrouped.html:40 +#: instances/templates/instance.html:17 msgid "Active" msgstr "Aktif" -#: accounts/templates/accounts-list.html:53 -#: accounts/templates/accounts.html:50 admin/templates/admin/user_list.html:52 +#: accounts/templates/accounts-list.html:53 accounts/templates/accounts.html:50 +#: admin/templates/admin/user_list.html:52 msgid "Blocked" msgstr "Engelli" -#: accounts/templates/accounts-list.html:71 -#: accounts/templates/accounts.html:63 +#: accounts/templates/accounts-list.html:71 accounts/templates/accounts.html:63 msgid "Edit user info" msgstr "Kullanıcı bilgisi düzenle" -#: accounts/templates/accounts-list.html:76 -#: accounts/templates/accounts.html:69 +#: accounts/templates/accounts-list.html:76 accounts/templates/accounts.html:69 #: accounts/templates/create_user_block.html:18 -#: computes/templates/computes.html:66 computes/templates/computes.html:114 -#: computes/templates/computes.html:157 computes/templates/computes.html:172 -#: computes/templates/computes.html:205 -#: create/templates/create_flav_block.html:19 -#: create/templates/create_instance_w2.html:81 -#: create/templates/create_instance_w2.html:107 -#: create/templates/create_instance_w2.html:110 -#: create/templates/create_instance_w2.html:309 -#: create/templates/create_instance_w2.html:311 -#: create/templates/create_instance_w2.html:522 -#: create/templates/create_instance_w2.html:524 +#: computes/templates/computes/instances.html:66 +#: computes/templates/computes/list.html:29 #: instances/templates/add_instance_volume.html:40 #: instances/templates/add_instance_volume.html:42 -#: instances/templates/allinstances.html:56 -#: instances/templates/allinstances_index_grouped.html:6 +#: instances/templates/allinstances_index_grouped.html:7 #: instances/templates/allinstances_index_nongrouped.html:5 -#: instances/templates/instance.html:554 instances/templates/instance.html:906 -#: instances/templates/instances.html:70 +#: instances/templates/create_instance_w2.html:82 +#: instances/templates/create_instance_w2.html:108 +#: instances/templates/create_instance_w2.html:111 +#: instances/templates/create_instance_w2.html:310 +#: instances/templates/create_instance_w2.html:312 +#: instances/templates/create_instance_w2.html:523 +#: instances/templates/create_instance_w2.html:525 +#: instances/templates/instances/settings_tab.html:340 +#: instances/templates/instances/snapshots_tab.html:47 #: interfaces/templates/create_iface_block.html:18 #: interfaces/templates/interface.html:76 #: networks/templates/create_net_block.html:18 @@ -353,37 +287,31 @@ msgstr "Kullanıcı bilgisi düzenle" #: storages/templates/create_stg_block.html:100 #: storages/templates/create_stg_block.html:165 #: storages/templates/create_stg_block.html:214 -#: storages/templates/create_stg_vol_block.html:20 -#: storages/templates/create_stg_vol_block.html:51 -#: storages/templates/create_stg_vol_block.html:53 -#: storages/templates/storage.html:98 storages/templates/storage.html:126 -#: storages/templates/storage.html:128 +#: storages/templates/create_stg_vol_block.html:21 +#: storages/templates/storage.html:97 storages/templates/storage.html:125 +#: storages/templates/storage.html:127 msgid "Name" msgstr "Ad" -#: accounts/templates/accounts-list.html:83 -#: accounts/templates/accounts.html:76 +#: accounts/templates/accounts-list.html:83 accounts/templates/accounts.html:76 #: accounts/templates/create_user_block.html:24 -#: accounts/templates/login.html:19 computes/templates/computes.html:85 -#: computes/templates/computes.html:176 -#: console/templates/console-spice-full.html:200 -#: instances/templates/instance.html:1293 -#: instances/templates/instance.html:1300 +#: accounts/templates/login.html:19 +#: console/templates/console-spice-full.html:201 +#: console/templates/console-spice-lite.html:58 +#: console/templates/console-spice-lite.html:99 msgid "Password" msgstr "Parola" -#: accounts/templates/accounts-list.html:89 -#: accounts/templates/accounts.html:82 +#: accounts/templates/accounts-list.html:89 accounts/templates/accounts.html:82 msgid "Is staff" msgstr "Görevli mi" -#: accounts/templates/accounts-list.html:95 -#: accounts/templates/accounts.html:88 +#: accounts/templates/accounts-list.html:95 accounts/templates/accounts.html:88 msgid "Is superuser" msgstr "Süperkullanıcı mı" #: accounts/templates/accounts-list.html:101 -#: accounts/templates/accounts.html:94 instances/models.py:25 +#: accounts/templates/accounts.html:94 msgid "Can clone instances" msgstr "Sanal makineleri klonlayabilir" @@ -408,17 +336,74 @@ msgid "Max disk size (GB)" msgstr "Maksimum Disk Boyutu (GB)" #: accounts/templates/accounts-list.html:137 -#: accounts/templates/accounts.html:130 -#: admin/templates/admin/user_list.html:63 +#: accounts/templates/accounts.html:130 admin/templates/admin/user_list.html:63 msgid "Block" msgstr "Engelle" #: accounts/templates/accounts-list.html:141 -#: accounts/templates/accounts.html:134 -#: admin/templates/admin/user_list.html:65 +#: accounts/templates/accounts.html:134 admin/templates/admin/user_list.html:65 msgid "Unblock" msgstr "Engeli Kaldır" +#: accounts/templates/accounts-list.html:145 +#: accounts/templates/accounts.html:138 +#: accounts/templates/create_user_block.html:31 +#: instances/templates/add_instance_network_block.html:49 +#: instances/templates/add_instance_owner_block.html:30 +#: instances/templates/add_instance_volume.html:89 +#: instances/templates/add_instance_volume.html:144 +#: instances/templates/create_flav_block.html:25 +#: instances/templates/create_inst_block.html:34 +#: instances/templates/create_instance_w2.html:274 +#: instances/templates/edit_instance_volume.html:123 +#: instances/templates/instances/settings_tab.html:427 +#: interfaces/templates/create_iface_block.html:135 +#: networks/templates/add_network_qos.html:50 +#: networks/templates/create_net_block.html:84 +#: networks/templates/modify_ipv4_fixed_address.html:44 +#: networks/templates/modify_ipv6_fixed_address.html:44 +#: nwfilters/templates/add_nwf_rule.html:25 +#: nwfilters/templates/create_nwfilter_block.html:23 +#: nwfilters/templates/nwfilters.html:83 nwfilters/templates/nwfilters.html:111 +#: secrets/templates/create_secret_block.html:54 +#: secrets/templates/secrets.html:102 +#: storages/templates/create_stg_block.html:55 +#: storages/templates/create_stg_block.html:84 +#: storages/templates/create_stg_block.html:140 +#: storages/templates/create_stg_block.html:202 +#: storages/templates/create_stg_block.html:230 +#: storages/templates/create_stg_vol_block.html:28 +#: storages/templates/create_stg_vol_block.html:56 +#: storages/templates/storage.html:155 +msgid "Close" +msgstr "Kapat" + +#: accounts/templates/accounts/change_password_form.html:7 +#: accounts/templates/accounts/change_password_form.html:12 +#: accounts/templates/profile.html:21 +#, fuzzy +#| msgid "Can change password" +msgid "Change Password" +msgstr "Parola değiştirebilir" + +#: accounts/templates/accounts/change_password_form.html:22 +#: admin/templates/admin/user_form.html:22 +#: computes/templates/computes/form.html:21 +#: templates/common/confirm_delete.html:14 templates/common/form.html:20 +msgid "Cancel" +msgstr "İptal" + +#: accounts/templates/accounts/change_password_form.html:24 +#: accounts/templates/profile.html:44 +#: instances/templates/instances/settings_tab.html:633 +#: instances/templates/instances/settings_tab.html:637 +#: instances/templates/instances/settings_tab.html:819 +#: instances/templates/instances/settings_tab.html:821 +#: venv/lib/python3.6/site-packages/django/forms/widgets.py:397 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:379 +msgid "Change" +msgstr "Değiştir" + #: accounts/templates/create_user_block.html:13 msgid "Add New User" msgstr "Yeni Kullanıc Ekle" @@ -428,13 +413,13 @@ msgid "john" msgstr "ali" #: accounts/templates/create_user_block.html:32 -#: create/templates/create_instance_w1.html:95 -#: create/templates/create_instance_w2.html:275 -#: create/templates/create_instance_w2.html:277 -#: create/templates/create_instance_w2.html:504 -#: create/templates/create_instance_w2.html:508 -#: create/templates/create_instance_w2.html:717 -#: create/templates/create_instance_w2.html:721 +#: instances/templates/create_instance_w1.html:95 +#: instances/templates/create_instance_w2.html:276 +#: instances/templates/create_instance_w2.html:278 +#: instances/templates/create_instance_w2.html:505 +#: instances/templates/create_instance_w2.html:509 +#: instances/templates/create_instance_w2.html:718 +#: instances/templates/create_instance_w2.html:722 #: interfaces/templates/create_iface_block.html:138 #: networks/templates/create_net_block.html:85 #: networks/templates/modify_ipv4_fixed_address.html:45 @@ -447,29 +432,10 @@ msgstr "ali" #: storages/templates/create_stg_block.html:148 #: storages/templates/create_stg_block.html:205 #: storages/templates/create_stg_block.html:233 -#: storages/templates/create_stg_vol_block.html:82 +#: storages/templates/create_stg_vol_block.html:57 msgid "Create" msgstr "Oluştur" -#: accounts/templates/create_user_inst_block.html:12 -msgid "Add Instance for User" -msgstr "Kullanıcıya sanal makine ekle" - -#: accounts/templates/create_user_inst_block.html:18 -#: console/templates/console-spice-full.html:198 -#: instances/templates/allinstances_index_nongrouped.html:6 -msgid "Host" -msgstr "Sunucu" - -#: accounts/templates/create_user_inst_block.html:30 -#: accounts/templates/profile.html:111 -#: create/templates/create_flav_block.html:54 -#: instances/templates/add_instance_network_block.html:50 -#: instances/templates/add_instance_owner_block.html:30 -#: nwfilters/templates/add_nwf_rule.html:26 -msgid "Add" -msgstr "Ekle" - #: accounts/templates/login.html:3 accounts/templates/logout.html:4 msgid "WebVirtCloud" msgstr "WebVirtCloud" @@ -483,7 +449,7 @@ msgstr "Oturum Aç" msgid "Incorrect username or password." msgstr "Kullanıcı adı veya parola hatalı." -#: accounts/templates/login.html:18 accounts/templates/profile.html:21 +#: accounts/templates/login.html:18 accounts/templates/profile.html:25 msgid "Login" msgstr "Bağlan" @@ -495,73 +461,93 @@ msgstr "Oturumu Kapat" msgid "Successful log out" msgstr "Oturumdan başarıyla çıkıldı" -#: accounts/templates/profile.html:4 accounts/templates/profile.html:9 +#: accounts/templates/profile.html:5 accounts/templates/profile.html:10 #: templates/navbar.html:45 msgid "Profile" msgstr "Profil" -#: accounts/templates/profile.html:18 +#: accounts/templates/profile.html:19 msgid "Edit Profile" msgstr "Profil Düzenle" -#: accounts/templates/profile.html:33 +#: accounts/templates/profile.html:37 msgid "Email" msgstr "E-posta" -#: accounts/templates/profile.html:40 accounts/templates/profile.html:67 -#: computes/templates/computes.html:104 computes/templates/computes.html:148 -#: computes/templates/computes.html:196 computes/templates/computes.html:225 -#: instances/templates/instance.html:1190 -#: instances/templates/instance.html:1194 -#: instances/templates/instance.html:1480 -#: instances/templates/instance.html:1482 -#: venv/lib/python3.6/site-packages/django/forms/widgets.py:397 -msgid "Change" -msgstr "Değiştir" - -#: accounts/templates/profile.html:45 -msgid "Edit Password" -msgstr "Parola Düzenle" - #: accounts/templates/profile.html:48 -msgid "Old" -msgstr "Eski" - -#: accounts/templates/profile.html:54 -msgid "New" -msgstr "Yeni" - -#: accounts/templates/profile.html:60 -msgid "Retry" -msgstr "Yeniden dene" - -#: accounts/templates/profile.html:72 instances/templates/instance.html:266 +#: instances/templates/instances/access_tab.html:23 msgid "SSH Keys" msgstr "SSH Anahtarları" -#: accounts/templates/profile.html:100 +#: accounts/templates/profile.html:60 +#: instances/templates/create_instance_w2.html:292 +#: instances/templates/instances/settings_tab.html:438 +#: instances/templates/instances/settings_tab.html:510 +#: instances/templates/instances/settings_tab.html:520 +#: instances/templates/instances/snapshots_tab.html:75 +#: interfaces/templates/interface.html:61 +#: interfaces/templates/interface.html:63 networks/templates/network.html:53 +#: networks/templates/network.html:55 networks/templates/network.html:65 +#: networks/templates/network.html:139 networks/templates/network.html:192 +#: networks/templates/network.html:197 networks/templates/network.html:252 +#: networks/templates/network.html:301 networks/templates/network.html:306 +#: networks/templates/network.html:356 networks/templates/network.html:361 +#: nwfilters/templates/nwfilter.html:114 nwfilters/templates/nwfilter.html:154 +#: nwfilters/templates/nwfilters.html:123 secrets/templates/secrets.html:77 +#: storages/templates/storage.html:63 storages/templates/storage.html:66 +#: storages/templates/storage.html:78 storages/templates/storage.html:175 +msgid "Are you sure?" +msgstr "Emin misiniz?" + +#: accounts/templates/profile.html:76 msgid "Enter Name" msgstr "Ad gir" -#: accounts/templates/profile.html:106 +#: accounts/templates/profile.html:82 msgid "Enter Public Key" msgstr "Açık Anahtar Gir" -#: accounts/views.py:52 +#: accounts/templates/profile.html:87 +#: instances/templates/add_instance_network_block.html:50 +#: instances/templates/add_instance_owner_block.html:31 +#: instances/templates/create_flav_block.html:28 +#: nwfilters/templates/add_nwf_rule.html:26 +msgid "Add" +msgstr "Ekle" + +#: accounts/views.py:39 msgid "Key name already exist" msgstr "Anahtar adı zaten mevcut" -#: accounts/views.py:55 +#: accounts/views.py:42 msgid "Public key already exist" msgstr "Açık anahtar zaten mevcut" -#: accounts/views.py:58 +#: accounts/views.py:45 msgid "Invalid characters in public key" msgstr "Açık anahtarda geçersiz karakterler mevcut" -#: accounts/views.py:112 -msgid "Instance already added" -msgstr "Sanal makine zaten eklenmiş" +#: accounts/views.py:77 +#, fuzzy +#| msgid "Password" +msgid "Password Changed" +msgstr "Parola" + +#: accounts/views.py:80 +msgid "Wrong Data Provided" +msgstr "Hatalı Veri" + +#: accounts/views.py:100 +#, fuzzy +#| msgid "Create new instance" +msgid "Create User Instance" +msgstr "Yeni sanal makine oluştur" + +#: accounts/views.py:118 +#, fuzzy +#| msgid "Update User" +msgid "Update User Instance" +msgstr "Kullanıcıyı Güncelle" #: admin/forms.py:46 msgid "Permissions" @@ -572,25 +558,6 @@ msgstr "İzinler" msgid "Groups" msgstr "Gruplar" -#: admin/templates/admin/common/confirm_delete.html:12 -msgid "Are you sure you want to delete" -msgstr "Silmek istediğinize emin misiniz" - -#: admin/templates/admin/common/confirm_delete.html:14 -#: admin/templates/admin/common/form.html:22 -#: admin/templates/admin/user_form.html:22 -#: computes/templates/computes/form.html:22 -msgid "Cancel" -msgstr "İptal" - -#: admin/templates/admin/common/form.html:24 -#: admin/templates/admin/user_form.html:24 -#: computes/templates/computes/form.html:24 -#: instances/templates/edit_instance_volume.html:124 -#: networks/templates/add_network_qos.html:51 -msgid "Save" -msgstr "Kaydet" - #: admin/templates/admin/common/list.html:9 msgid "Create New" msgstr "Yeni Oluştur" @@ -605,34 +572,53 @@ 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 -#: instances/templates/instance.html:909 -#: instances/templates/instance.html:1051 -#: instances/templates/instances.html:75 networks/templates/network.html:178 -#: networks/templates/network.html:287 networks/templates/network.html:335 +#: computes/templates/computes/instances.html:71 +#: computes/templates/computes/list.html:32 +#: instances/templates/allinstances_index_grouped.html:12 +#: instances/templates/allinstances_index_nongrouped.html:12 +#: instances/templates/instances/settings_tab.html:343 +#: instances/templates/instances/settings_tab.html:486 +#: networks/templates/network.html:178 networks/templates/network.html:287 +#: networks/templates/network.html:335 msgid "Actions" msgstr "Eylemler" -#: admin/templates/admin/logs.html:3 admin/templates/admin/logs.html:8 -#: instances/templates/instance.html:1577 templates/navbar.html:31 +#: admin/templates/admin/logs.html:4 admin/templates/admin/logs.html:9 +#: instances/templates/instances/stats_tab.html:13 templates/navbar.html:31 msgid "Logs" msgstr "Loglar" -#: admin/templates/admin/logs.html:21 +#: admin/templates/admin/logs.html:22 msgid "You don't have any Logs" msgstr "Hiç Log kaydınız yok" -#: admin/templates/admin/logs.html:31 instances/templates/instance.html:555 -#: instances/templates/instance.html:1643 +#: admin/templates/admin/logs.html:32 +#: instances/templates/instances/snapshots_tab.html:48 +#: instances/templates/instances/stats_tab.html:83 msgid "Date" msgstr "Tarih" -#: admin/templates/admin/logs.html:34 instances/templates/instance.html:1645 +#: admin/templates/admin/logs.html:33 admin/templates/admin/user_form.html:6 +#: computes/templates/computes/instances.html:67 +#: instances/templates/add_instance_owner_block.html:18 +#: instances/templates/allinstances_index_grouped.html:8 +#: instances/templates/allinstances_index_nongrouped.html:7 +#: instances/templates/instances/stats_tab.html:84 +msgid "User" +msgstr "Kullanıcı" + +#: admin/templates/admin/logs.html:35 +#: instances/templates/instances/stats_tab.html:85 msgid "Message" msgstr "Mesaj" +#: admin/templates/admin/user_form.html:24 +#: computes/templates/computes/form.html:23 +#: instances/templates/edit_instance_volume.html:124 +#: networks/templates/add_network_qos.html:51 templates/common/form.html:22 +msgid "Save" +msgstr "Kaydet" + #: admin/templates/admin/user_list.html:37 msgid "Can Clone" msgstr "Klonlayabilir" @@ -641,19 +627,19 @@ msgstr "Klonlayabilir" msgid "View Profile" msgstr "Profili Görüntüle" -#: admin/views.py:38 +#: admin/views.py:39 msgid "Create Group" msgstr "Grup Oluştur" -#: admin/views.py:56 +#: admin/views.py:57 msgid "Update Group" msgstr "Grubu Güncelle" -#: admin/views.py:108 +#: admin/views.py:110 msgid "Create User" msgstr "Kullanıcı Oluştur" -#: admin/views.py:130 +#: admin/views.py:132 msgid "Update User" msgstr "Kullanıcıyı Güncelle" @@ -869,7 +855,49 @@ msgstr "SSH Erişim Anahtarlarını Göster" msgid "Show access ssh keys" msgstr "SSH Erişim Anahtarlarını Göster" -#: appsettings/models.py:9 computes/models.py:5 instances/models.py:10 +#: appsettings/migrations/0004_auto_20200716_0637.py:11 +#, fuzzy +#| msgid "Console Access" +msgid "Console Scale" +msgstr "Konsol Erişimi" + +#: appsettings/migrations/0004_auto_20200716_0637.py:11 +msgid "Allow console to scaling view" +msgstr "Konsol görüntüsünü ölçeklendirmek için izin ver" + +#: appsettings/migrations/0004_auto_20200716_0637.py:12 +msgid "Console View-Only" +msgstr "Konsolu Sadece Görüntüle" + +#: appsettings/migrations/0004_auto_20200716_0637.py:12 +msgid "Allow only view not modify" +msgstr "Sadece görüntülemeye izin ver düzenlemeye izin verme" + +#: appsettings/migrations/0004_auto_20200716_0637.py:13 +#, fuzzy +#| msgid "Console Access" +msgid "Console Resize Session" +msgstr "Konsol Erişimi" + +#: appsettings/migrations/0004_auto_20200716_0637.py:13 +#, fuzzy +#| msgid "Allow to have multiple owner for instance" +msgid "Allow to resize session for console" +msgstr "Bir sanal makine için çoklu sahip atanmasına izin verir" + +#: appsettings/migrations/0004_auto_20200716_0637.py:14 +#, fuzzy +#| msgid "Console port" +msgid "Console Clip Viewport" +msgstr "Konsol bağlantı noktası" + +#: appsettings/migrations/0004_auto_20200716_0637.py:14 +#, fuzzy +#| msgid "Console port" +msgid "Clip console viewport" +msgstr "Konsol bağlantı noktası" + +#: appsettings/models.py:9 computes/models.py:11 instances/models.py:27 msgid "name" msgstr "ad" @@ -894,19 +922,19 @@ msgstr "tanım" msgid "Edit Settings" msgstr "Ayarları Düzenle" -#: appsettings/templates/appsettings.html:18 +#: appsettings/templates/appsettings.html:17 msgid "App Settings" msgstr "Uygulama Ayarları" -#: appsettings/templates/appsettings.html:22 templates/navbar.html:43 +#: appsettings/templates/appsettings.html:21 templates/navbar.html:43 msgid "Language" msgstr "Dil" -#: appsettings/templates/appsettings.html:55 +#: appsettings/templates/appsettings.html:54 msgid "After change please full refresh page with 'Ctrl + F5' " msgstr "Değişiklikten sonra lütfen 'Ctrl + F5' ile sayfayı yenileyin" -#: appsettings/templates/appsettings.html:60 +#: appsettings/templates/appsettings.html:59 msgid "Other Settings" msgstr "Diğer Ayarlar" @@ -929,96 +957,22 @@ msgstr "{setting.name} değiştirildi. Şimdi: {setting.value}" msgid "FQDN/IP" msgstr "FQDN/IP" -#: computes/forms.py:47 -msgid "No hostname has been entered" -msgstr "Sunucu adı girilmedi" - -#: computes/forms.py:48 -msgid "No IP / Domain name has been entered" -msgstr "IP/Alan adı girilmedi" - -#: computes/forms.py:49 -msgid "No login has been entered" -msgstr "Oturum açma bilgileri girilmedi" - -#: computes/forms.py:57 -msgid "The name of the host must not contain any special characters" -msgstr "Sunucu adı özel karakterler içeremez" - -#: computes/forms.py:59 -msgid "The name of the host must not exceed 20 characters" -msgstr "Sunucu adı 20 karakterden fazla olamaz" - -#: computes/forms.py:67 computes/validators.py:16 -msgid "Hostname must contain only numbers, or the domain name separated by \".\"" -msgstr "Sunucu adı sadece rakam içerebilir, ya da \".\" ile ayrılmış alanlar..." - -#: computes/forms.py:69 computes/validators.py:18 -msgid "Wrong IP address" -msgstr "Hatalı IP adresi" - -#: computes/models.py:6 +#: computes/models.py:12 msgid "hostname" msgstr "sunucuadı" -#: computes/models.py:7 +#: computes/models.py:13 msgid "login" msgstr "kullanıcı" -#: computes/models.py:8 +#: computes/models.py:14 msgid "password" msgstr "parola" -#: computes/models.py:9 +#: computes/models.py:15 msgid "details" msgstr "detaylar" -#: computes/templates/computes.html:3 computes/templates/computes.html:9 -#: templates/navbar.html:18 -msgid "Computes" -msgstr "Sunucular" - -#: computes/templates/computes.html:42 instances/templates/instance.html:1537 -msgid "Connected" -msgstr "Bağlı" - -#: computes/templates/computes.html:44 -msgid "Not Connected" -msgstr "Bağlı değil" - -#: computes/templates/computes.html:46 computes/templates/computes.html:91 -#: 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 "Ayrıntılar" - -#: computes/templates/computes.html:50 -msgid "No details available" -msgstr "Ayrıntı mevcut değil" - -#: computes/templates/computes.html:59 -msgid "Edit connection" -msgstr "Bağlantıyı düzenle" - -#: computes/templates/computes.html:73 computes/templates/computes.html:121 -#: computes/templates/computes.html:164 -msgid "FQDN / IP" -msgstr "FQDN / IP" - -#: computes/templates/computes.html:112 -msgid "" -"Need create ssh authorization key. If you have another SSH port on " -"your server, you can add IP:PORT like '192.168.1.1:2222'." -msgstr "" - -#: computes/templates/computes.html:241 -msgid "Hypervisor doesn't have any Computes" -msgstr "Hipervizör hiçbir Sunucya sahip değil" - #: computes/templates/computes/form.html:6 msgid "Add Compute" msgstr "Sunucu Ekle" @@ -1027,6 +981,141 @@ msgstr "Sunucu Ekle" msgid "Create Compute" msgstr "Sunucu Oluştur" +#: computes/templates/computes/instances.html:29 +#: computes/templates/computes/list.html:50 +#: computes/templates/computes/list.html:52 computes/templates/overview.html:4 +#: computes/templates/overview.html:13 interfaces/templates/interface.html:11 +#: interfaces/templates/interfaces.html:14 networks/templates/network.html:13 +#: networks/templates/networks.html:17 nwfilters/templates/nwfilter.html:12 +#: nwfilters/templates/nwfilters.html:21 secrets/templates/secrets.html:17 +#: storages/templates/storage.html:17 storages/templates/storages.html:17 +msgid "Overview" +msgstr "Genel Görünüm" + +#: computes/templates/computes/instances.html:35 +#: computes/templates/overview.html:19 interfaces/templates/interface.html:17 +#: interfaces/templates/interfaces.html:20 networks/templates/network.html:19 +#: networks/templates/networks.html:23 nwfilters/templates/nwfilter.html:18 +#: nwfilters/templates/nwfilters.html:27 secrets/templates/secrets.html:23 +#: storages/templates/storage.html:23 storages/templates/storages.html:3 +#: storages/templates/storages.html:9 storages/templates/storages.html:23 +msgid "Storages" +msgstr "Depolamalar" + +#: computes/templates/computes/instances.html:38 +#: computes/templates/overview.html:22 interfaces/templates/interface.html:20 +#: interfaces/templates/interfaces.html:23 networks/templates/network.html:22 +#: networks/templates/networks.html:3 networks/templates/networks.html:9 +#: networks/templates/networks.html:26 nwfilters/templates/nwfilter.html:21 +#: nwfilters/templates/nwfilters.html:30 secrets/templates/secrets.html:26 +#: storages/templates/storage.html:26 storages/templates/storages.html:26 +msgid "Networks" +msgstr "Ağlar" + +#: computes/templates/computes/instances.html:41 +#: computes/templates/overview.html:25 interfaces/templates/interface.html:23 +#: interfaces/templates/interfaces.html:4 +#: interfaces/templates/interfaces.html:26 networks/templates/network.html:25 +#: networks/templates/networks.html:29 nwfilters/templates/nwfilter.html:24 +#: nwfilters/templates/nwfilters.html:33 secrets/templates/secrets.html:29 +#: storages/templates/storage.html:29 storages/templates/storages.html:29 +msgid "Interfaces" +msgstr "Arabirimler" + +#: computes/templates/computes/instances.html:44 +#: computes/templates/overview.html:28 interfaces/templates/interface.html:26 +#: interfaces/templates/interfaces.html:29 networks/templates/network.html:28 +#: networks/templates/networks.html:32 nwfilters/templates/nwfilter.html:4 +#: nwfilters/templates/nwfilter.html:27 nwfilters/templates/nwfilters.html:4 +#: nwfilters/templates/nwfilters.html:13 nwfilters/templates/nwfilters.html:36 +#: secrets/templates/secrets.html:32 storages/templates/storage.html:32 +#: storages/templates/storages.html:32 +msgid "NWFilters" +msgstr "AğFiltreleri" + +#: computes/templates/computes/instances.html:47 +#: computes/templates/overview.html:31 interfaces/templates/interface.html:29 +#: interfaces/templates/interfaces.html:32 networks/templates/network.html:31 +#: networks/templates/networks.html:35 nwfilters/templates/nwfilter.html:30 +#: nwfilters/templates/nwfilters.html:39 secrets/templates/secrets.html:4 +#: secrets/templates/secrets.html:13 secrets/templates/secrets.html:35 +#: storages/templates/create_stg_block.html:124 +#: storages/templates/storage.html:35 storages/templates/storages.html:35 +msgid "Secrets" +msgstr "Parolalar" + +#: computes/templates/computes/instances.html:58 +msgid "Hypervisor doesn't have any Instances" +msgstr "Hipervizör üzerinde hiç sanal makine yok" + +#: computes/templates/computes/instances.html:66 +#: instances/templates/allinstances_index_grouped.html:7 +#: instances/templates/allinstances_index_nongrouped.html:5 +#: instances/templates/instances/settings_tab.html:777 +#: instances/templates/instances/settings_tab.html:800 +msgid "Description" +msgstr "Tanım" + +#: computes/templates/computes/instances.html:69 +#: instances/templates/allinstances_index_grouped.html:10 +#: instances/templates/allinstances_index_nongrouped.html:10 +#: instances/templates/create_instance_w2.html:83 +#: instances/templates/create_instance_w2.html:328 +#: instances/templates/create_instance_w2.html:541 +#: instances/templates/instance.html:40 instances/templates/instance.html:42 +msgid "VCPU" +msgstr "VCPU" + +#: computes/templates/computes/instances.html:70 +#: computes/templates/overview.html:82 +#: instances/templates/allinstances_index_grouped.html:11 +#: instances/templates/allinstances_index_nongrouped.html:11 +#: instances/templates/instances/resize_tab.html:13 +msgid "Memory" +msgstr "Bellek" + +#: computes/templates/computes/instances.html:96 +#: instances/templates/allinstances_index_grouped.html:58 +#: instances/templates/allinstances_index_nongrouped.html:42 +#: instances/templates/instance.html:14 +msgid "Off" +msgstr "Kapalı" + +#: computes/templates/computes/instances.html:98 +#: instances/templates/allinstances_index_grouped.html:60 +#: instances/templates/allinstances_index_nongrouped.html:44 +#, fuzzy +#| msgid "Suspend" +msgid "Suspended" +msgstr "Duraklat" + +#: computes/templates/computes/list.html:6 +#: computes/templates/computes/list.html:12 templates/navbar.html:18 +msgid "Computes" +msgstr "Sunucular" + +#: computes/templates/computes/list.html:21 +#, fuzzy +#| msgid "You don't have any groups" +msgid "You don't have any computes" +msgstr "Hiç grubunuz yok" + +#: computes/templates/computes/list.html:31 computes/templates/overview.html:92 +#: instances/templates/instances/settings_tab.html:163 +#: instances/templates/instances/settings_tab.html:248 +msgid "Details" +msgstr "Ayrıntılar" + +#: computes/templates/computes/list.html:42 +#: instances/templates/allinstances_index_grouped.html:28 +#: instances/templates/instances/settings_tab.html:876 +msgid "Connected" +msgstr "Bağlı" + +#: computes/templates/computes/list.html:42 +msgid "Not Connected" +msgstr "Bağlı değil" + #: computes/templates/create_comp_block.html:5 msgid "TCP" msgstr "TCP" @@ -1047,81 +1136,6 @@ msgstr "Yerel" msgid "Add new host" msgstr "Yeni sunucu ekle" -#: computes/templates/overview.html:4 computes/templates/overview.html:13 -#: instances/templates/instances.html:30 -#: interfaces/templates/interface.html:11 -#: interfaces/templates/interfaces.html:14 networks/templates/network.html:13 -#: networks/templates/networks.html:17 nwfilters/templates/nwfilter.html:12 -#: nwfilters/templates/nwfilters.html:21 secrets/templates/secrets.html:17 -#: storages/templates/storage.html:17 storages/templates/storages.html:17 -msgid "Overview" -msgstr "Genel Görünüm" - -#: computes/templates/overview.html:16 instances/templates/allinstances.html:4 -#: instances/templates/allinstances.html:20 -#: instances/templates/bottom_bar.html:17 instances/templates/instances.html:4 -#: instances/templates/instances.html:33 -#: interfaces/templates/interface.html:14 -#: interfaces/templates/interfaces.html:17 networks/templates/network.html:16 -#: networks/templates/networks.html:20 nwfilters/templates/nwfilter.html:15 -#: nwfilters/templates/nwfilters.html:24 secrets/templates/secrets.html:20 -#: storages/templates/storage.html:20 storages/templates/storages.html:20 -#: templates/navbar.html:14 -msgid "Instances" -msgstr "Sanal Makineler" - -#: computes/templates/overview.html:19 instances/templates/instances.html:36 -#: interfaces/templates/interface.html:17 -#: interfaces/templates/interfaces.html:20 networks/templates/network.html:19 -#: networks/templates/networks.html:23 nwfilters/templates/nwfilter.html:18 -#: nwfilters/templates/nwfilters.html:27 secrets/templates/secrets.html:23 -#: storages/templates/storage.html:23 storages/templates/storages.html:3 -#: storages/templates/storages.html:9 storages/templates/storages.html:23 -msgid "Storages" -msgstr "Depolamalar" - -#: computes/templates/overview.html:22 instances/templates/instances.html:39 -#: interfaces/templates/interface.html:20 -#: interfaces/templates/interfaces.html:23 networks/templates/network.html:22 -#: networks/templates/networks.html:3 networks/templates/networks.html:9 -#: networks/templates/networks.html:26 nwfilters/templates/nwfilter.html:21 -#: nwfilters/templates/nwfilters.html:30 secrets/templates/secrets.html:26 -#: storages/templates/storage.html:26 storages/templates/storages.html:26 -msgid "Networks" -msgstr "Ağlar" - -#: computes/templates/overview.html:25 instances/templates/instances.html:42 -#: interfaces/templates/interface.html:23 -#: interfaces/templates/interfaces.html:4 -#: interfaces/templates/interfaces.html:26 networks/templates/network.html:25 -#: networks/templates/networks.html:29 nwfilters/templates/nwfilter.html:24 -#: nwfilters/templates/nwfilters.html:33 secrets/templates/secrets.html:29 -#: storages/templates/storage.html:29 storages/templates/storages.html:29 -msgid "Interfaces" -msgstr "Arabirimler" - -#: computes/templates/overview.html:28 instances/templates/instances.html:45 -#: interfaces/templates/interface.html:26 -#: interfaces/templates/interfaces.html:29 networks/templates/network.html:28 -#: networks/templates/networks.html:32 nwfilters/templates/nwfilter.html:4 -#: nwfilters/templates/nwfilter.html:27 nwfilters/templates/nwfilters.html:4 -#: nwfilters/templates/nwfilters.html:13 nwfilters/templates/nwfilters.html:36 -#: secrets/templates/secrets.html:32 storages/templates/storage.html:32 -#: storages/templates/storages.html:32 -msgid "NWFilters" -msgstr "AğFiltreleri" - -#: computes/templates/overview.html:31 instances/templates/instances.html:48 -#: interfaces/templates/interface.html:29 -#: interfaces/templates/interfaces.html:32 networks/templates/network.html:31 -#: networks/templates/networks.html:35 nwfilters/templates/nwfilter.html:30 -#: nwfilters/templates/nwfilters.html:39 secrets/templates/secrets.html:4 -#: secrets/templates/secrets.html:13 secrets/templates/secrets.html:35 -#: storages/templates/create_stg_block.html:124 -#: storages/templates/storage.html:35 storages/templates/storages.html:35 -msgid "Secrets" -msgstr "Parolalar" - #: computes/templates/overview.html:42 msgid "Basic details" msgstr "Temel ayrıntılar" @@ -1155,17 +1169,9 @@ msgstr "Qemu" msgid "Libvirt" msgstr "Libvirt" -#: computes/templates/overview.html:82 -#: instances/templates/allinstances.html:59 -#: instances/templates/allinstances_index_grouped.html:10 -#: instances/templates/allinstances_index_nongrouped.html:9 -#: instances/templates/instance.html:369 instances/templates/instances.html:74 -msgid "Memory" -msgstr "Bellek" - #: computes/templates/overview.html:84 -#: create/templates/create_instance_w1.html:42 -#: create/templates/create_instance_w1.html:58 +#: instances/templates/create_instance_w1.html:42 +#: instances/templates/create_instance_w1.html:58 msgid "Architecture" msgstr "Mimari" @@ -1194,289 +1200,160 @@ msgstr "CPU Kullanımı" msgid "RAM Utilization" msgstr "RAM Kullanımı" +#: computes/validators.py:16 +msgid "" +"Hostname must contain only numbers, or the domain name separated by \".\"" +msgstr "" +"Sunucu adı sadece rakam içerebilir, ya da \".\" ile ayrılmış alanlar..." + +#: computes/validators.py:18 +msgid "Wrong IP address" +msgstr "Hatalı IP adresi" + #: computes/validators.py:24 msgid "The hostname must not contain any special characters" msgstr "Sunucu alan adı herhangi bir özel karakter içeremez" -#: console/templates/console-base.html:69 +#: console/templates/console-base.html:51 msgid "Send key(s)" msgstr "Anahtar(ları) gönder" -#: console/templates/console-base.html:89 +#: console/templates/console-base.html:71 msgid "Fullscreen" msgstr "Tamekran" +#: console/templates/console-spice-full.html:56 +msgid "must set host and port" +msgstr "sunucu adresi ve portu ayarlanmalı" + +#: console/templates/console-spice-full.html:83 +#: console/templates/console-spice-full.html:97 +#: console/templates/console-spice-lite.html:138 +#: console/templates/console-spice-lite.html:150 +#, fuzzy +#| msgid "Disconnected" +msgid "disconnect" +msgstr "Bağlantı yok" + +#: console/templates/console-spice-full.html:114 +#: console/templates/console-spice-lite.html:167 +#, fuzzy +#| msgid "Console type not supported" +msgid "File API is not supported" +msgstr "Konsol tipi desteklenmiyor" + +#: console/templates/console-spice-full.html:197 +#: instances/templates/allinstances_index_nongrouped.html:7 +msgid "Host" +msgstr "Sunucu" + #: console/templates/console-spice-full.html:199 msgid "Port" msgstr "Bağlantı Noktası" -#: console/templates/console-spice-full.html:201 +#: console/templates/console-spice-full.html:207 msgid "Show console" msgstr "Konsol göster" -#: console/templates/console-spice-full.html:202 +#: console/templates/console-spice-full.html:209 #: interfaces/templates/interface.html:60 networks/templates/network.html:52 #: networks/templates/network.html:122 networks/templates/network.html:128 #: networks/templates/network.html:234 networks/templates/network.html:240 -#: storages/templates/storage.html:62 +#: storages/templates/storage.html:61 msgid "Start" msgstr "Başlat" -#: console/templates/console-vnc-full.html:83 +#: console/templates/console-spice-lite.html:109 +msgid "must specify host and port in URL" +msgstr "URL de sunucu adresi ve portu belirtilmelidir" + +#: console/templates/console-vnc-full.html:78 msgid "noVNC encountered an error" msgstr "noVNC bir hatayla karşılaştı" -#: console/templates/console-vnc-lite.html:297 +#: console/templates/console-vnc-lite.html:222 msgid "Loading" msgstr "Yükleniyor" -#: create/forms.py:10 -msgid "No flavor name has been entered" -msgstr "" - -#: create/forms.py:13 create/forms.py:37 -msgid "No VCPU has been entered" -msgstr "VCPU belirtilmedi" - -#: create/forms.py:15 -msgid "No HDD image has been entered" -msgstr "HDD imajı belirtilmedi" - -#: create/forms.py:17 create/forms.py:40 -msgid "No RAM size has been entered" -msgstr "RAM boyutu belirtilmedi" - -#: create/forms.py:34 +#: instances/forms.py:37 msgid "No Virtual Machine name has been entered" msgstr "Sanal makine adı girilmedi" -#: create/forms.py:41 +#: instances/forms.py:39 +msgid "No VCPU has been entered" +msgstr "VCPU belirtilmedi" + +#: instances/forms.py:42 +msgid "No RAM size has been entered" +msgstr "RAM boyutu belirtilmedi" + +#: instances/forms.py:43 msgid "No Network pool has been choosen" msgstr "Ağ havuzu seçilmedi" -#: create/forms.py:46 +#: instances/forms.py:48 msgid "Please select HDD cache mode" msgstr "Lütfen HDD ön bellek modunu seçin" -#: create/forms.py:53 +#: instances/forms.py:55 msgid "Please select a graphics type" msgstr "Lütfen Grafik tipini seçiniz" -#: create/forms.py:54 +#: instances/forms.py:56 msgid "Please select a video driver" msgstr "Lütfen bir video sürücüsü seçin" -#: create/forms.py:61 -msgid "" -"The name of the virtual machine must not contain any special characters" +#: instances/forms.py:63 +msgid "The name of the virtual machine must not contain any special characters" msgstr "Sanal makine adı özel karakterler içeremez" -#: create/forms.py:63 +#: instances/forms.py:65 msgid "The name of the virtual machine must not exceed 20 characters" msgstr "Sanal makine adı 20 karakterden fazla olamaz" -#: create/models.py:5 +#: instances/models.py:11 msgid "label" msgstr "etiket" -#: create/models.py:6 +#: instances/models.py:12 msgid "memory" msgstr "bellek" -#: create/models.py:7 +#: instances/models.py:13 msgid "vcpu" msgstr "vcpu" -#: create/models.py:8 +#: instances/models.py:14 msgid "disk" msgstr "disk" -#: create/templates/create_flav_block.html:13 -msgid "Add New Flavor" -msgstr "" +#: instances/models.py:28 +msgid "uuid" +msgstr "uuid" -#: create/templates/create_flav_block.html:21 -msgid "Micro" -msgstr "Mikro" +#: instances/models.py:29 +msgid "is template" +msgstr "şablon mu" -#: create/templates/create_flav_block.html:26 -#: create/templates/create_instance_w2.html:82 -#: create/templates/create_instance_w2.html:327 -#: create/templates/create_instance_w2.html:540 -#: instances/templates/allinstances.html:58 -#: instances/templates/allinstances_index_grouped.html:9 -#: instances/templates/allinstances_index_nongrouped.html:8 -#: instances/templates/instance.html:40 instances/templates/instance.html:42 -#: instances/templates/instances.html:73 -msgid "VCPU" -msgstr "VCPU" +#: instances/models.py:30 +msgid "created" +msgstr "oluşturuldu" -#: create/templates/create_flav_block.html:33 -#: create/templates/create_instance_w2.html:83 -#: create/templates/create_instance_w2.html:356 -#: create/templates/create_instance_w2.html:567 -#: instances/templates/instance.html:45 -msgid "RAM" -msgstr "RAM" +#: instances/models.py:215 +#, fuzzy +#| msgid "Show access root password" +msgid "Can access console without password" +msgstr "Kök erişim parolasını göster" -#: create/templates/create_flav_block.html:38 -#: create/templates/create_instance_w2.html:94 -#: create/templates/create_instance_w2.html:360 -#: create/templates/create_instance_w2.html:571 -#: instances/templates/allinstances.html:78 -#: instances/templates/instance.html:45 instances/templates/instance.html:450 -#: instances/templates/instance.html:463 -msgid "MB" -msgstr "MB" +#: instances/templates/add_instance_network_block.html:12 +msgid "Add Instance Network" +msgstr "Sanal makine ağı ekle" -#: create/templates/create_flav_block.html:41 -#: create/templates/create_instance_w2.html:84 -#: create/templates/create_instance_w2.html:371 -msgid "HDD" -msgstr "HDD" - -#: create/templates/create_flav_block.html:46 -#: create/templates/create_instance_w2.html:95 -#: instances/templates/add_instance_volume.html:60 -#: storages/templates/create_stg_vol_block.html:71 -msgid "GB" -msgstr "GB" - -#: create/templates/create_instance_w1.html:4 -#: create/templates/create_instance_w2.html:4 -msgid "Create new instance" -msgstr "Yeni sanal makine oluştur" - -#: create/templates/create_instance_w1.html:4 -msgid "Select Type" -msgstr "Tip seçin" - -#: create/templates/create_instance_w1.html:11 -#: create/templates/create_instance_w2.html:13 -#, python-format -msgid "New instance on %(host)s " -msgstr "%(host)s üzerinde yeni sanal makine" - -#: create/templates/create_instance_w1.html:47 -#: instances/templates/instance.html:643 networks/templates/network.html:75 -#: nwfilters/templates/nwfilter.html:52 -msgid "XML" -msgstr "XML" - -#: create/templates/create_instance_w1.html:68 -msgid "Chipset" -msgstr "Yonga" - -#: create/templates/create_instance_w1.html:78 -msgid "Next" -msgstr "İleri" - -#: create/templates/create_instance_w2.html:49 -msgid "Flavor" -msgstr "" - -#: create/templates/create_instance_w2.html:54 -msgid "Custom" -msgstr "Özel" - -#: create/templates/create_instance_w2.html:59 -msgid "Template" -msgstr "Şablon" - -#: create/templates/create_instance_w2.html:70 -msgid "Hypervisor doesn't have any Flavors" -msgstr "" - -#: create/templates/create_instance_w2.html:75 -msgid "Create from flavor" -msgstr "" - -#: create/templates/create_instance_w2.html:101 -msgid "Create Virtual Machine" -msgstr "Sanal Makine Oluştur" - -#: create/templates/create_instance_w2.html:119 -#: create/templates/create_instance_w2.html:316 -#: create/templates/create_instance_w2.html:529 -msgid "Firmware" -msgstr "Üretici yazılımı" - -#: create/templates/create_instance_w2.html:131 -#: create/templates/create_instance_w2.html:334 -#: create/templates/create_instance_w2.html:546 -msgid "VCPU Config" -msgstr "VCPU Konfigi" - -#: create/templates/create_instance_w2.html:134 -#: create/templates/create_instance_w2.html:337 -#: create/templates/create_instance_w2.html:549 -msgid "no-mode" -msgstr "" - -#: create/templates/create_instance_w2.html:153 -#: create/templates/create_instance_w2.html:595 -#: instances/templates/add_instance_volume.html:30 -#: instances/templates/add_instance_volume.html:100 -#: instances/templates/instance.html:829 storages/templates/storage.html:4 -#: storages/templates/storage.html:14 -msgid "Storage" -msgstr "Depolama" - -#: create/templates/create_instance_w2.html:162 -#: create/templates/create_instance_w2.html:190 -#: create/templates/create_instance_w2.html:381 -#: create/templates/create_instance_w2.html:436 -#: create/templates/create_instance_w2.html:584 -#: create/templates/create_instance_w2.html:603 -#: create/templates/create_instance_w2.html:649 -#: instances/templates/add_instance_network_block.html:40 -#: instances/templates/add_instance_volume.html:117 -#: instances/templates/create_inst_block.html:25 -#: instances/templates/instance.html:329 instances/templates/instance.html:776 -#: instances/templates/instance.html:972 -#: instances/templates/instance.html:1649 -#: interfaces/templates/interface.html:42 -#: interfaces/templates/interface.html:44 nwfilters/templates/nwfilter.html:81 -#: storages/templates/create_stg_block.html:132 -#: storages/templates/storage.html:49 storages/templates/storage.html:51 -#: storages/templates/storage.html:53 -msgid "None" -msgstr "Hiçbiri" - -#: create/templates/create_instance_w2.html:168 -#: create/templates/create_instance_w2.html:392 -#: create/templates/create_instance_w2.html:609 -#: instances/templates/add_instance_network_block.html:24 -#: instances/templates/instance.html:624 instances/templates/instance.html:959 -#: networks/templates/network.html:4 networks/templates/network.html:9 -#: networks/templates/network.html:110 networks/templates/network.html:221 -msgid "Network" -msgstr "Ağ" - -#: create/templates/create_instance_w2.html:178 -#: create/templates/create_instance_w2.html:406 -#: create/templates/create_instance_w2.html:619 -#: instances/templates/edit_instance_volume.html:25 -msgid "Advanced" -msgstr "Gelişmiş" - -#: create/templates/create_instance_w2.html:187 -#: create/templates/create_instance_w2.html:433 -#: create/templates/create_instance_w2.html:646 -#: instances/templates/add_instance_network_block.html:37 -#: instances/templates/instance.html:968 nwfilters/templates/nwfilter.html:9 -msgid "NWFilter" -msgstr "AğFiltresi" - -#: create/templates/create_instance_w2.html:198 -#: create/templates/create_instance_w2.html:635 -msgid "HDD cache mode" -msgstr "HDD önbellek modu" - -#: create/templates/create_instance_w2.html:209 #: instances/templates/add_instance_network_block.html:18 -#: instances/templates/instance.html:924 instances/templates/instance.html:947 -#: instances/templates/instance.html:1047 +#: instances/templates/create_instance_w2.html:210 +#: instances/templates/instances/settings_tab.html:358 +#: instances/templates/instances/settings_tab.html:381 +#: instances/templates/instances/settings_tab.html:482 #: interfaces/templates/interface.html:46 #: interfaces/templates/interface.html:75 #: interfaces/templates/interfaces.html:63 @@ -1485,131 +1362,47 @@ msgstr "HDD önbellek modu" msgid "MAC" msgstr "MAC" -#: create/templates/create_instance_w2.html:216 -#: create/templates/create_instance_w2.html:445 -#: create/templates/create_instance_w2.html:658 -msgid "Graphics" -msgstr "Grafikler" +#: instances/templates/add_instance_network_block.html:24 +#: instances/templates/create_instance_w2.html:169 +#: instances/templates/create_instance_w2.html:393 +#: instances/templates/create_instance_w2.html:610 +#: instances/templates/instances/settings_tab.html:30 +#: instances/templates/instances/settings_tab.html:393 +#: networks/templates/network.html:4 networks/templates/network.html:9 +#: networks/templates/network.html:110 networks/templates/network.html:221 +msgid "Network" +msgstr "Ağ" -#: create/templates/create_instance_w2.html:227 -#: create/templates/create_instance_w2.html:456 -#: create/templates/create_instance_w2.html:669 -msgid "Video" -msgstr "Video" +#: instances/templates/add_instance_network_block.html:37 +#: instances/templates/create_instance_w2.html:188 +#: instances/templates/create_instance_w2.html:434 +#: instances/templates/create_instance_w2.html:647 +#: instances/templates/instances/settings_tab.html:402 +#: nwfilters/templates/nwfilter.html:9 +msgid "NWFilter" +msgstr "AğFiltresi" -#: create/templates/create_instance_w2.html:241 -#: create/templates/create_instance_w2.html:470 -#: create/templates/create_instance_w2.html:683 -msgid "Console Access" -msgstr "Konsol Erişimi" - -#: create/templates/create_instance_w2.html:251 -#: create/templates/create_instance_w2.html:253 -#: create/templates/create_instance_w2.html:480 -#: create/templates/create_instance_w2.html:482 -#: create/templates/create_instance_w2.html:693 -#: create/templates/create_instance_w2.html:695 -msgid "Console Password" -msgstr "Konsol Parolası" - -#: create/templates/create_instance_w2.html:257 -#: create/templates/create_instance_w2.html:486 -#: create/templates/create_instance_w2.html:699 -msgid "Guest Agent" -msgstr "Misafir Aracı" - -#: create/templates/create_instance_w2.html:264 -#: create/templates/create_instance_w2.html:493 -#: create/templates/create_instance_w2.html:706 -msgid "VirtIO" -msgstr "VirtIO" - -#: create/templates/create_instance_w2.html:363 -msgid "Added Disks" -msgstr "Eklenen Diskler" - -#: create/templates/create_instance_w2.html:376 -#: create/templates/create_instance_w2.html:579 -msgid "Select pool" -msgstr "Havuz seçin" - -#: create/templates/create_instance_w2.html:415 -#: create/templates/create_instance_w2.html:628 -msgid "Disk Metadata" -msgstr "Disk Metadata" - -#: create/templates/create_instance_w2.html:417 -#: create/templates/create_instance_w2.html:630 -msgid "Metadata preallocation" -msgstr "Metadata öntahsis" - -#: create/templates/create_instance_w2.html:419 -#: create/templates/create_instance_w2.html:632 -#: venv/lib/python3.6/site-packages/django/db/models/fields/files.py:360 -msgid "Image" -msgstr "İmaj" - -#: create/templates/create_instance_w2.html:422 -msgid "HDD Cache Mode" -msgstr "HDD Önbellek Modu" - -#: create/templates/create_instance_w2.html:574 -msgid "Template Disk" -msgstr "Şablon Disk" - -#: create/views.py:52 create/views.py:164 -msgid "A virtual machine with this name already exists" -msgstr "Bu isimde bir sanal makine mevcut" - -#: create/views.py:133 -msgid "You haven't defined any storage pools" -msgstr "Hiç bir depolama havuzu tanımlamadınız" - -#: create/views.py:136 -msgid "You haven't defined any network pools" -msgstr "Hiç bir ağ havuzu tanımlamadınız" - -#: create/views.py:167 -msgid "There is an instance with same name. Are you sure?" -msgstr "Aynı adlı bir sanal makine var. Emin misiniz?" - -#: create/views.py:171 -msgid "No Virtual Machine MAC has been entered" -msgstr "Sanal makine için MAC adresi belirtmediniz" - -#: create/views.py:204 -msgid "Image has already exist. Please check volumes or change instance name" -msgstr "" -"İmaj zaten mevcut. Lütfen ya makine adını değişin ya da disk alanlarını " -"kontrol edin" - -#: create/views.py:230 -msgid "First you need to create or select an image" -msgstr "Ya daha önce oluşturun ya da bir imaj seçin" - -#: create/views.py:252 -msgid "Invalid cache mode" -msgstr "Geçersiz önbellek modu" - -#: create/views.py:290 -msgid "Instance is created" -msgstr "Sanal makine oluşturuldu" - -#: instances/models.py:11 -msgid "uuid" -msgstr "" - -#: instances/models.py:12 -msgid "is template" -msgstr "şablon mu" - -#: instances/models.py:13 -msgid "created" -msgstr "oluşturuldu" - -#: instances/templates/add_instance_network_block.html:12 -msgid "Add Instance Network" -msgstr "Sanal makine ağı ekle" +#: instances/templates/add_instance_network_block.html:40 +#: instances/templates/add_instance_volume.html:117 +#: instances/templates/create_inst_block.html:25 +#: instances/templates/create_instance_w2.html:163 +#: instances/templates/create_instance_w2.html:191 +#: instances/templates/create_instance_w2.html:382 +#: instances/templates/create_instance_w2.html:437 +#: instances/templates/create_instance_w2.html:585 +#: instances/templates/create_instance_w2.html:604 +#: instances/templates/create_instance_w2.html:650 +#: instances/templates/instances/access_tab.html:135 +#: instances/templates/instances/settings_tab.html:183 +#: instances/templates/instances/settings_tab.html:406 +#: instances/templates/instances/stats_tab.html:90 +#: interfaces/templates/interface.html:42 +#: interfaces/templates/interface.html:44 nwfilters/templates/nwfilter.html:81 +#: storages/templates/create_stg_block.html:132 +#: storages/templates/storage.html:48 storages/templates/storage.html:50 +#: storages/templates/storage.html:52 +msgid "None" +msgstr "Hiçbiri" #: instances/templates/add_instance_owner_block.html:12 msgid "Add Instance Owner" @@ -1638,24 +1431,36 @@ msgstr "Mevcut Disk" msgid "Volume parameters" msgstr "Birim parametreleri" +#: instances/templates/add_instance_volume.html:30 +#: instances/templates/add_instance_volume.html:100 +#: instances/templates/create_instance_w2.html:154 +#: instances/templates/create_instance_w2.html:596 +#: instances/templates/instances/settings_tab.html:237 +#: storages/templates/storage.html:4 storages/templates/storage.html:14 +msgid "Storage" +msgstr "Depolama" + #: instances/templates/add_instance_volume.html:46 #: storages/templates/create_stg_block.html:183 -#: storages/templates/create_stg_vol_block.html:57 -#: storages/templates/storage.html:101 storages/templates/storage.html:139 +#: storages/templates/storage.html:100 storages/templates/storage.html:138 msgid "Format" msgstr "Biçem" #: instances/templates/add_instance_volume.html:56 -#: storages/templates/create_stg_vol_block.html:67 -#: storages/templates/storage.html:54 storages/templates/storage.html:100 +#: storages/templates/storage.html:53 storages/templates/storage.html:99 #: storages/templates/storages.html:66 msgid "Size" msgstr "Boyut" +#: instances/templates/add_instance_volume.html:60 +#: instances/templates/create_instance_w2.html:96 +msgid "GB" +msgstr "GB" + #: instances/templates/add_instance_volume.html:63 #: instances/templates/add_instance_volume.html:123 #: instances/templates/edit_instance_volume.html:53 -#: instances/templates/instance.html:763 +#: instances/templates/instances/settings_tab.html:168 msgid "Bus" msgstr "Veriyolu" @@ -1665,9 +1470,8 @@ msgid "Cache" msgstr "Önbellek" #: instances/templates/add_instance_volume.html:83 -#: instances/templates/instance.html:1416 -#: storages/templates/create_stg_vol_block.html:74 -#: storages/templates/storage.html:149 +#: instances/templates/instances/settings_tab.html:755 +#: storages/templates/storage.html:148 msgid "Metadata" msgstr "Metaveri" @@ -1679,56 +1483,23 @@ msgstr "Havuz seç" msgid "Volume" msgstr "Birim" -#: instances/templates/allinstances.html:33 -#: instances/templates/allinstances.html:49 -msgid "You don't have any Instance" -msgstr "Hiç sanal makineniz yok" +#: instances/templates/allinstances.html:24 +msgid "Problem occurred with host" +msgstr "Sunucu ile ilgili bir problem meydana geldi" -#: instances/templates/allinstances.html:71 -#: instances/templates/allinstances_index_grouped.html:57 -#: instances/templates/allinstances_index_nongrouped.html:21 -#: instances/templates/instance.html:14 instances/templates/instances.html:86 -msgid "Off" -msgstr "Kapalı" - -#: instances/templates/allinstances.html:74 -#: instances/templates/allinstances_index_grouped.html:58 -#: instances/templates/allinstances_index_nongrouped.html:22 -#: instances/templates/instance.html:20 instances/templates/instance.html:143 -#: instances/templates/instance.html:198 -#: instances/templates/instance_actions.html:15 -#: instances/templates/instance_actions.html:32 -#: instances/templates/instance_actions.html:49 -#: instances/templates/instances.html:87 instances/views.py:699 -#: instances/views.py:1239 -msgid "Suspend" -msgstr "Duraklat" - -#: instances/templates/allinstances_index_grouped.html:6 -#: instances/templates/allinstances_index_nongrouped.html:5 -#: instances/templates/instance.html:1438 -#: instances/templates/instance.html:1461 -#: instances/templates/instances.html:70 -msgid "Description" -msgstr "Tanım" - -#: instances/templates/allinstances_index_grouped.html:11 +#: instances/templates/allinstances_index_grouped.html:12 msgid "Mem Usage" msgstr "Bellek Kullanımı" -#: instances/templates/allinstances_index_grouped.html:27 -msgid "Not Active" -msgstr "Pasif" - -#: instances/templates/allinstances_index_grouped.html:28 -msgid "Connection Failed" -msgstr "Bağlantı Başarısız" - #: instances/templates/bottom_bar.html:4 msgid "HOST" msgstr "SUNUCU" -#: instances/templates/create_inst_block.html:12 +#: instances/templates/create_flav_block.html:14 +msgid "Add New Flavor" +msgstr "" + +#: instances/templates/create_inst_block.html:11 msgid "Choose a compute for new instance" msgstr "Yeni sanal makine için bir sunucu seç" @@ -1745,6 +1516,183 @@ msgstr "Lütfen seçin" msgid "Choose" msgstr "Seç" +#: instances/templates/create_instance_w1.html:4 +#: instances/templates/create_instance_w2.html:5 +msgid "Create new instance" +msgstr "Yeni sanal makine oluştur" + +#: instances/templates/create_instance_w1.html:4 +msgid "Select Type" +msgstr "Tip seçin" + +#: instances/templates/create_instance_w1.html:11 +#: instances/templates/create_instance_w2.html:14 +#, python-format +msgid "New instance on %(host)s " +msgstr "%(host)s üzerinde yeni sanal makine" + +#: instances/templates/create_instance_w1.html:47 +#: instances/templates/instances/settings_tab.html:49 +#: networks/templates/network.html:75 nwfilters/templates/nwfilter.html:52 +msgid "XML" +msgstr "XML" + +#: instances/templates/create_instance_w1.html:68 +msgid "Chipset" +msgstr "Yonga" + +#: instances/templates/create_instance_w1.html:78 +msgid "Next" +msgstr "İleri" + +#: instances/templates/create_instance_w2.html:50 +msgid "Flavor" +msgstr "" + +#: instances/templates/create_instance_w2.html:55 +msgid "Custom" +msgstr "Özel" + +#: instances/templates/create_instance_w2.html:60 +msgid "Template" +msgstr "Şablon" + +#: instances/templates/create_instance_w2.html:71 +msgid "Hypervisor doesn't have any Flavors" +msgstr "" + +#: instances/templates/create_instance_w2.html:76 +msgid "Create from flavor" +msgstr "" + +#: instances/templates/create_instance_w2.html:84 +#: instances/templates/create_instance_w2.html:357 +#: instances/templates/create_instance_w2.html:568 +#: instances/templates/instance.html:45 +msgid "RAM" +msgstr "RAM" + +#: instances/templates/create_instance_w2.html:85 +#: instances/templates/create_instance_w2.html:372 +msgid "HDD" +msgstr "HDD" + +#: instances/templates/create_instance_w2.html:95 +#: instances/templates/create_instance_w2.html:361 +#: instances/templates/create_instance_w2.html:572 +#: instances/templates/instance.html:45 +#: instances/templates/instances/resize_tab.html:95 +#: instances/templates/instances/resize_tab.html:108 +msgid "MB" +msgstr "MB" + +#: instances/templates/create_instance_w2.html:102 +msgid "Create Virtual Machine" +msgstr "Sanal Makine Oluştur" + +#: instances/templates/create_instance_w2.html:120 +#: instances/templates/create_instance_w2.html:317 +#: instances/templates/create_instance_w2.html:530 +msgid "Firmware" +msgstr "Üretici yazılımı" + +#: instances/templates/create_instance_w2.html:132 +#: instances/templates/create_instance_w2.html:335 +#: instances/templates/create_instance_w2.html:547 +msgid "VCPU Config" +msgstr "VCPU Konfigi" + +#: instances/templates/create_instance_w2.html:135 +#: instances/templates/create_instance_w2.html:338 +#: instances/templates/create_instance_w2.html:550 +msgid "no-mode" +msgstr "mod-yok" + +#: instances/templates/create_instance_w2.html:179 +#: instances/templates/create_instance_w2.html:407 +#: instances/templates/create_instance_w2.html:620 +#: instances/templates/edit_instance_volume.html:25 +msgid "Advanced" +msgstr "Gelişmiş" + +#: instances/templates/create_instance_w2.html:199 +#: instances/templates/create_instance_w2.html:636 +msgid "HDD cache mode" +msgstr "HDD önbellek modu" + +#: instances/templates/create_instance_w2.html:217 +#: instances/templates/create_instance_w2.html:446 +#: instances/templates/create_instance_w2.html:659 +msgid "Graphics" +msgstr "Grafikler" + +#: instances/templates/create_instance_w2.html:228 +#: instances/templates/create_instance_w2.html:457 +#: instances/templates/create_instance_w2.html:670 +msgid "Video" +msgstr "Video" + +#: instances/templates/create_instance_w2.html:242 +#: instances/templates/create_instance_w2.html:471 +#: instances/templates/create_instance_w2.html:684 +msgid "Console Access" +msgstr "Konsol Erişimi" + +#: instances/templates/create_instance_w2.html:252 +#: instances/templates/create_instance_w2.html:254 +#: instances/templates/create_instance_w2.html:481 +#: instances/templates/create_instance_w2.html:483 +#: instances/templates/create_instance_w2.html:694 +#: instances/templates/create_instance_w2.html:696 +msgid "Console Password" +msgstr "Konsol Parolası" + +#: instances/templates/create_instance_w2.html:258 +#: instances/templates/create_instance_w2.html:487 +#: instances/templates/create_instance_w2.html:700 +msgid "Guest Agent" +msgstr "Misafir Aracı" + +#: instances/templates/create_instance_w2.html:265 +#: instances/templates/create_instance_w2.html:494 +#: instances/templates/create_instance_w2.html:707 +msgid "VirtIO" +msgstr "VirtIO" + +#: instances/templates/create_instance_w2.html:364 +msgid "Added Disks" +msgstr "Eklenen Diskler" + +#: instances/templates/create_instance_w2.html:377 +#: instances/templates/create_instance_w2.html:580 +msgid "Select pool" +msgstr "Havuz seçin" + +#: instances/templates/create_instance_w2.html:416 +#: instances/templates/create_instance_w2.html:629 +msgid "Disk Metadata" +msgstr "Disk Metadata" + +#: instances/templates/create_instance_w2.html:418 +#: instances/templates/create_instance_w2.html:631 +msgid "Metadata preallocation" +msgstr "Metadata öntahsis" + +#: instances/templates/create_instance_w2.html:420 +#: instances/templates/create_instance_w2.html:633 +#: venv/lib/python3.6/site-packages/django/db/models/fields/files.py:360 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/files.py:391 +msgid "Image" +msgstr "İmaj" + +#: instances/templates/create_instance_w2.html:423 +msgid "HDD Cache Mode" +msgstr "HDD Önbellek Modu" + +#: instances/templates/create_instance_w2.html:575 +msgid "Template Disk" +msgstr "Şablon Disk" + #: instances/templates/edit_instance_volume.html:3 msgid "Edit Volume" msgstr "Birim Düzenle" @@ -1787,12 +1735,21 @@ msgstr "IO modu" #: instances/templates/edit_instance_volume.html:98 msgid "Discard mode" -msgstr "" +msgstr "Diskard modu" #: instances/templates/edit_instance_volume.html:108 msgid "Detect zeroes" msgstr "Sıfırları yakala" +#: instances/templates/instance.html:20 +#: instances/templates/instance_actions.html:14 +#: instances/templates/instance_actions.html:25 +#: instances/templates/instance_actions.html:37 +#: instances/templates/instances/power_tab.html:25 +#: instances/templates/instances/power_tab.html:82 instances/views.py:287 +msgid "Suspend" +msgstr "Duraklat" + #: instances/templates/instance.html:26 msgid "Guest Agent Enabled & Connected" msgstr "Misafir Aracı Etkin & Bağlı" @@ -1805,8 +1762,9 @@ msgstr "Misafir Aracı Etkin fakat bağlı değil" msgid "Guest Agent Not Enabled & Not Connected" msgstr "Misafir Aracı etkin değil & Bağlanmamış" -#: instances/templates/instance.html:48 instances/templates/instance.html:374 -#: instances/templates/instance.html:610 +#: instances/templates/instance.html:48 +#: instances/templates/instances/resize_tab.html:18 +#: instances/templates/instances/settings_tab.html:16 msgid "Disk" msgstr "Disk" @@ -1818,166 +1776,162 @@ msgstr "Sanal makine bilgilerini yenile" msgid "quota reached" msgstr "kotaya erişildi" -#: instances/templates/instance.html:76 +#: instances/templates/instance.html:75 msgid "Power" msgstr "Güç" -#: instances/templates/instance.html:82 +#: instances/templates/instance.html:81 msgid "Access" msgstr "Erişim" -#: instances/templates/instance.html:95 +#: instances/templates/instance.html:94 msgid "Snapshot" msgstr "Anlık Görüntü" -#: instances/templates/instance.html:102 templates/navbar.html:32 +#: instances/templates/instance.html:101 templates/navbar.html:32 msgid "Settings" msgstr "Ayarlar" -#: instances/templates/instance.html:108 +#: instances/templates/instance.html:107 msgid "Stats" msgstr "İstatistikler" -#: instances/templates/instance.html:114 -#: instances/templates/instance.html:1674 -#: instances/templates/instance.html:1691 -#: instances/templates/instance.html:1695 instances/views.py:421 +#: instances/templates/instance.html:113 +#: instances/templates/instances/destroy_instance_form.html:40 +#: instances/templates/instances/destroy_tab.html:18 +#: instances/templates/instances/destroy_tab.html:20 +#: instances/templates/instances/destroy_tab.html:23 instances/views.py:329 msgid "Destroy" msgstr "Sil" -#: instances/templates/instance.html:127 instances/templates/instance.html:176 -#: instances/templates/instance_actions.html:18 -#: instances/templates/instance_actions.html:52 instances/views.py:387 -#: instances/views.py:1199 -msgid "Power Off" -msgstr "Kapat" - -#: instances/templates/instance.html:132 instances/templates/instance.html:183 -#: instances/templates/instance_actions.html:21 -#: instances/templates/instance_actions.html:38 -#: instances/templates/instance_actions.html:55 instances/views.py:381 -#: instances/views.py:1211 -msgid "Power Cycle" -msgstr "Yeniden başlat" - -#: instances/templates/instance.html:137 instances/templates/instance.html:157 -#: instances/templates/instance.html:190 instances/templates/instance.html:216 -#: instances/templates/instance_actions.html:35 instances/views.py:393 -#: instances/views.py:1206 -msgid "Force Off" -msgstr "Zorla Kapat" - -#: instances/templates/instance.html:152 instances/templates/instance.html:209 -#: instances/templates/instance.html:224 -#: instances/templates/instance_actions.html:29 instances/views.py:705 -#: instances/views.py:1245 -msgid "Resume" -msgstr "Devam ettir" - -#: instances/templates/instance.html:165 instances/templates/instance.html:236 -#: instances/templates/instance.html:238 -#: instances/templates/instance_actions.html:11 -#: instances/templates/instance_actions.html:46 instances/views.py:374 -#: instances/views.py:1193 +#: instances/templates/instance_actions.html:10 +#: instances/templates/instance_actions.html:35 +#: instances/templates/instances/power_tab.html:47 +#: instances/templates/instances/power_tab.html:121 +#: instances/templates/instances/power_tab.html:123 instances/views.py:262 msgid "Power On" msgstr "Başlat" -#: instances/templates/instance.html:174 -msgid "This action sends an ACPI shutdown signal to the instance." -msgstr "Bu eylem sanal makineye bir ACPI kapatma sinyali gönderir." +#: instances/templates/instance_actions.html:15 +#: instances/templates/instances/power_tab.html:9 +#: instances/templates/instances/power_tab.html:59 instances/views.py:278 +msgid "Power Off" +msgstr "Kapat" -#: instances/templates/instance.html:181 -msgid "" -"This action forcibly powers off and start the instance and may cause data " -"corruption." -msgstr "" -"Bu eylem sanal makineyi zorla kapatır ve yeniden başlatır ve bu eylem veri " -"bozulmasına yol açabilir." +#: instances/templates/instance_actions.html:16 +#: instances/templates/instance_actions.html:29 +#: instances/templates/instances/power_tab.html:14 +#: instances/templates/instances/power_tab.html:66 instances/views.py:271 +msgid "Power Cycle" +msgstr "Yeniden başlat" -#: instances/templates/instance.html:188 instances/templates/instance.html:214 -msgid "" -"This action forcibly powers off the instance and may cause data corruption." -msgstr "" -"Bu eylem sanal makineyi zorla kapatır ve bu veri bozulmasına yol açabilir." +#: instances/templates/instance_actions.html:17 +#: instances/templates/instance_actions.html:30 +msgid "VNC Console" +msgstr "VNC Konsol" -#: instances/templates/instance.html:196 -msgid "This action suspends the instance." -msgstr "Bu eylem sanal makineyi duraklatır." +#: instances/templates/instance_actions.html:22 +#: instances/templates/instances/power_tab.html:34 +#: instances/templates/instances/power_tab.html:93 +#: instances/templates/instances/power_tab.html:108 instances/views.py:295 +msgid "Resume" +msgstr "Devam ettir" -#: instances/templates/instance.html:207 -msgid "This action restore the instance after suspend." -msgstr "Bu eylem sanal makineyi sürdürmeye döndürür." +#: instances/templates/instance_actions.html:26 +#: instances/templates/instances/power_tab.html:19 +#: instances/templates/instances/power_tab.html:39 +#: instances/templates/instances/power_tab.html:74 +#: instances/templates/instances/power_tab.html:100 instances/views.py:302 +msgid "Force Off" +msgstr "Zorla Kapat" -#: instances/templates/instance.html:222 -msgid "Administrator blocked your instance." -msgstr "Yönetici sizin sanal makinenizi blokladı." - -#: instances/templates/instance.html:232 -msgid "Click on Power On button to start this instance." -msgstr "Sanal makineyi başlatmak için Başlat tuşuna tıklayın" - -#: instances/templates/instance.html:235 -msgid "Template instance cannot be started." -msgstr "Şablon sanal makine başlatılamaz" - -#: instances/templates/instance.html:253 instances/templates/instance.html:285 -#: instances/templates/instance.html:290 instances/templates/instance.html:291 -#: instances/templates/instance.html:295 instances/templates/instance.html:617 -#: instances/templates/instance_actions.html:58 +#: instances/templates/instance_actions.html:41 +#: instances/templates/instances/access_tab.html:9 +#: instances/templates/instances/access_tab.html:79 +#: instances/templates/instances/access_tab.html:87 +#: instances/templates/instances/access_tab.html:90 +#: instances/templates/instances/access_tab.html:94 +#: instances/templates/instances/settings_tab.html:23 msgid "Console" msgstr "Konsol" -#: instances/templates/instance.html:259 +#: instances/templates/instances/access_tab.html:16 msgid "Root Password" msgstr "Kök Parola" -#: instances/templates/instance.html:273 instances/templates/instance.html:349 +#: instances/templates/instances/access_tab.html:31 +#: instances/templates/instances/access_tab.html:156 msgid "VDI" msgstr "VDI" -#: instances/templates/instance.html:281 +#: instances/templates/instances/access_tab.html:39 +#, fuzzy, python-format +#| msgid "" +#| "This action opens a new window with a VNC connection to the console of " +#| "the instance." msgid "" -"This action opens a new window with a VNC connection to the console of the " -"instance." +" This action opens a new window with a %(type)s connection to the console of " +"the instance." msgstr "Bu eylem sanal makinenin konsoluna bir VNC bağlantısı penceresi açar." -#: instances/templates/instance.html:287 +#: instances/templates/instances/access_tab.html:47 +msgid "Scale" +msgstr "Ölçekle" + +#: instances/templates/instances/access_tab.html:55 +msgid "View Only" +msgstr "Sadece Görüntüle" + +#: instances/templates/instances/access_tab.html:63 +#, fuzzy +#| msgid "Resize Memory" +msgid "Resize Session" +msgstr "Bellek Boyutlandır" + +#: instances/templates/instances/access_tab.html:71 +msgid "View Clipboard" +msgstr "" + +#: instances/templates/instances/access_tab.html:82 msgid "Toggle Dropdown" msgstr "" -#: instances/templates/instance.html:290 instances/templates/instance.html:291 +#: instances/templates/instances/access_tab.html:86 +#: instances/templates/instances/access_tab.html:89 msgid "Console port" msgstr "Konsol bağlantı noktası" -#: instances/templates/instance.html:290 +#: instances/templates/instances/access_tab.html:87 msgid "Lite" msgstr "Hafif" -#: instances/templates/instance.html:291 +#: instances/templates/instances/access_tab.html:90 msgid "Full" msgstr "Tam" -#: instances/templates/instance.html:301 +#: instances/templates/instances/access_tab.html:100 msgid "You need shut down your instance and enter a new root password." msgstr "Sanal makinenizi kapatmalı ve yeni kök parolanızı girmelisiniz." -#: instances/templates/instance.html:305 +#: instances/templates/instances/access_tab.html:107 msgid "Enter Password" msgstr "Parola Gir" -#: instances/templates/instance.html:309 instances/templates/instance.html:311 +#: instances/templates/instances/access_tab.html:112 +#: instances/templates/instances/access_tab.html:115 msgid "Reset Root Password" msgstr "Kök parola sıfırla" -#: instances/templates/instance.html:319 +#: instances/templates/instances/access_tab.html:123 msgid "You need shut down your instance and choose your public key." msgstr "Sanal makinenizi kapatmalı ve açık anahtarınızı seçmelisiniz." -#: instances/templates/instance.html:335 instances/templates/instance.html:337 +#: instances/templates/instances/access_tab.html:142 +#: instances/templates/instances/access_tab.html:144 msgid "Add Public Key" msgstr "Açık Anahtar Ekle" -#: instances/templates/instance.html:345 +#: instances/templates/instances/access_tab.html:152 msgid "" "This action opens a remote viewer with a connection to the console of the " "instance." @@ -1985,641 +1939,668 @@ msgstr "" "Bu eylem sanal makinenin konsoluna bir bağlantı ile uzak görüntüleyiciyi " "açar." -#: instances/templates/instance.html:364 +#: instances/templates/instances/destroy_instance_form.html:4 +#, fuzzy +#| msgid "Destroy" +msgid "Confirm Destroy" +msgstr "Sil" + +#: instances/templates/instances/destroy_instance_form.html:8 +#, fuzzy +#| msgid "Destroy Instance" +msgid "Destroy instance" +msgstr "Sanal makineyi sil" + +#: instances/templates/instances/destroy_instance_form.html:15 +msgid "Instance is suspended, cannot destroy!" +msgstr "Sanal makine duraklatılmış, makine yok edilemez!" + +#: instances/templates/instances/destroy_instance_form.html:19 +msgid "This action is irreversible!" +msgstr "Bu eylem geri döndürülemez!" + +#: instances/templates/instances/destroy_instance_form.html:26 +msgid "Remove Instance's data" +msgstr "Sanal makinenin verisini sil" + +#: instances/templates/instances/destroy_instance_form.html:34 +msgid "Remove Instance's NVRAM" +msgstr "Sanal makine NVRAM'ini sil" + +#: instances/templates/instances/destroy_instance_form.html:46 +#, fuzzy +#| msgid "Destroy Instance" +msgid "You cannot destroy instance!" +msgstr "Sanal makineyi sil" + +#: instances/templates/instances/destroy_tab.html:8 +msgid "Destroy Instance" +msgstr "Sanal makineyi sil" + +#: instances/templates/instances/destroy_tab.html:15 +#, fuzzy +#| msgid "This action restore the instance after suspend." +msgid "This action starts remove instance process" +msgstr "Bu eylem sanal makineyi sürdürmeye döndürür." + +#: instances/templates/instances/power_tab.html:56 +msgid "This action sends an ACPI shutdown signal to the instance." +msgstr "Bu eylem sanal makineye bir ACPI kapatma sinyali gönderir." + +#: instances/templates/instances/power_tab.html:64 +msgid "" +"This action forcibly powers off and start the instance and may cause data " +"corruption." +msgstr "" +"Bu eylem sanal makineyi zorla kapatır ve yeniden başlatır ve bu eylem veri " +"bozulmasına yol açabilir." + +#: instances/templates/instances/power_tab.html:71 +#: instances/templates/instances/power_tab.html:98 +msgid "" +"This action forcibly powers off the instance and may cause data corruption." +msgstr "" +"Bu eylem sanal makineyi zorla kapatır ve bu veri bozulmasına yol açabilir." + +#: instances/templates/instances/power_tab.html:80 +msgid "This action suspends the instance." +msgstr "Bu eylem sanal makineyi duraklatır." + +#: instances/templates/instances/power_tab.html:91 +msgid "This action restore the instance after suspend." +msgstr "Bu eylem sanal makineyi sürdürmeye döndürür." + +#: instances/templates/instances/power_tab.html:106 +msgid "Administrator blocked your instance." +msgstr "Yönetici sizin sanal makinenizi blokladı." + +#: instances/templates/instances/power_tab.html:116 +msgid "Click on Power On button to start this instance." +msgstr "Sanal makineyi başlatmak için Başlat tuşuna tıklayın" + +#: instances/templates/instances/power_tab.html:120 +msgid "Template instance cannot be started." +msgstr "Şablon sanal makine başlatılamaz" + +#: instances/templates/instances/resize_tab.html:8 msgid "CPU" msgstr "CPU" -#: instances/templates/instance.html:385 +#: instances/templates/instances/resize_tab.html:29 msgid "Logical host CPUs" msgstr "Mantıksal Sunucu CPUları" -#: instances/templates/instance.html:387 instances/templates/instance.html:450 -#: instances/templates/instance.html:490 +#: instances/templates/instances/resize_tab.html:31 +#: instances/templates/instances/resize_tab.html:95 +#: instances/templates/instances/resize_tab.html:136 msgid "Current Allocation" msgstr "Mevcut Tahsis" -#: instances/templates/instance.html:401 instances/templates/instance.html:463 +#: instances/templates/instances/resize_tab.html:45 +#: instances/templates/instances/resize_tab.html:108 msgid "Maximum Allocation" msgstr "Maksimum Tahsis" -#: instances/templates/instance.html:419 +#: instances/templates/instances/resize_tab.html:63 msgid "Logical Instance Active/Maximum CPUs" msgstr "Mantıksal sanal makine Aktif/Maksimum CPUları" -#: instances/templates/instance.html:427 instances/templates/instance.html:674 -#: instances/templates/instance.html:689 networks/templates/network.html:65 -#: storages/templates/storage.html:79 +#: instances/templates/instances/resize_tab.html:71 +#: instances/templates/instances/settings_tab.html:79 +#: instances/templates/instances/settings_tab.html:95 +#: networks/templates/network.html:65 storages/templates/storage.html:78 msgid "Disable" msgstr "Devredışı" -#: instances/templates/instance.html:429 +#: instances/templates/instances/resize_tab.html:73 msgid "Constant" msgstr "Sabit" -#: instances/templates/instance.html:431 instances/templates/instance.html:672 -#: instances/templates/instance.html:687 networks/templates/network.html:63 -#: storages/templates/storage.html:76 +#: instances/templates/instances/resize_tab.html:75 +#: instances/templates/instances/settings_tab.html:77 +#: instances/templates/instances/settings_tab.html:91 +#: networks/templates/network.html:63 storages/templates/storage.html:75 msgid "Enable" msgstr "Etkin" -#: instances/templates/instance.html:440 instances/templates/instance.html:479 -#: instances/templates/instance.html:503 +#: instances/templates/instances/resize_tab.html:84 +#: instances/templates/instances/resize_tab.html:124 +#: instances/templates/instances/resize_tab.html:157 msgid "You don't have permission for resizing instance" msgstr "Sanal makineyi yeniden boyutlandırma iznine sahip değilsiniz" -#: instances/templates/instance.html:448 +#: instances/templates/instances/resize_tab.html:93 msgid "Total host memory" msgstr "Toplam sunucu belleği" -#: instances/templates/instance.html:458 instances/templates/instance.html:473 +#: instances/templates/instances/resize_tab.html:103 +#: instances/templates/instances/resize_tab.html:118 msgid "Custom value" msgstr "Özel değer" -#: instances/templates/instance.html:487 +#: instances/templates/instances/resize_tab.html:133 msgid "Disk allocation (GB)" msgstr "Disk Tahsisi (GB)" -#: instances/templates/instance.html:517 instances/templates/instance.html:538 -#: instances/templates/instance.html:540 -msgid "Take Snapshot" -msgstr "Anlık Görüntü Oluştur" +#: instances/templates/instances/resize_tab.html:140 +#: instances/templates/instances/settings_tab.html:269 +msgid "Error getting disk info" +msgstr "Disk bilgisi elde edilirken hata" -#: instances/templates/instance.html:522 -msgid "Manage Snapshots" -msgstr "Anlık Görüntüleri Yönet" - -#: instances/templates/instance.html:530 -msgid "" -"This may take more than an hour, depending on how much content is on your " -"droplet and how large the disk is." -msgstr "" - -#: instances/templates/instance.html:534 -msgid "Enter Snapshot Name" -msgstr "Anlık görüntü adı girin" - -#: instances/templates/instance.html:545 -msgid "To take a snapshot please Power Off the instance." -msgstr "Anlık görüntü oluşturmak için lütfen sanal makinenizi kapatınız." - -#: instances/templates/instance.html:550 -msgid "Choose a snapshot for restore/delete" -msgstr "Geri yükleme/Silmek için bir anlık görüntü seçin" - -#: instances/templates/instance.html:567 -msgid "Revert to this Snapshot" -msgstr "Bu anlık görüntüye dön" - -#: instances/templates/instance.html:572 -msgid "To restore snapshots you need Power Off the instance." -msgstr "Anlık görüntüye dönmek için lütfen sanal makineyi kapatınız." - -#: instances/templates/instance.html:581 -msgid "Delete Snapshot" -msgstr "Anlık Görüntü Sil" - -#: instances/templates/instance.html:592 -msgid "You do not have any snapshots" -msgstr "Hiç anlık görüntünüz yok" - -#: instances/templates/instance.html:605 +#: instances/templates/instances/settings_tab.html:11 msgid "Boot" msgstr "Ön Yükleme" -#: instances/templates/instance.html:638 -#: instances/templates/instance.html:1174 -#: instances/templates/instance.html:1176 +#: instances/templates/instances/settings_tab.html:44 +#: instances/templates/instances/settings_tab.html:616 +#: instances/templates/instances/settings_tab.html:618 msgid "Migrate" msgstr "Taşı" -#: instances/templates/instance.html:650 +#: instances/templates/instances/settings_tab.html:56 msgid "Options" msgstr "Seçenekler" -#: instances/templates/instance.html:666 networks/templates/network.html:59 -#: storages/templates/storage.html:71 +#: instances/templates/instances/settings_tab.html:72 +#: networks/templates/network.html:59 storages/templates/storage.html:70 msgid "Autostart" msgstr "Otomatik başlat" -#: instances/templates/instance.html:670 +#: instances/templates/instances/settings_tab.html:75 msgid "Autostart your instance when host server is power on " msgstr "Sunucu başlatıldığında sanal makineyi de otomatik başlat" -#: instances/templates/instance.html:680 +#: instances/templates/instances/settings_tab.html:84 msgid "Boot Order" msgstr "Boot sırası" -#: instances/templates/instance.html:685 +#: instances/templates/instances/settings_tab.html:88 msgid "Enable Boot Menu for your instance when it starts up " msgstr "Sanal makinenizin ön yükleme menüsünü başlangıçta etkinleştir" -#: instances/templates/instance.html:687 +#: instances/templates/instances/settings_tab.html:91 msgid "Show boot menu" msgstr "Ön yükleme menüsünü göster" -#: instances/templates/instance.html:689 +#: instances/templates/instances/settings_tab.html:95 msgid "Hide boot menu" msgstr "Ön yükleme menüsünü gizle" -#: instances/templates/instance.html:693 +#: instances/templates/instances/settings_tab.html:100 msgid "Please shutdown instance to modify boot menu" msgstr "Ön yükleme menüsünü düzenlemek için lütfen sanal makineyi kapatın" -#: instances/templates/instance.html:724 +#: instances/templates/instances/settings_tab.html:130 msgid "up: move selected devices" msgstr "yukarı: seçili aygıtları taşı" -#: instances/templates/instance.html:727 +#: instances/templates/instances/settings_tab.html:133 msgid "down: move selected devices" msgstr "aşağı: seçili aygıtları taşı" -#: instances/templates/instance.html:733 instances/templates/instance.html:994 +#: instances/templates/instances/settings_tab.html:139 +#: instances/templates/instances/settings_tab.html:428 msgid "Apply" msgstr "Uygula" -#: instances/templates/instance.html:743 +#: instances/templates/instances/settings_tab.html:149 msgid "Instance Media" msgstr "Sanal Makine Medyası" -#: instances/templates/instance.html:746 +#: instances/templates/instances/settings_tab.html:152 msgid "Add CD-ROM" msgstr "CD-ROM Ekle" -#: instances/templates/instance.html:764 instances/templates/instance.html:826 +#: instances/templates/instances/settings_tab.html:169 +#: instances/templates/instances/settings_tab.html:234 #: interfaces/templates/create_iface_block.html:34 #: networks/templates/network.html:46 networks/templates/networks.html:63 #: storages/templates/create_stg_block.html:77 msgid "Device" msgstr "Aygıt" -#: instances/templates/instance.html:765 +#: instances/templates/instances/settings_tab.html:170 msgid "CD-ROM" msgstr "CD-ROM" -#: instances/templates/instance.html:781 instances/templates/instance.html:783 +#: instances/templates/instances/settings_tab.html:188 +#: instances/templates/instances/settings_tab.html:190 msgid "Mount" msgstr "Bağla" -#: instances/templates/instance.html:786 +#: instances/templates/instances/settings_tab.html:193 msgid "Detach CD-ROM (remove device)" msgstr "CD-ROM ayır (cihazi sil)" -#: instances/templates/instance.html:800 instances/templates/instance.html:802 +#: instances/templates/instances/settings_tab.html:208 +#: instances/templates/instances/settings_tab.html:210 msgid "Unmount" msgstr "Ayır" -#: instances/templates/instance.html:812 +#: instances/templates/instances/settings_tab.html:220 msgid "There is not any CD-ROM device." msgstr "Hiçbir CD-ROM aygıtı mevcut değil." -#: instances/templates/instance.html:817 +#: instances/templates/instances/settings_tab.html:225 msgid "Instance Volume" msgstr "Sanal Makine Birimi" -#: instances/templates/instance.html:827 +#: instances/templates/instances/settings_tab.html:235 msgid "Used" msgstr "Kullanılan" -#: instances/templates/instance.html:828 +#: instances/templates/instances/settings_tab.html:236 msgid "Capacity" msgstr "Kapasite" -#: instances/templates/instance.html:830 instances/templates/instance.html:928 +#: instances/templates/instances/settings_tab.html:238 +#: instances/templates/instances/settings_tab.html:362 msgid "Source" msgstr "Kaynak" -#: instances/templates/instance.html:870 instances/templates/instance.html:877 +#: instances/templates/instances/settings_tab.html:294 +#: instances/templates/instances/settings_tab.html:298 msgid "Detach" msgstr "Ayır" -#: instances/templates/instance.html:870 +#: instances/templates/instances/settings_tab.html:294 msgid "Are you sure to detach volume?" msgstr "Birimi ayırmak istediğinize emin misiniz?" -#: instances/templates/instance.html:873 -msgid "Are you sure to delete volume?" -msgstr "Birimi silmek istediğinize emin misiniz?" - -#: instances/templates/instance.html:877 instances/templates/instance.html:880 +#: instances/templates/instances/settings_tab.html:298 +#: instances/templates/instances/settings_tab.html:314 msgid "Are you sure? This may lead data corruption!" msgstr "Emin misiniz? Bu veri bozulmasına yol açabilir!" -#: instances/templates/instance.html:896 +#: instances/templates/instances/settings_tab.html:310 +msgid "Are you sure to delete volume?" +msgstr "Birimi silmek istediğinize emin misiniz?" + +#: instances/templates/instances/settings_tab.html:330 msgid "Add a network device" msgstr "Bir ağ aygıtı ekle" -#: instances/templates/instance.html:902 +#: instances/templates/instances/settings_tab.html:336 msgid "Network Devices" msgstr "Ağ Aygıtları" -#: instances/templates/instance.html:907 instances/templates/instance.html:908 +#: instances/templates/instances/settings_tab.html:341 +#: instances/templates/instances/settings_tab.html:342 msgid "Info" msgstr "Bilgi" -#: instances/templates/instance.html:921 +#: instances/templates/instances/settings_tab.html:355 msgid "active" msgstr "aktif" -#: instances/templates/instance.html:926 nwfilters/templates/nwfilter.html:78 +#: instances/templates/instances/settings_tab.html:360 +#: nwfilters/templates/nwfilter.html:78 msgid "Filter" msgstr "Filtre" -#: instances/templates/instance.html:933 +#: instances/templates/instances/settings_tab.html:367 msgid "Edit NIC" msgstr "NIC Düzenle" -#: instances/templates/instance.html:941 +#: instances/templates/instances/settings_tab.html:375 msgid "Edit Instance Network" msgstr "Sanal Makine Ağını Düzenle" -#: instances/templates/instance.html:954 +#: instances/templates/instances/settings_tab.html:388 msgid "Net Source" msgstr "Ağ Kaynağı" -#: instances/templates/instance.html:962 interfaces/templates/interface.html:3 -#: interfaces/templates/interface.html:8 +#: instances/templates/instances/settings_tab.html:396 +#: interfaces/templates/interface.html:3 interfaces/templates/interface.html:8 #: interfaces/templates/interface.html:40 msgid "Interface" msgstr "Arabirim" -#: instances/templates/instance.html:980 -#: instances/templates/instance.html:1019 +#: instances/templates/instances/settings_tab.html:414 +#: instances/templates/instances/settings_tab.html:453 msgid "Model" msgstr "Model" -#: instances/templates/instance.html:994 +#: instances/templates/instances/settings_tab.html:428 msgid "Apply network changes" msgstr "Ağ değişikliklerini uygula" -#: instances/templates/instance.html:1003 +#: instances/templates/instances/settings_tab.html:437 msgid "Delete Device" msgstr "Aygıt Sil" -#: instances/templates/instance.html:1011 +#: instances/templates/instances/settings_tab.html:445 #: interfaces/templates/create_iface_block.html:71 #: interfaces/templates/interface.html:42 msgid "IPv4" msgstr "IPv4" -#: instances/templates/instance.html:1015 +#: instances/templates/instances/settings_tab.html:449 #: interfaces/templates/create_iface_block.html:74 #: interfaces/templates/interface.html:44 msgid "IPv6" msgstr "IPv6" -#: instances/templates/instance.html:1021 +#: instances/templates/instances/settings_tab.html:455 msgid "QoS" msgstr "QoS" -#: instances/templates/instance.html:1041 networks/templates/network.html:325 +#: instances/templates/instances/settings_tab.html:476 +#: networks/templates/network.html:325 msgid "QoS Configuration" msgstr "QoS Yapılandırması" -#: instances/templates/instance.html:1047 +#: instances/templates/instances/settings_tab.html:482 #: networks/templates/add_network_qos.html:18 #: networks/templates/network.html:331 nwfilters/templates/nwfilter.html:134 msgid "Direction" msgstr "Yön" -#: instances/templates/instance.html:1048 +#: instances/templates/instances/settings_tab.html:483 #: networks/templates/add_network_qos.html:27 #: networks/templates/network.html:332 msgid "Average" msgstr "Ortalama" -#: instances/templates/instance.html:1049 +#: instances/templates/instances/settings_tab.html:484 #: networks/templates/add_network_qos.html:34 #: networks/templates/network.html:333 msgid "Peak" msgstr "Tepe" -#: instances/templates/instance.html:1050 +#: instances/templates/instances/settings_tab.html:485 #: networks/templates/add_network_qos.html:41 #: networks/templates/network.html:334 msgid "Burst" msgstr "" -#: instances/templates/instance.html:1074 networks/templates/network.html:356 +#: instances/templates/instances/settings_tab.html:510 +#: networks/templates/network.html:356 msgid "Edit QoS" msgstr "QoS Düzenle" -#: instances/templates/instance.html:1079 networks/templates/network.html:361 +#: instances/templates/instances/settings_tab.html:520 +#: networks/templates/network.html:361 msgid "Delete QoS" msgstr "QoS Sil" -#: instances/templates/instance.html:1095 +#: instances/templates/instances/settings_tab.html:536 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:1098 +#: instances/templates/instances/settings_tab.html:540 msgid "Original host" msgstr "Orijinal Sunucu" -#: instances/templates/instance.html:1104 +#: instances/templates/instances/settings_tab.html:546 msgid "Host migration" msgstr "Sunucu taşıma" -#: instances/templates/instance.html:1121 +#: instances/templates/instances/settings_tab.html:563 msgid "Live migration" msgstr "Canlı olarak taşı" -#: instances/templates/instance.html:1129 +#: instances/templates/instances/settings_tab.html:571 msgid "Unsafe migration" msgstr "Güvensiz taşıma" -#: instances/templates/instance.html:1137 +#: instances/templates/instances/settings_tab.html:579 msgid "Delete original" msgstr "Orjinali sil" -#: instances/templates/instance.html:1145 +#: instances/templates/instances/settings_tab.html:587 msgid "Offline migration" msgstr "Çevrimdışı olarak taşı" -#: instances/templates/instance.html:1153 +#: instances/templates/instances/settings_tab.html:595 msgid "Post copy" msgstr "" -#: instances/templates/instance.html:1161 +#: instances/templates/instances/settings_tab.html:603 msgid "Forces CPU convergence during live migration" msgstr "" -#: instances/templates/instance.html:1161 +#: instances/templates/instances/settings_tab.html:603 msgid "Auto converge" msgstr "" -#: instances/templates/instance.html:1169 +#: instances/templates/instances/settings_tab.html:611 msgid "Compress instance memory for fast migration" msgstr "Hızlı taşıma için sanal makine belleğini sıkıştır" -#: instances/templates/instance.html:1169 +#: instances/templates/instances/settings_tab.html:611 msgid "Compressed" msgstr "Sıkıştırılmış" -#: instances/templates/instance.html:1182 +#: instances/templates/instances/settings_tab.html:624 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" +"XML üzerinden ayarları değiştirmek istiyorsanız sanal makineyi kapatmalısınız" -#: instances/templates/instance.html:1203 +#: instances/templates/instances/settings_tab.html:646 msgid "Instance owners" msgstr "Sanal makine sahipleri" -#: instances/templates/instance.html:1216 -msgid "Delete Ownership" -msgstr "Sahipliği sil" - -#: instances/templates/instance.html:1231 -msgid "To set console's type, shutdown the instance." -msgstr "Konsol tipini ayarlamak için sanal makineyi kapatın" - -#: instances/templates/instance.html:1234 -#: interfaces/templates/create_iface_block.html:44 -#: interfaces/templates/interface.html:77 -#: interfaces/templates/interfaces.html:62 -#: storages/templates/create_stg_block.html:35 -#: storages/templates/create_stg_block.html:64 -#: storages/templates/create_stg_block.html:93 -#: storages/templates/create_stg_block.html:158 -#: storages/templates/storages.html:64 -msgid "Type" -msgstr "Tip" - -#: instances/templates/instance.html:1238 -#: instances/templates/instance.html:1262 -#: instances/templates/instance.html:1331 -#: instances/templates/instance.html:1495 -msgid "please choose" -msgstr "lütfen seçiniz" - -#: instances/templates/instance.html:1246 -#: instances/templates/instance.html:1248 -#: instances/templates/instance.html:1269 -#: instances/templates/instance.html:1271 -#: instances/templates/instance.html:1307 -#: instances/templates/instance.html:1309 -#: instances/templates/instance.html:1339 -#: instances/templates/instance.html:1341 -#: instances/templates/instance.html:1502 -#: instances/templates/instance.html:1504 -#: instances/templates/instance.html:1524 -#: instances/templates/instance.html:1526 -#: instances/templates/instance.html:1554 secrets/templates/secrets.html:103 -msgid "Set" -msgstr "Ayarla" - -#: instances/templates/instance.html:1255 -msgid "To set console listen address, shutdown the instance." -msgstr "Dinleme adresini ayarlamak için sanal makineyi kapatın." - -#: instances/templates/instance.html:1258 -msgid "Listen on" -msgstr "Dinlenen" - -#: instances/templates/instance.html:1278 -msgid "To create console password, shutdown the instance." +#: instances/templates/instances/settings_tab.html:675 +#, fuzzy +#| msgid "To create console password, shutdown the instance." +msgid "To change console settings, shutdown the instance." msgstr "Konsol parolasını oluşturmak için sanal makineyi kapatın" -#: instances/templates/instance.html:1284 -msgid "Generate" -msgstr "Oluştur" +#: instances/templates/instances/settings_tab.html:681 +#: instances/templates/instances/settings_tab.html:683 +#, fuzzy +#| msgid "date" +msgid "Update" +msgstr "tarih" -#: instances/templates/instance.html:1288 -#: instances/templates/instance.html:1322 networks/templates/network.html:169 -#: networks/templates/network.html:279 -#: venv/lib/python3.6/site-packages/django/forms/widgets.py:395 -msgid "Clear" -msgstr "Temizle" - -#: instances/templates/instance.html:1304 networks/templates/network.html:161 -#: networks/templates/network.html:271 nwfilters/templates/nwfilters.html:88 -msgid "Show" -msgstr "Göster" - -#: instances/templates/instance.html:1316 -msgid "To set console's keymap, shutdown the instance." -msgstr "Konsolun keymap ini ayarlamak için sanal makineyi kapatın." - -#: instances/templates/instance.html:1327 -msgid "Keymap" -msgstr "" - -#: instances/templates/instance.html:1353 +#: instances/templates/instances/settings_tab.html:692 msgid "Create a clone" msgstr "Bir klon oluştur" -#: instances/templates/instance.html:1356 +#: instances/templates/instances/settings_tab.html:695 msgid "Clone Name" msgstr "Klon Adı" -#: instances/templates/instance.html:1363 -#: instances/templates/instance.html:1394 +#: instances/templates/instances/settings_tab.html:702 +#: instances/templates/instances/settings_tab.html:733 msgid "Guess" msgstr "Tahmin" -#: instances/templates/instance.html:1382 +#: instances/templates/instances/settings_tab.html:721 msgid "Network devices" msgstr "Ağ aygıtları" -#: instances/templates/instance.html:1392 +#: instances/templates/instances/settings_tab.html:731 msgid "Random" msgstr "Rastgele" -#: instances/templates/instance.html:1407 +#: instances/templates/instances/settings_tab.html:746 msgid "Storage devices" msgstr "Depolama aygıtları" -#: instances/templates/instance.html:1432 -#: instances/templates/instance.html:1455 +#: instances/templates/instances/settings_tab.html:771 +#: instances/templates/instances/settings_tab.html:794 msgid "Title" msgstr "Başlık" -#: instances/templates/instance.html:1452 +#: instances/templates/instances/settings_tab.html:791 msgid "To set instance template name description, shutdown the instance." msgstr "" "Sanal makine şablon adını ve tanımını ayarlamak için sanal makineyi kapatın." -#: instances/templates/instance.html:1467 +#: instances/templates/instances/settings_tab.html:806 msgid "Is template" msgstr "Şablon?" -#: instances/templates/instance.html:1488 +#: instances/templates/instances/settings_tab.html:827 msgid "To set instance video model, shutdown the instance." msgstr "Sanal makine video modelini ayarlamak için sanal makineyi kapatın." -#: instances/templates/instance.html:1491 +#: instances/templates/instances/settings_tab.html:830 msgid "Primary Video Model" msgstr "Birincil Video Model" -#: instances/templates/instance.html:1512 +#: instances/templates/instances/settings_tab.html:834 +msgid "please choose" +msgstr "lütfen seçiniz" + +#: instances/templates/instances/settings_tab.html:841 +#: instances/templates/instances/settings_tab.html:843 +#: instances/templates/instances/settings_tab.html:863 +#: instances/templates/instances/settings_tab.html:865 +#: instances/templates/instances/settings_tab.html:893 +#: secrets/templates/secrets.html:103 +msgid "Set" +msgstr "Ayarla" + +#: instances/templates/instances/settings_tab.html:851 msgid "To set instance vCPUs hotpluggable" msgstr "Sanal makinenin vCPUlarını hotpluggable yapmak için" -#: instances/templates/instance.html:1515 +#: instances/templates/instances/settings_tab.html:854 msgid "vCPU Hot Plug" msgstr "" -#: instances/templates/instance.html:1519 -#: instances/templates/instance.html:1550 +#: instances/templates/instances/settings_tab.html:858 +#: instances/templates/instances/settings_tab.html:889 msgid "Enabled" msgstr "Etkin" -#: instances/templates/instance.html:1520 -#: instances/templates/instance.html:1551 +#: instances/templates/instances/settings_tab.html:859 +#: instances/templates/instances/settings_tab.html:890 msgid "Disabled" msgstr "Devredışı" -#: instances/templates/instance.html:1534 +#: instances/templates/instances/settings_tab.html:873 msgid "To Enable/Disable Qemu Guest Agent. Status" msgstr "Misafir Aracıyı Etkilenleştirme/Devredışı bırakmak için. Durum" -#: instances/templates/instance.html:1539 +#: instances/templates/instances/settings_tab.html:878 msgid "Disconnected" msgstr "Bağlantı yok" -#: instances/templates/instance.html:1542 +#: instances/templates/instances/settings_tab.html:881 #: venv/lib/python3.6/site-packages/django/forms/widgets.py:709 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:703 msgid "Unknown" msgstr "Bilinmeyen" -#: instances/templates/instance.html:1546 +#: instances/templates/instances/settings_tab.html:885 msgid "Qemu Guest Agent" msgstr "Qemu Misafir Aracısı" -#: instances/templates/instance.html:1572 +#: instances/templates/instances/snapshots_tab.html:9 +#: instances/templates/instances/snapshots_tab.html:31 +#: instances/templates/instances/snapshots_tab.html:33 +msgid "Take Snapshot" +msgstr "Anlık Görüntü Oluştur" + +#: instances/templates/instances/snapshots_tab.html:14 +msgid "Manage Snapshots" +msgstr "Anlık Görüntüleri Yönet" + +#: instances/templates/instances/snapshots_tab.html:22 +msgid "" +"This may take more than an hour, depending on how much content is on your " +"droplet and how large the disk is." +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:27 +msgid "Enter Snapshot Name" +msgstr "Anlık görüntü adı girin" + +#: instances/templates/instances/snapshots_tab.html:38 +msgid "To take a snapshot please Power Off the instance." +msgstr "Anlık görüntü oluşturmak için lütfen sanal makinenizi kapatınız." + +#: instances/templates/instances/snapshots_tab.html:43 +msgid "Choose a snapshot for restore/delete" +msgstr "Geri yükleme/Silmek için bir anlık görüntü seçin" + +#: instances/templates/instances/snapshots_tab.html:61 +msgid "Revert to this Snapshot" +msgstr "Bu anlık görüntüye dön" + +#: instances/templates/instances/snapshots_tab.html:66 +msgid "To restore snapshots you need Power Off the instance." +msgstr "Anlık görüntüye dönmek için lütfen sanal makineyi kapatınız." + +#: instances/templates/instances/snapshots_tab.html:75 +msgid "Delete Snapshot" +msgstr "Anlık Görüntü Sil" + +#: instances/templates/instances/snapshots_tab.html:86 +msgid "You do not have any snapshots" +msgstr "Hiç anlık görüntünüz yok" + +#: instances/templates/instances/stats_tab.html:8 msgid "Real Time" msgstr "Gerçek Zamanlı" -#: instances/templates/instance.html:1586 +#: instances/templates/instances/stats_tab.html:23 msgid "CPU Usage" msgstr "CPU Kullanımı" -#: instances/templates/instance.html:1598 +#: instances/templates/instances/stats_tab.html:36 msgid "Memory Usage" msgstr "Bellek Kullanımı" -#: instances/templates/instance.html:1611 +#: instances/templates/instances/stats_tab.html:50 msgid "Bandwidth Device" msgstr "Bant Genişliği Aygıtı" -#: instances/templates/instance.html:1625 +#: instances/templates/instances/stats_tab.html:65 msgid "Disk I/O device" msgstr "Disk I/O aygıtı" -#: instances/templates/instance.html:1664 -msgid "Destroy Instance" -msgstr "Sanal makineyi sil" - -#: instances/templates/instance.html:1671 -msgid "Delete storage for instance?" -msgstr "Sanal makinenin depolamasını da sil?" - -#: instances/templates/instance.html:1680 -msgid "Remove Instance's data" -msgstr "Sanal makinenin verisini sil" - -#: instances/templates/instance.html:1687 -msgid "Remove Instance's NVRAM" -msgstr "Sanal makine NVRAM'ini sil" - -#: instances/templates/instance_actions.html:24 -#: instances/templates/instance_actions.html:41 -msgid "VNC Console" -msgstr "VNC Konsol" - -#: instances/templates/instances.html:61 -msgid "Hypervisor doesn't have any Instances" -msgstr "Hipervizör üzerinde hiç sanal makine yok" - -#: instances/views.py:224 +#: instances/utils.py:122 msgid "None available device name" msgstr "Hiçbiri uygun aygıt adı değil" -#: instances/views.py:260 +#: instances/utils.py:239 +msgid "Deleting due to multiple(Instance Name) records." +msgstr "Çoklu kayıt(sanal makine adı) nedeniyle siliniyor" + +#: instances/utils.py:247 +msgid "Deleting due to multiple(UUID) records." +msgstr "Çoklu(UUID) kayıtlar nedeniyle siliniyor." + +#: instances/views.py:259 +msgid "Templates cannot be started." +msgstr "Şablon makineler başlatılamaz." + +#: instances/views.py:362 #, python-brace-format msgid "Migrate to {new_compute.hostname}" msgstr "{new_compute.hostname} ya taşı" -#: instances/views.py:340 -#, python-brace-format -msgid "Fixing UUID {uuid}" -msgstr "UUID: {uuid} düzeltiliyor" - -#: instances/views.py:345 -msgid "Instance does not exist: Creating new instance" -msgstr "Sanal makine mevcut değil: Yeni sanal makine oluşturuluyor" - -#: instances/views.py:370 instances/views.py:1190 -msgid "Templates cannot be started." -msgstr "Şablon makineler başlatılamaz." - -#: instances/views.py:437 +#: instances/views.py:385 msgid "Reset root password" msgstr "Kök parolayı sıfırla" -#: instances/views.py:445 instances/views.py:467 +#: instances/views.py:391 instances/views.py:417 msgid "Please shutdown down your instance and then try again" msgstr "Lütfen sanal makinenizi kapatın ve yeniden deneyin" -#: instances/views.py:459 +#: instances/views.py:409 #, python-brace-format msgid "Installed new SSH public key {publickey.keyname}" msgstr "" -#: instances/views.py:477 +#: instances/views.py:436 #, python-brace-format -msgid "" -"User {quota_msg} quota reached, cannot resize CPU of '{instance.name}'!" +msgid "User {quota_msg} quota reached, cannot resize CPU of '{instance.name}'!" msgstr "" "{quota_msg} Kullanıcı kotası doldu, '{instance.name}' in CPU su yeniden " "boyutlandırılamıyor!" -#: instances/views.py:483 +#: instances/views.py:442 msgid "Resize CPU" msgstr "CPU Boyutlandır" -#: instances/views.py:501 +#: instances/views.py:470 #, python-brace-format msgid "" "User {quota_msg} quota reached, cannot resize memory of '{instance.name}'!" @@ -2627,11 +2608,11 @@ msgstr "" "{quota_msg} kullanıcı kotası doldu, '{instance.name}' in belleği yeniden " "boyutlandırılamıyor!" -#: instances/views.py:507 +#: instances/views.py:476 msgid "Resize Memory" msgstr "Bellek Boyutlandır" -#: instances/views.py:524 +#: instances/views.py:506 #, python-brace-format msgid "" "User {quota_msg} quota reached, cannot resize disks of '{instance.name}'!" @@ -2639,7 +2620,7 @@ msgstr "" "{quota_msg} kullanıcı kotası doldu, '{instance.name}' in diski yeniden " "boyutlandırılamıyor!" -#: instances/views.py:528 +#: instances/views.py:510 msgid "Disk resize" msgstr "Diski Boyutlandır" @@ -2648,127 +2629,215 @@ msgstr "Diski Boyutlandır" msgid "Attach new disk {name} ({format})" msgstr "Yeni disk tak {name} ({format})" -#: instances/views.py:571 +#: instances/views.py:580 #, python-brace-format msgid "Attach Existing disk: {target_dev}" msgstr "Takılan mevcut disk: {target_dev}" -#: instances/views.py:603 +#: instances/views.py:636 msgid "Volume changes are applied. But it will be activated after shutdown" msgstr "" "Birim değişiklikleri uygulandı. Ama yeniden başlatıldıktan sonra uygulanacak" -#: instances/views.py:606 +#: instances/views.py:638 msgid "Volume is changed successfully." msgstr "Birim başarıyla değiştirildi." -#: instances/views.py:607 +#: instances/views.py:639 #, python-brace-format msgid "Edit disk: {target_dev}" msgstr "Disk düzenle: {target_dev}" -#: instances/views.py:623 +#: instances/views.py:661 #, python-brace-format msgid "Delete disk: {dev}" msgstr "Disk sil: {dev}" -#: instances/views.py:628 -#, python-brace-format -msgid "The disk: {dev} is detached but not deleted. Error: {err}" -msgstr "{dev} diski makineden ayrıldı fakat silinemedi. Hata: {err}" - -#: instances/views.py:638 +#: instances/views.py:677 #, python-brace-format msgid "Detach disk: {dev}" msgstr "Diski ayır: {dev}" -#: instances/views.py:646 +#: instances/views.py:690 #, python-brace-format msgid "Add CD-ROM: {target}" msgstr "CD-ROM Ekle: {target}" -#: instances/views.py:653 +#: instances/views.py:703 #, python-brace-format msgid "Detach CD-ROM: {dev}" msgstr "CD-ROM ayır: {dev}" -#: instances/views.py:661 +#: instances/views.py:716 #, python-brace-format msgid "Mount media: {dev}" msgstr "Medya tak: {dev}" -#: instances/views.py:669 +#: instances/views.py:729 #, python-brace-format msgid "Umount media: {dev}" msgstr "Medyayı ayır: {dev}" -#: instances/views.py:676 +#: instances/views.py:742 #, python-brace-format msgid "New snapshot : {name}" msgstr "Yeni anlık görüntü: {name}" -#: instances/views.py:683 +#: instances/views.py:753 #, python-brace-format msgid "Delete snapshot : {snap_name}" msgstr "Anlık görüntü sil: {snap_name}" -#: instances/views.py:690 +#: instances/views.py:764 msgid "Successful revert snapshot: " msgstr "Anlık görüntü geri dönüş başarılı:" -#: instances/views.py:693 +#: instances/views.py:767 msgid "Revert snapshot" msgstr "Snapshota dön" -#: instances/views.py:716 +#: instances/views.py:781 #, python-brace-format msgid "VCPU {id} is enabled={enabled}" msgstr "" -#: instances/views.py:723 +#: instances/views.py:792 #, python-brace-format msgid "VCPU Hot-plug is enabled={status}" msgstr "" -#: instances/views.py:734 +#: instances/views.py:803 msgid "Set autostart" msgstr "Otomatik başlatmayı ayarla" -#: instances/views.py:740 +#: instances/views.py:812 msgid "Unset autostart" msgstr "Otomatik başlatmayı iptal et" -#: instances/views.py:746 +#: instances/views.py:821 msgid "Enable boot menu" msgstr "Ön yükleme menüsünü etkinleştir" -#: instances/views.py:752 +#: instances/views.py:830 msgid "Disable boot menu" msgstr "Ön yükleme menüsünü devredışı bırak" -#: instances/views.py:764 +#: instances/views.py:845 msgid "Set boot order" msgstr "Ön yükleme sırasını ayarla" -#: instances/views.py:767 +#: instances/views.py:848 msgid "Boot menu changes applied. But it will be activated after shutdown" msgstr "" "Ön yükleme menüsü değişiklikleri uygulandı. Fakat yeniden başlatılınca " "uygulanacak" -#: instances/views.py:770 +#: instances/views.py:850 msgid "Boot order changed successfully." msgstr "Ön yükleme sırası başarıyla değiştirildi." -#: instances/views.py:778 +#: instances/views.py:861 msgid "Edit XML" msgstr "XML Düzenle" -#: instances/views.py:792 -msgid "Enter the console password or select Generate" -msgstr "Konsol parolası girin veya Oluştur u seçin" +#: instances/views.py:875 +#, python-brace-format +msgid "Set Quest Agent {status}" +msgstr "Misafir Aracı Ayarla {status}" -#: instances/views.py:796 +#: instances/views.py:885 +msgid "Set Video Model" +msgstr "Video Modeli Ayarla" + +#: instances/views.py:894 +msgid "Change network" +msgstr "Ağ değiştir" + +#: instances/views.py:907 +msgid "Network Device Config is changed. Please shutdown instance to activate." +msgstr "" +"Ağ aygıtı yapılandırması değiştirildi. Aktifleştirmek için lütfen sanal " +"makineyi kapatın." + +#: instances/views.py:915 +msgid "Add network" +msgstr "Ağ ekle" + +#: instances/views.py:929 +msgid "Delete network" +msgstr "Ağ sil" + +#: instances/views.py:945 +#, python-brace-format +msgid "Set Link State: {state}" +msgstr "Bağlantı durumunu ayarla: {state}" + +#: instances/views.py:964 +msgid "{qos_dir.capitalize()} QoS is set" +msgstr "{qos_dir.capitalize()} QoS ayarlandı" + +#: instances/views.py:968 networks/views.py:216 +msgid "{qos_dir.capitalize()} QoS is set. Network XML is changed." +msgstr "" +"{qos_dir.capitalize()} QoS ayarlandı. Ağ ayarları XML ile değiştirildi." + +#: instances/views.py:969 networks/views.py:217 +msgid "Stop and start network to activate new config" +msgstr "Yeni yapılandırmayı aktifleştirmek için ağı durdurun ve başlatın" + +#: instances/views.py:983 networks/views.py:233 +msgid "{qos_dir.capitalize()} QoS is deleted" +msgstr "{qos_dir.capitalize()} QoS silindi" + +#: instances/views.py:987 networks/views.py:230 +msgid "{qos_dir.capitalize()} QoS is deleted. Network XML is changed. " +msgstr "{qos_dir.capitalize()} QoS silindi. Ağ XML'i değiştirildi." + +#: instances/views.py:988 networks/views.py:231 +msgid "Stop and start network to activate new config." +msgstr "" +"Yeni yapılandırmayı aktifleştirmek için ağı durdurun ve yeniden başlatın." + +#: instances/views.py:1004 +msgid "Only one owner is allowed and the one already added" +msgstr "Sadece bir sahibe izin verilmiştir ve bir sahip zaten eklenmiş" + +#: instances/views.py:1009 +#, fuzzy, python-format +#| msgid "Added owner {user_id}" +msgid "Added owner %(user)s" +msgstr "Eklenmiş sahip {user_id}" + +#: instances/views.py:1020 +#, python-brace-format +msgid "Deleted owner {userinstance_id}" +msgstr "Silinmiş sahip {userinstance_id}" + +#: instances/views.py:1052 +msgid "User '{quota_msg}' quota reached, cannot create '{clone_data['name']}'!" +msgstr "" + +#: instances/views.py:1055 +msgid "Instance '{clone_data['name']}' already exists!" +msgstr "'{clone_data['name']}' sanal makinesi zaten mevcut!" + +#: instances/views.py:1058 +msgid "Instance name '{clone_data['name']}' contains invalid characters!" +msgstr "" +"Sanal makine adı '{clone_data['name']}' geçersiz karakterler içermektedir!" + +#: instances/views.py:1061 +msgid "Instance MAC '{clone_data['clone-net-mac-0']}' invalid format!" +msgstr "" +"Sanal makine MAC adresi '{clone_data['clone-net-mac-0']}' geçersiz biçemde " +"belirtilmiş!" + +#: instances/views.py:1071 +#, python-brace-format +msgid "Clone of '{instance.name}'" +msgstr "'{instance.name}' un klonu" + +#: instances/views.py:1104 msgid "" "Error setting console password. You should check that your instance have an " "graphic device." @@ -2776,145 +2845,96 @@ msgstr "" "Konsol parolası ayarlanırken hata oluştu. Sanal makinenin bir grafik " "aygıtına sahip olduğundan emin olunuz." -#: instances/views.py:800 +#: instances/views.py:1107 msgid "Set VNC password" msgstr "VNC parolası ayarlar" -#: instances/views.py:811 +#: instances/views.py:1115 msgid "Set VNC keymap" -msgstr "" +msgstr "VNC Keymapi ayarla" -#: instances/views.py:817 +#: instances/views.py:1120 msgid "Set VNC type" msgstr "VNC tipini ayarla" -#: instances/views.py:821 -msgid "Console type not supported" -msgstr "Konsol tipi desteklenmiyor" - -#: instances/views.py:828 +#: instances/views.py:1125 msgid "Set VNC listen address" msgstr "VNC dinleme adresini ayarla" -#: instances/views.py:840 -#, python-brace-format -msgid "Set Quest Agent {status}" -msgstr "Misafir Aracı Ayarla {status}" - -#: instances/views.py:847 -msgid "Set Video Model" -msgstr "Video Modeli Ayarla" - -#: instances/views.py:872 -msgid "Change network" -msgstr "Ağ değiştir" - -#: instances/views.py:885 -msgid "" -"Network Device Config is changed. Please shutdown instance to activate." -msgstr "" -"Ağ aygıtı yapılandırması değiştirildi. Aktifleştirmek için lütfen sanal " -"makineyi kapatın." - -#: instances/views.py:890 -msgid "Add network" -msgstr "Ağ ekle" - -#: instances/views.py:900 -msgid "Delete network" -msgstr "Ağ sil" - -#: instances/views.py:912 -#, python-brace-format -msgid "Set Link State: {state}" -msgstr "Bağlantı durumunu ayarla: {state}" - -#: instances/views.py:928 -msgid "{qos_dir.capitalize()} QoS is set" -msgstr "{qos_dir.capitalize()} QoS ayarlandı" - -#: instances/views.py:931 networks/views.py:216 -msgid "{qos_dir.capitalize()} QoS is set. Network XML is changed." -msgstr "" -"{qos_dir.capitalize()} QoS ayarlandı. Ağ ayarları XML ile değiştirildi." - -#: instances/views.py:932 networks/views.py:217 -msgid "Stop and start network to activate new config" -msgstr "Yeni yapılandırmayı aktifleştirmek için ağı durdurun ve başlatın" - -#: instances/views.py:943 networks/views.py:233 -msgid "{qos_dir.capitalize()} QoS is deleted" -msgstr "{qos_dir.capitalize()} QoS silindi" - -#: instances/views.py:946 networks/views.py:230 -msgid "{qos_dir.capitalize()} QoS is deleted. Network XML is changed. " -msgstr "{qos_dir.capitalize()} QoS silindi. Ağ XML'i değiştirildi." - -#: instances/views.py:947 networks/views.py:231 -msgid "Stop and start network to activate new config." -msgstr "" -"Yeni yapılandırmayı aktifleştirmek için ağı durdurun ve yeniden başlatın." - -#: instances/views.py:959 -msgid "Only one owner is allowed and the one already added" -msgstr "Sadece bir sahibe izin verilmiştir ve bir sahip zaten eklenmiş" - -#: instances/views.py:964 -#, python-brace-format -msgid "Added owner {user_id}" -msgstr "Eklenmiş sahip {user_id}" - -#: instances/views.py:972 -#, python-brace-format -msgid "Deleted owner {userinstance_id}" -msgstr "Silinmiş sahip {userinstance_id}" - -#: instances/views.py:1001 -msgid "" -"User '{quota_msg}' quota reached, cannot create '{clone_data['name']}'!" -msgstr "" - -#: instances/views.py:1004 -msgid "Instance '{clone_data['name']}' already exists!" -msgstr "'{clone_data['name']}' sanal makinesi zaten mevcut!" - -#: instances/views.py:1007 -msgid "Instance name '{clone_data['name']}' contains invalid characters!" -msgstr "" -"Sanal makine adı '{clone_data['name']}' geçersiz karakterler içermektedir!" - -#: instances/views.py:1011 -msgid "Instance MAC '{clone_data['clone-net-mac-0']}' invalid format!" -msgstr "" -"Sanal makine MAC adresi '{clone_data['clone-net-mac-0']}' geçersiz biçemde " -"belirtilmiş!" - -#: instances/views.py:1027 -#, python-brace-format -msgid "Clone of '{instance.name}'" -msgstr "'{instance.name}' un klonu" - -#: instances/views.py:1046 +#: instances/views.py:1148 msgid "Edit options" msgstr "Seçenekleri düzenle" -#: instances/views.py:1103 -msgid "Deleting due to multiple(Instance Name) records." -msgstr "Çoklu kayıt(sanal makine adı) nedeniyle siliniyor" - -#: instances/views.py:1111 -msgid "Deleting due to multiple(UUID) records." -msgstr "Çoklu(UUID) kayıtlar nedeniyle siliniyor." - -#: instances/views.py:1160 -#, python-brace-format -msgid "Problem occurred with host: {comp.name} - {status}" -msgstr "" - -#: instances/views.py:1218 +#: instances/views.py:1162 msgid "Send console.vv file" msgstr "console.vv dosyası gönder" +#: instances/views.py:1214 instances/views.py:1307 +msgid "A virtual machine with this name already exists" +msgstr "Bu isimde bir sanal makine mevcut" + +#: instances/views.py:1288 +msgid "You haven't defined any storage pools" +msgstr "Hiç bir depolama havuzu tanımlamadınız" + +#: instances/views.py:1291 +msgid "You haven't defined any network pools" +msgstr "Hiç bir ağ havuzu tanımlamadınız" + +#: instances/views.py:1310 +msgid "There is an instance with same name. Are you sure?" +msgstr "Aynı adlı bir sanal makine var. Emin misiniz?" + +#: instances/views.py:1313 +msgid "No Virtual Machine MAC has been entered" +msgstr "Sanal makine için MAC adresi belirtmediniz" + +#: instances/views.py:1337 +msgid "Image has already exist. Please check volumes or change instance name" +msgstr "" +"İmaj zaten mevcut. Lütfen ya makine adını değişin ya da disk alanlarını " +"kontrol edin" + +#: instances/views.py:1358 +msgid "First you need to create or select an image" +msgstr "Ya daha önce oluşturun ya da bir imaj seçin" + +#: instances/views.py:1377 +msgid "Invalid cache mode" +msgstr "Geçersiz önbellek modu" + +#: instances/views.py:1414 +msgid "Instance is created" +msgstr "Sanal makine oluşturuldu" + +#: instances/views.py:1433 +#, fuzzy +#| msgid "Create" +msgid "Flavor Created" +msgstr "Oluştur" + +#: instances/views.py:1441 +#, fuzzy +#| msgid "Create User" +msgid "Create Flavor" +msgstr "Kullanıcı Oluştur" + +#: instances/views.py:1452 +msgid "Flavor Updated" +msgstr "" + +#: instances/views.py:1460 +#, fuzzy +#| msgid "Update User" +msgid "Update Flavor" +msgstr "Kullanıcıyı Güncelle" + +#: instances/views.py:1470 +#, fuzzy +#| msgid "Delete" +msgid "Flavor Deleted" +msgstr "Sil" + #: interfaces/forms.py:25 msgid "The IPv4 address must not contain any special characters" msgstr "IPv4 adresi herhangi bir özel karakter içeremez" @@ -2975,6 +2995,17 @@ msgstr "başlangıçta" msgid "hotplug" msgstr "" +#: interfaces/templates/create_iface_block.html:44 +#: interfaces/templates/interface.html:77 +#: interfaces/templates/interfaces.html:62 +#: storages/templates/create_stg_block.html:35 +#: storages/templates/create_stg_block.html:64 +#: storages/templates/create_stg_block.html:93 +#: storages/templates/create_stg_block.html:158 +#: storages/templates/storages.html:64 +msgid "Type" +msgstr "Tip" + #: interfaces/templates/create_iface_block.html:47 msgid "bridge" msgstr "köprü" @@ -3053,12 +3084,12 @@ msgstr "Ön yükleme Modu" #: interfaces/templates/interface.html:56 #: interfaces/templates/interface.html:79 networks/templates/network.html:48 -#: storages/templates/storage.html:58 +#: storages/templates/storage.html:57 msgid "State" msgstr "Durum" #: interfaces/templates/interface.html:63 networks/templates/network.html:55 -#: storages/templates/storage.html:66 +#: storages/templates/storage.html:65 msgid "Stop" msgstr "Durdur" @@ -3074,19 +3105,19 @@ msgstr "Hız" msgid "Hypervisor doesn't have any Interfaces" msgstr "Hipervizör hiçbir arabirime sahip değil" -#: logs/models.py:5 +#: logs/models.py:6 msgid "user" msgstr "kullanıcı" -#: logs/models.py:6 +#: logs/models.py:7 msgid "instance" msgstr "sanal makine" -#: logs/models.py:7 +#: logs/models.py:8 msgid "message" msgstr "mesaj" -#: logs/models.py:8 +#: logs/models.py:9 msgid "date" msgstr "tarih" @@ -3102,11 +3133,11 @@ msgstr "IPv4 subneti girilmemiş" msgid "No IPv6 subnet has been entered" msgstr "IPv6 subneti girilmemiş" -#: networks/forms.py:24 storages/forms.py:25 +#: networks/forms.py:24 storages/forms.py:22 msgid "The pool name must not contain any special characters" msgstr "Havuz adı herhangi bir özel karakter içermemelidir" -#: networks/forms.py:26 storages/forms.py:27 +#: networks/forms.py:26 storages/forms.py:24 msgid "The pool name must not exceed 20 characters" msgstr "Havuz adı 20 karakterden fazla olamaz" @@ -3275,6 +3306,17 @@ msgstr "DHCP Aralığı Düzenle" msgid "IPv4 Fixed Addresses" msgstr "IPv4 Sabit Adresleri" +#: networks/templates/network.html:161 networks/templates/network.html:271 +#: nwfilters/templates/nwfilters.html:88 +msgid "Show" +msgstr "Göster" + +#: networks/templates/network.html:169 networks/templates/network.html:279 +#: venv/lib/python3.6/site-packages/django/forms/widgets.py:395 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:377 +msgid "Clear" +msgstr "Temizle" + #: networks/templates/network.html:192 networks/templates/network.html:301 msgid "Edit entry" msgstr "Girdiyi düzenle" @@ -3332,7 +3374,8 @@ msgid "{family.upper()} DHCP Range is Changed." msgstr "{family.upper()} DHCP aralığı değiştirildi." #: networks/views.py:201 -msgid "Network XML is changed. \\Stop and start network to activate new config." +msgid "" +"Network XML is changed. \\Stop and start network to activate new config." msgstr "" "Ağ XML i değiştirildi. \\ Aktifleştirmek için durdurun ve yeniden başlatın." @@ -3456,7 +3499,7 @@ msgid "Private" msgstr "Özel" #: secrets/templates/create_secret_block.html:36 -#: storages/templates/storage.html:56 +#: storages/templates/storage.html:55 msgid "Usage" msgstr "Kullanım" @@ -3481,27 +3524,27 @@ msgstr "" msgid "Value" msgstr "Değer" -#: storages/forms.py:10 storages/forms.py:39 +#: storages/forms.py:9 storages/forms.py:36 msgid "No path has been entered" msgstr "Yol girilmedi" -#: storages/forms.py:36 +#: storages/forms.py:33 msgid "The target must not contain any special characters" msgstr "Hedef herhangi bir özel karakter içeremez" -#: storages/forms.py:48 +#: storages/forms.py:45 msgid "No device or path has been entered" msgstr "Aygıt ya da yol girilmedi" -#: storages/forms.py:50 +#: storages/forms.py:47 msgid "The disk source must not contain any special characters" msgstr "Disk kaynağı herhangi bir özel karakter içermemelidir" -#: storages/forms.py:66 storages/forms.py:85 +#: storages/forms.py:61 storages/forms.py:76 msgid "The image name must not contain any special characters" msgstr "İmaj adı herhangi bir özel karakter içeremez" -#: storages/forms.py:68 storages/forms.py:87 +#: storages/forms.py:78 msgid "The image name must not exceed 120 characters" msgstr "İmaj adı 120 karakterden fazla olamaz" @@ -3570,66 +3613,63 @@ msgstr "cifs" msgid "Local Path" msgstr "Yerel Yol" -#: storages/templates/create_stg_vol_block.html:14 +#: storages/templates/create_stg_vol_block.html:15 msgid "Upload ISO Image" msgstr "ISO İmajı Yükle" -#: storages/templates/create_stg_vol_block.html:28 +#: storages/templates/create_stg_vol_block.html:29 msgid "Upload" msgstr "Yükleme" -#: storages/templates/create_stg_vol_block.html:45 +#: storages/templates/create_stg_vol_block.html:46 msgid "Add New Volume" msgstr "Yeni Birim Ekle" -#: storages/templates/create_stg_vol_block.html:60 -#: storages/templates/storage.html:144 -msgid "qcow2" -msgstr "qcow2" - -#: storages/templates/create_stg_vol_block.html:61 -#: storages/templates/storage.html:143 -msgid "qcow" -msgstr "qcow" - -#: storages/templates/create_stg_vol_block.html:62 -#: storages/templates/storage.html:142 -msgid "raw" -msgstr "raw" - -#: storages/templates/storage.html:46 +#: storages/templates/storage.html:45 msgid "Pool name" msgstr "Havuz adı" -#: storages/templates/storage.html:48 +#: storages/templates/storage.html:47 msgid "Pool type" msgstr "Havuz tipi" -#: storages/templates/storage.html:50 +#: storages/templates/storage.html:49 msgid "Pool path" msgstr "Havuz yolu" -#: storages/templates/storage.html:52 +#: storages/templates/storage.html:51 msgid "Pool status" msgstr "Havuz durumu" -#: storages/templates/storage.html:87 storages/templates/storages.html:68 +#: storages/templates/storage.html:86 storages/templates/storages.html:68 msgid "Volumes" msgstr "Birimler" -#: storages/templates/storage.html:99 +#: storages/templates/storage.html:98 msgid "Allocated" msgstr "Tahsis Edilmiş" -#: storages/templates/storage.html:120 +#: storages/templates/storage.html:119 msgid "Clone image" msgstr "İmaj Klonla" -#: storages/templates/storage.html:133 +#: storages/templates/storage.html:132 msgid "Convert" msgstr "Dönüştür" -#: storages/templates/storage.html:189 +#: storages/templates/storage.html:141 +msgid "raw" +msgstr "raw" + +#: storages/templates/storage.html:142 +msgid "qcow" +msgstr "qcow" + +#: storages/templates/storage.html:143 +msgid "qcow2" +msgstr "qcow2" + +#: storages/templates/storage.html:188 msgid "Hypervisor doesn't have any Volumes" msgstr "Hipervizör hiçbir birime sahip değil" @@ -3637,44 +3677,44 @@ msgstr "Hipervizör hiçbir birime sahip değil" msgid "Hypervisor doesn't have any Storages" msgstr "Hipervizör hiç bir depolama alanına sahip değil" -#: storages/views.py:38 +#: storages/views.py:40 msgid "Pool name already use" msgstr "Havuz adı zaten kullanılıyor" -#: storages/views.py:42 +#: storages/views.py:44 msgid "You need create secret for pool" msgstr "" -#: storages/views.py:45 +#: storages/views.py:47 msgid "You need input all fields for creating ceph pool" msgstr "" -#: storages/views.py:153 -#, python-brace-format -msgid "Image file {name} is created successfully" -msgstr "İmaj dosyası {name} başarıyla oluşturuldu" - -#: storages/views.py:165 +#: storages/views.py:129 #, python-brace-format msgid "Volume: {volname} is deleted." msgstr "Birim: {volname} silindi." -#: storages/views.py:171 +#: storages/views.py:134 msgid "ISO image already exist" msgstr "ISO imajı zaten mevcut" -#: storages/views.py:175 +#: storages/views.py:138 msgid "ISO: {request.FILES['file']} is uploaded." msgstr "ISO: {request.FILES['file']}  yüklendi." -#: storages/views.py:184 +#: storages/views.py:147 msgid "Name of volume already in use" msgstr "Birim adı zaten kullanımda" -#: storages/views.py:195 +#: storages/views.py:157 msgid "{data['image']} image cloned as {name} successfully" msgstr "{data['image']} imajı {name} olarak başarıyla klonlandı" +#: storages/views.py:196 +#, python-brace-format +msgid "Image file {name} is created successfully" +msgstr "İmaj dosyası {name} başarıyla oluşturuldu" + #: templates/403.html:3 msgid "403" msgstr "403" @@ -3723,6 +3763,10 @@ msgstr "" "Sunucu bir iç hata ya da yanlış yaplandırma nedeniyle talebinizi " "tamamlayamıyor." +#: templates/common/confirm_delete.html:12 +msgid "Are you sure you want to delete" +msgstr "Silmek istediğinize emin misiniz" + #: templates/errors_block.html:8 msgid "Error" msgstr "Hata" @@ -3746,97 +3790,123 @@ msgid "close" msgstr "kapat" #: venv/lib/python3.6/site-packages/django/contrib/messages/apps.py:7 +#: venv2/lib/python2.7/site-packages/django/contrib/messages/apps.py:7 msgid "Messages" msgstr "Mesajlar" #: venv/lib/python3.6/site-packages/django/contrib/sitemaps/apps.py:7 +#: venv2/lib/python2.7/site-packages/django/contrib/sitemaps/apps.py:7 msgid "Site Maps" msgstr "Site Haritası" #: venv/lib/python3.6/site-packages/django/contrib/staticfiles/apps.py:9 +#: venv2/lib/python2.7/site-packages/django/contrib/staticfiles/apps.py:7 msgid "Static Files" msgstr "Statik Dosyalar" #: venv/lib/python3.6/site-packages/django/contrib/syndication/apps.py:7 +#: venv2/lib/python2.7/site-packages/django/contrib/syndication/apps.py:7 msgid "Syndication" msgstr "Sendika" #: venv/lib/python3.6/site-packages/django/core/paginator.py:45 +#: venv2/lib/python2.7/site-packages/django/core/paginator.py:43 msgid "That page number is not an integer" msgstr "Bu sayfa numarası bir tam sayı değil" #: venv/lib/python3.6/site-packages/django/core/paginator.py:47 +#: venv2/lib/python2.7/site-packages/django/core/paginator.py:45 msgid "That page number is less than 1" msgstr "Sayfa numarası 1'den daha küçük" #: venv/lib/python3.6/site-packages/django/core/paginator.py:52 +#: venv2/lib/python2.7/site-packages/django/core/paginator.py:50 msgid "That page contains no results" msgstr "Bu sayfada hiç sonuç yok" #: venv/lib/python3.6/site-packages/django/core/validators.py:31 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:34 msgid "Enter a valid value." msgstr "Geçerli bir değer girin." #: venv/lib/python3.6/site-packages/django/core/validators.py:102 #: venv/lib/python3.6/site-packages/django/forms/fields.py:658 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:107 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:671 msgid "Enter a valid URL." msgstr "Geçerli bir URL girin." #: venv/lib/python3.6/site-packages/django/core/validators.py:154 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:160 msgid "Enter a valid integer." msgstr "Geçerli bir tam sayı girin." #: venv/lib/python3.6/site-packages/django/core/validators.py:165 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:171 msgid "Enter a valid email address." msgstr "Geçerli bir e-posta adresi girin." #. Translators: "letters" means latin letters: a-z and A-Z. #: venv/lib/python3.6/site-packages/django/core/validators.py:239 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:245 msgid "" "Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:246 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:252 msgid "" -"Enter a valid 'slug' consisting of Unicode letters, numbers, underscores, or" -" hyphens." +"Enter a valid 'slug' consisting of Unicode letters, numbers, underscores, or " +"hyphens." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:255 #: venv/lib/python3.6/site-packages/django/core/validators.py:275 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:257 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:277 msgid "Enter a valid IPv4 address." msgstr "Geçerli bir IPv4 adresi girin." #: venv/lib/python3.6/site-packages/django/core/validators.py:260 #: venv/lib/python3.6/site-packages/django/core/validators.py:276 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:262 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:278 msgid "Enter a valid IPv6 address." msgstr "Geçerli bir IPv6 adresi girin." #: venv/lib/python3.6/site-packages/django/core/validators.py:270 #: venv/lib/python3.6/site-packages/django/core/validators.py:274 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:272 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:276 msgid "Enter a valid IPv4 or IPv6 address." msgstr "Geçerli bir IPv4 veya IPv6 adresi girin." #: venv/lib/python3.6/site-packages/django/core/validators.py:304 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:308 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1131 msgid "Enter only digits separated by commas." msgstr "Sadece virgüllerle ayrılmış sayılar girin." #: venv/lib/python3.6/site-packages/django/core/validators.py:310 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:314 #, python-format msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:342 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:345 #, python-format msgid "Ensure this value is less than or equal to %(limit_value)s." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:351 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:354 #, python-format msgid "Ensure this value is greater than or equal to %(limit_value)s." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:361 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:364 #, python-format msgid "" "Ensure this value has at least %(limit_value)d character (it has " @@ -3848,6 +3918,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:376 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:379 #, python-format msgid "" "Ensure this value has at most %(limit_value)d character (it has " @@ -3861,10 +3932,13 @@ msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:395 #: venv/lib/python3.6/site-packages/django/forms/fields.py:290 #: venv/lib/python3.6/site-packages/django/forms/fields.py:325 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:303 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:340 msgid "Enter a number." msgstr "Bir sayı girin." #: venv/lib/python3.6/site-packages/django/core/validators.py:397 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:399 #, python-format msgid "Ensure that there are no more than %(max)s digit in total." msgid_plural "Ensure that there are no more than %(max)s digits in total." @@ -3872,6 +3946,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:402 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:404 #, python-format msgid "Ensure that there are no more than %(max)s decimal place." msgid_plural "Ensure that there are no more than %(max)s decimal places." @@ -3879,6 +3954,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:407 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:409 #, python-format msgid "" "Ensure that there are no more than %(max)s digit before the decimal point." @@ -3888,6 +3964,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:469 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:463 #, python-format msgid "" "File extension '%(extension)s' is not allowed. Allowed extensions are: " @@ -3900,28 +3977,35 @@ msgstr "Null karakterlere izin verilmiyor." #: venv/lib/python3.6/site-packages/django/db/models/base.py:1162 #: venv/lib/python3.6/site-packages/django/forms/models.py:756 +#: venv2/lib/python2.7/site-packages/django/db/models/base.py:1209 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:749 msgid "and" msgstr "ve" #: venv/lib/python3.6/site-packages/django/db/models/base.py:1164 +#: venv2/lib/python2.7/site-packages/django/db/models/base.py:1211 #, python-format msgid "%(model_name)s with this %(field_labels)s already exists." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:104 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:116 #, python-format msgid "Value %(value)r is not a valid choice." msgstr "%(value)r değeri geçerli bir seçenek değil." #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:105 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:117 msgid "This field cannot be null." msgstr "Bu alan null olamaz" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:106 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:118 msgid "This field cannot be blank." msgstr "Bu alan boş bırakılamaz." #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:107 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:119 #, python-format msgid "%(model_name)s with this %(field_label)s already exists." msgstr "" @@ -3929,33 +4013,42 @@ msgstr "" #. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. #. Eg: "Title must be unique for pub_date year" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:111 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:123 #, python-format msgid "" "%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:128 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:140 #, python-format msgid "Field of type: %(field_type)s" msgstr "Alan tipi: %(field_type)s" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:905 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1772 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:901 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1809 msgid "Integer" msgstr "Tam sayı" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:909 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1770 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:905 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1807 #, python-format msgid "'%(value)s' value must be an integer." msgstr "'%(value)s' değeri bir sayısal değer olmalıdır" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:984 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1850 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:978 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1878 msgid "Big (8 byte) integer" msgstr "Büyük (8 bayt) sayı" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:996 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:990 #, python-format msgid "'%(value)s' value must be either True or False." msgstr "'%(value)s' değeri ya True ya da False olmalıdır." @@ -3966,19 +4059,23 @@ msgid "'%(value)s' value must be either True, False, or None." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:999 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:992 msgid "Boolean (Either True or False)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1040 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1058 #, python-format msgid "String (up to %(max_length)s)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1104 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1115 msgid "Comma-separated integers" msgstr "Virgülle ayrılmış tam sayılar" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1153 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1172 #, python-format msgid "" "'%(value)s' value has an invalid date format. It must be in YYYY-MM-DD " @@ -3987,6 +4084,8 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1155 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1298 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1174 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1319 #, python-format msgid "" "'%(value)s' value has the correct format (YYYY-MM-DD) but it is an invalid " @@ -3994,104 +4093,126 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1158 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1177 msgid "Date (without time)" msgstr "Tarih (zaman yok)" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1296 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1317 #, python-format msgid "" -"'%(value)s' value has an invalid format. It must be in YYYY-MM-DD " -"HH:MM[:ss[.uuuuuu]][TZ] format." +"'%(value)s' value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1300 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1321 #, python-format msgid "" -"'%(value)s' value has the correct format (YYYY-MM-DD " -"HH:MM[:ss[.uuuuuu]][TZ]) but it is an invalid date/time." +"'%(value)s' value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1304 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1325 msgid "Date (with time)" msgstr "Tarih (zamanlı)" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1452 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1475 #, python-format msgid "'%(value)s' value must be a decimal number." msgstr "'%(value)s' değeri bir tam sayı olmalıdır." #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1454 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1477 msgid "Decimal number" msgstr "Ondalık sayı" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1593 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1628 #, python-format msgid "" -"'%(value)s' value has an invalid format. It must be in [DD] " -"[HH:[MM:]]ss[.uuuuuu] format." +"'%(value)s' value has an invalid format. It must be in [DD] [HH:[MM:]]ss[." +"uuuuuu] format." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1596 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1631 msgid "Duration" msgstr "Süre" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1646 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1683 msgid "Email address" msgstr "E-posta adresi" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1669 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1707 msgid "File path" msgstr "Dosya yolu" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1735 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1773 #, python-format msgid "'%(value)s' value must be a float." 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 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1775 msgid "Floating point number" msgstr "Kayan noktalı sayı" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1866 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1893 msgid "IPv4 address" msgstr "IPv4 adresi" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1897 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1924 msgid "IP address" msgstr "IP Adresi" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1977 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1978 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2006 #, python-format msgid "'%(value)s' value must be either None, True or False." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1980 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2008 msgid "Boolean (Either True, False or None)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2015 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2071 msgid "Positive integer" msgstr "Pozitif sayı" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2028 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2083 msgid "Positive small integer" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2042 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2096 #, python-format msgid "Slug (up to %(max_length)s)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2074 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2130 msgid "Small integer" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2081 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2137 msgid "Text" msgstr "Metin" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2109 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2163 #, python-format msgid "" "'%(value)s' value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " @@ -4099,6 +4220,7 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2111 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2165 #, python-format msgid "" "'%(value)s' value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " @@ -4106,18 +4228,22 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2114 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2168 msgid "Time" msgstr "Zaman" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2240 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2296 msgid "URL" msgstr "URL" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2262 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2319 msgid "Raw binary data" msgstr "Ham ikili veri" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2312 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2366 #, python-format msgid "'%(value)s' is not a valid UUID." msgstr "'%(value)s' geçerli bir UUID değil." @@ -4127,66 +4253,81 @@ msgid "Universally unique identifier" msgstr "Evrensel eşsiz betimleyici" #: venv/lib/python3.6/site-packages/django/db/models/fields/files.py:221 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/files.py:228 msgid "File" msgstr "Dosya" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:778 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:788 #, python-format msgid "%(model)s instance with %(field)s %(value)r does not exist." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:780 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:790 msgid "Foreign Key (type determined by related field)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:1007 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:1029 msgid "One-to-one relationship" msgstr "Bire-bir ilişki" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:1057 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:1104 #, python-format msgid "%(from)s-%(to)s relationship" msgstr "%(from)s'den %(to)s ye ilişki" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:1058 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:1105 #, python-format msgid "%(from)s-%(to)s relationships" msgstr "%(from)s'den %(to)s ye ilişkiler" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:1100 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:1147 msgid "Many-to-many relationship" 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 -#. label +#. characters will prevent the default label_suffix to be appended to the label #: venv/lib/python3.6/site-packages/django/forms/boundfield.py:146 +#: venv2/lib/python2.7/site-packages/django/forms/boundfield.py:181 msgid ":?.!" msgstr ":?.!" #: venv/lib/python3.6/site-packages/django/forms/fields.py:53 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:56 msgid "This field is required." msgstr "Bu alan gerekli." #: venv/lib/python3.6/site-packages/django/forms/fields.py:245 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:258 msgid "Enter a whole number." msgstr "Bir tüm sayı girin." #: venv/lib/python3.6/site-packages/django/forms/fields.py:396 #: venv/lib/python3.6/site-packages/django/forms/fields.py:1126 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:418 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:1149 msgid "Enter a valid date." msgstr "Geçerli bir tarih girin." #: venv/lib/python3.6/site-packages/django/forms/fields.py:420 #: venv/lib/python3.6/site-packages/django/forms/fields.py:1127 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:442 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:1150 msgid "Enter a valid time." msgstr "Geçerli bir zaman girin." #: venv/lib/python3.6/site-packages/django/forms/fields.py:442 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:464 msgid "Enter a valid date/time." msgstr "Geçerli bir tarih/saat girin." #: venv/lib/python3.6/site-packages/django/forms/fields.py:471 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:493 msgid "Enter a valid duration." msgstr "Geçerli bir süre girin." @@ -4196,31 +4337,36 @@ msgid "The number of days must be between {min_days} and {max_days}." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:532 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:547 msgid "No file was submitted. Check the encoding type on the form." msgstr "Dosya submit edilmedi. Formdaki encoding tipini kontrol ediniz." #: venv/lib/python3.6/site-packages/django/forms/fields.py:533 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:548 msgid "No file was submitted." msgstr "Gönderilen dosya yok" #: venv/lib/python3.6/site-packages/django/forms/fields.py:534 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:549 msgid "The submitted file is empty." msgstr "Gönderilen dosya boş" #: venv/lib/python3.6/site-packages/django/forms/fields.py:536 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:551 #, python-format -msgid "" -"Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." msgid_plural "" "Ensure this filename has at most %(max)d characters (it has %(length)d)." msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:539 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:554 msgid "Please either submit a file or check the clear checkbox, not both." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:600 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:619 msgid "" "Upload a valid image. The file you uploaded was either not an image or a " "corrupted image." @@ -4231,6 +4377,9 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:762 #: venv/lib/python3.6/site-packages/django/forms/fields.py:852 #: venv/lib/python3.6/site-packages/django/forms/models.py:1270 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:776 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:872 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1265 #, python-format msgid "Select a valid choice. %(value)s is not one of the available choices." msgstr "" @@ -4239,32 +4388,41 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:853 #: venv/lib/python3.6/site-packages/django/forms/fields.py:968 #: venv/lib/python3.6/site-packages/django/forms/models.py:1269 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:873 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:990 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1264 msgid "Enter a list of values." msgstr "Bir değer listesi girin." #: venv/lib/python3.6/site-packages/django/forms/fields.py:969 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:991 msgid "Enter a complete value." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:1185 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:1208 msgid "Enter a valid UUID." msgstr "Geçerli bir UUID girin." #. Translators: This is the default suffix added to form field labels #: venv/lib/python3.6/site-packages/django/forms/forms.py:86 +#: venv2/lib/python2.7/site-packages/django/forms/forms.py:87 msgid ":" msgstr ":" #: venv/lib/python3.6/site-packages/django/forms/forms.py:212 +#: venv2/lib/python2.7/site-packages/django/forms/forms.py:213 #, python-format msgid "(Hidden field %(name)s) %(error)s" msgstr "(Gizli alan %(name)s) %(error)s" #: venv/lib/python3.6/site-packages/django/forms/formsets.py:91 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:97 msgid "ManagementForm data is missing or has been tampered with" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/formsets.py:338 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:355 #, python-format msgid "Please submit %d or fewer forms." msgid_plural "Please submit %d or fewer forms." @@ -4272,6 +4430,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/forms/formsets.py:345 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:362 #, python-format msgid "Please submit %d or more forms." msgid_plural "Please submit %d or more forms." @@ -4280,20 +4439,25 @@ msgstr[1] "" #: venv/lib/python3.6/site-packages/django/forms/formsets.py:371 #: venv/lib/python3.6/site-packages/django/forms/formsets.py:373 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:390 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:392 msgid "Order" msgstr "Sıra" #: venv/lib/python3.6/site-packages/django/forms/models.py:751 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:744 #, python-format msgid "Please correct the duplicate data for %(field)s." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:755 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:748 #, python-format msgid "Please correct the duplicate data for %(field)s, which must be unique." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:761 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:754 #, python-format msgid "" "Please correct the duplicate data for %(field_name)s which must be unique " @@ -4301,6 +4465,7 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:770 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:763 msgid "Please correct the duplicate values below." msgstr "" @@ -4309,8 +4474,8 @@ msgid "The inline value did not match the parent instance." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:1158 -msgid "" -"Select a valid choice. That choice is not one of the available choices." +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1154 +msgid "Select a valid choice. That choice is not one of the available choices." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:1272 @@ -4319,6 +4484,7 @@ msgid "\"%(pk)s\" is not a valid value." msgstr "'%(pk)s' bir geçerli değer değil." #: venv/lib/python3.6/site-packages/django/forms/utils.py:162 +#: venv2/lib/python2.7/site-packages/django/forms/utils.py:172 #, python-format msgid "" "%(datetime)s couldn't be interpreted in time zone %(current_timezone)s; it " @@ -4326,23 +4492,29 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/widgets.py:396 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:378 msgid "Currently" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/widgets.py:710 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:704 msgid "Yes" msgstr "Evet" #: venv/lib/python3.6/site-packages/django/forms/widgets.py:711 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:705 msgid "No" msgstr "Hayır" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:788 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:851 msgid "yes,no,maybe" msgstr "evet,hayır,belki" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:817 #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:834 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:880 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:897 #, python-format msgid "%(size)d byte" msgid_plural "%(size)d bytes" @@ -4350,327 +4522,401 @@ msgstr[0] "%(size)d byte" msgstr[1] "%(size)d byte" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:836 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:899 #, python-format msgid "%s KB" msgstr "%s KB" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:838 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:901 #, python-format msgid "%s MB" msgstr "%s MB" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:840 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:903 #, python-format msgid "%s GB" msgstr "%s GB" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:842 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:905 #, python-format msgid "%s TB" msgstr "%s TB" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:844 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:907 #, python-format msgid "%s PB" msgstr "%s PB" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:62 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:66 msgid "p.m." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:63 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:67 msgid "a.m." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:68 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:72 msgid "PM" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:69 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:73 msgid "AM" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:150 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:158 msgid "midnight" msgstr "gece yarısı" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:152 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:160 msgid "noon" msgstr "öğle" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Monday" msgstr "Pazartesi" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Tuesday" msgstr "Sal" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Wednesday" msgstr "Çarşamba" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Thursday" msgstr "Perşembe" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Friday" msgstr "Cuma" #: venv/lib/python3.6/site-packages/django/utils/dates.py:7 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:7 msgid "Saturday" msgstr "Cumartesi" #: venv/lib/python3.6/site-packages/django/utils/dates.py:7 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:7 msgid "Sunday" msgstr "Pazar" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Mon" msgstr "Pzt" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Tue" msgstr "Sa" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Wed" msgstr "Çar" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Thu" msgstr "Per" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Fri" msgstr "Cu" #: venv/lib/python3.6/site-packages/django/utils/dates.py:11 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:11 msgid "Sat" msgstr "Cmt" #: venv/lib/python3.6/site-packages/django/utils/dates.py:11 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:11 msgid "Sun" msgstr "Pzr" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "January" msgstr "Ocak" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "February" msgstr "Şubak" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "March" msgstr "Mart" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "April" msgstr "Nisan" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "May" msgstr "Mayıs" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "June" msgstr "Haziran" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "July" msgstr "Temmuz" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "August" msgstr "Ağustos" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "September" msgstr "Eylül" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "October" msgstr "Ekim" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "November" msgstr "Kasım" #: venv/lib/python3.6/site-packages/django/utils/dates.py:16 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:20 msgid "December" msgstr "Aralık" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "jan" msgstr "oca" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "feb" msgstr "şub" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "mar" msgstr "mar" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "apr" msgstr "nis" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "may" msgstr "may" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "jun" msgstr "haz" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "jul" msgstr "tem" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "aug" msgstr "ağu" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "sep" msgstr "eyl" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "oct" msgstr "eki" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "nov" msgstr "kas" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "dec" msgstr "ara" #: venv/lib/python3.6/site-packages/django/utils/dates.py:23 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:31 msgctxt "abbrev. month" msgid "Jan." msgstr "Oca." #: venv/lib/python3.6/site-packages/django/utils/dates.py:24 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:32 msgctxt "abbrev. month" msgid "Feb." msgstr "Şub." #: venv/lib/python3.6/site-packages/django/utils/dates.py:25 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:33 msgctxt "abbrev. month" msgid "March" msgstr "Mart" #: venv/lib/python3.6/site-packages/django/utils/dates.py:26 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:34 msgctxt "abbrev. month" msgid "April" msgstr "Nisan" #: venv/lib/python3.6/site-packages/django/utils/dates.py:27 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:35 msgctxt "abbrev. month" msgid "May" msgstr "May" #: venv/lib/python3.6/site-packages/django/utils/dates.py:28 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:36 msgctxt "abbrev. month" msgid "June" msgstr "Hazi" #: venv/lib/python3.6/site-packages/django/utils/dates.py:29 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:37 msgctxt "abbrev. month" msgid "July" msgstr "Temm" #: venv/lib/python3.6/site-packages/django/utils/dates.py:30 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:38 msgctxt "abbrev. month" msgid "Aug." msgstr "Ağu." #: venv/lib/python3.6/site-packages/django/utils/dates.py:31 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:39 msgctxt "abbrev. month" msgid "Sept." msgstr "Eyl." #: venv/lib/python3.6/site-packages/django/utils/dates.py:32 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:40 msgctxt "abbrev. month" msgid "Oct." msgstr "Ekim" #: venv/lib/python3.6/site-packages/django/utils/dates.py:33 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:41 msgctxt "abbrev. month" msgid "Nov." msgstr "Kas." #: venv/lib/python3.6/site-packages/django/utils/dates.py:34 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:42 msgctxt "abbrev. month" msgid "Dec." msgstr "Ara." #: venv/lib/python3.6/site-packages/django/utils/dates.py:37 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:45 msgctxt "alt. month" msgid "January" msgstr "Ocak" #: venv/lib/python3.6/site-packages/django/utils/dates.py:38 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:46 msgctxt "alt. month" msgid "February" msgstr "Şubat" #: venv/lib/python3.6/site-packages/django/utils/dates.py:39 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:47 msgctxt "alt. month" msgid "March" msgstr "Mart" #: venv/lib/python3.6/site-packages/django/utils/dates.py:40 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:48 msgctxt "alt. month" msgid "April" msgstr "Nisan" #: venv/lib/python3.6/site-packages/django/utils/dates.py:41 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:49 msgctxt "alt. month" msgid "May" msgstr "Mayıs" #: venv/lib/python3.6/site-packages/django/utils/dates.py:42 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:50 msgctxt "alt. month" msgid "June" msgstr "Haziran" #: venv/lib/python3.6/site-packages/django/utils/dates.py:43 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:51 msgctxt "alt. month" msgid "July" msgstr "Temmuz" #: venv/lib/python3.6/site-packages/django/utils/dates.py:44 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:52 msgctxt "alt. month" msgid "August" msgstr "Ağustos" #: venv/lib/python3.6/site-packages/django/utils/dates.py:45 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:53 msgctxt "alt. month" msgid "September" msgstr "Eylül" #: venv/lib/python3.6/site-packages/django/utils/dates.py:46 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:54 msgctxt "alt. month" msgid "October" msgstr "Ekim" #: venv/lib/python3.6/site-packages/django/utils/dates.py:47 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:55 msgctxt "alt. month" msgid "November" msgstr "Kasım" #: venv/lib/python3.6/site-packages/django/utils/dates.py:48 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:56 msgctxt "alt. month" msgid "December" msgstr "Aralık" #: venv/lib/python3.6/site-packages/django/utils/ipv6.py:8 +#: venv2/lib/python2.7/site-packages/django/utils/ipv6.py:12 msgid "This is not a valid IPv6 address." msgstr "Bu bir geçerli IPv6 adresi değil." @@ -4681,16 +4927,20 @@ msgid "%(truncated_text)s…" msgstr "%(truncated_text)s..." #: venv/lib/python3.6/site-packages/django/utils/text.py:233 +#: venv2/lib/python2.7/site-packages/django/utils/text.py:251 msgid "or" msgstr "veya" #. Translators: This string is used as a separator between list elements #: venv/lib/python3.6/site-packages/django/utils/text.py:252 #: venv/lib/python3.6/site-packages/django/utils/timesince.py:83 +#: venv2/lib/python2.7/site-packages/django/utils/text.py:270 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:71 msgid ", " msgstr "," #: venv/lib/python3.6/site-packages/django/utils/timesince.py:9 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:11 #, python-format msgid "%d year" msgid_plural "%d years" @@ -4698,6 +4948,7 @@ msgstr[0] "%dyıl" msgstr[1] "%d yıl" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:12 #, python-format msgid "%d month" msgid_plural "%d months" @@ -4705,6 +4956,7 @@ msgstr[0] "%d ay" msgstr[1] "%day" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:11 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:13 #, python-format msgid "%d week" msgid_plural "%d weeks" @@ -4712,6 +4964,7 @@ msgstr[0] "%dhafta" msgstr[1] "%d hafta" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:12 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:14 #, python-format msgid "%d day" msgid_plural "%d days" @@ -4719,6 +4972,7 @@ msgstr[0] "%d gün" msgstr[1] "%dgün" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:13 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:15 #, python-format msgid "%d hour" msgid_plural "%d hours" @@ -4726,6 +4980,7 @@ msgstr[0] "%dsaat" msgstr[1] "%d saat" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:16 #, python-format msgid "%d minute" msgid_plural "%d minutes" @@ -4733,18 +4988,22 @@ msgstr[0] "%d dakika" msgstr[1] "%ddakika" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:72 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:60 msgid "0 minutes" msgstr "0 dakika" #: venv/lib/python3.6/site-packages/django/views/csrf.py:110 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:109 msgid "Forbidden" msgstr "Yasaklı" #: venv/lib/python3.6/site-packages/django/views/csrf.py:111 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:110 msgid "CSRF verification failed. Request aborted." msgstr "CSRF doğrulama başarısız. İstek iptal edildi." #: venv/lib/python3.6/site-packages/django/views/csrf.py:115 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:114 msgid "" "You are seeing this message because this HTTPS site requires a 'Referer " "header' to be sent by your Web browser, but none was sent. This header is " @@ -4753,6 +5012,7 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:120 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:119 msgid "" "If you have configured your browser to disable 'Referer' headers, please re-" "enable them, at least for this site, or for HTTPS connections, or for 'same-" @@ -4761,14 +5021,15 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:124 msgid "" -"If you are using the tag or" -" including the 'Referrer-Policy: no-referrer' header, please remove them. " -"The CSRF protection requires the 'Referer' header to do strict referer " -"checking. If you're concerned about privacy, use alternatives like for links to third-party sites." +"If you are using the tag or " +"including the 'Referrer-Policy: no-referrer' header, please remove them. The " +"CSRF protection requires the 'Referer' header to do strict referer checking. " +"If you're concerned about privacy, use alternatives like for links to third-party sites." msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:132 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:124 msgid "" "You are seeing this message because this site requires a CSRF cookie when " "submitting forms. This cookie is required for security reasons, to ensure " @@ -4776,84 +5037,104 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:137 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:129 msgid "" "If you have configured your browser to disable cookies, please re-enable " "them, at least for this site, or for 'same-origin' requests." msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:142 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:134 msgid "More information is available with DEBUG=True." msgstr "Daha fazla bilgi DEBUG=True ile edinilebilir." #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:41 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:48 msgid "No year specified" msgstr "Yıl belirtilmedi" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:61 #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:111 #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:208 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:72 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:132 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:249 msgid "Date out of range" msgstr "Tarih aralık dışında" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:90 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:107 msgid "No month specified" msgstr "Ay belirtilmedi" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:142 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:169 msgid "No day specified" msgstr "Gün belirtilmedi" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:188 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:225 msgid "No week specified" msgstr "Hafta belirtilmedi" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:338 #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:367 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:387 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:415 #, python-format msgid "No %(verbose_name_plural)s available" msgstr "%(verbose_name_plural)s uygun olmayan" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:589 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:669 #, python-format msgid "" -"Future %(verbose_name_plural)s not available because " -"%(class_name)s.allow_future is False." +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:623 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:703 #, python-format msgid "Invalid date string '%(datestr)s' given format '%(format)s'" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/detail.py:54 +#: venv2/lib/python2.7/site-packages/django/views/generic/detail.py:55 #, python-format msgid "No %(verbose_name)s found matching the query" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/list.py:67 +#: venv2/lib/python2.7/site-packages/django/views/generic/list.py:77 msgid "Page is not 'last', nor can it be converted to an int." msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/list.py:72 +#: venv2/lib/python2.7/site-packages/django/views/generic/list.py:82 #, python-format msgid "Invalid page (%(page_number)s): %(message)s" msgstr "Geçersiz sayfa (%(page_number)s): %(message)s" #: venv/lib/python3.6/site-packages/django/views/generic/list.py:154 +#: venv2/lib/python2.7/site-packages/django/views/generic/list.py:172 #, python-format msgid "Empty list and '%(class_name)s.allow_empty' is False." msgstr "" #: venv/lib/python3.6/site-packages/django/views/static.py:40 +#: venv2/lib/python2.7/site-packages/django/views/static.py:44 msgid "Directory indexes are not allowed here." msgstr "Dizin indekslerine burada izin verilmişyor." #: venv/lib/python3.6/site-packages/django/views/static.py:42 +#: venv2/lib/python2.7/site-packages/django/views/static.py:46 #, python-format msgid "\"%(path)s\" does not exist" msgstr "\"%(path)s\" mevcut değil" #: venv/lib/python3.6/site-packages/django/views/static.py:80 +#: venv2/lib/python2.7/site-packages/django/views/static.py:86 #, python-format msgid "Index of %(directory)s" msgstr "%(directory)s indeksi" @@ -4868,9 +5149,9 @@ msgid "" "View release notes for Django %(version)s" msgstr "" -"Django %(version)s için sürüm notlarını görüntüle" +"Django %(version)s için sürüm notlarını görüntüle" #: venv/lib/python3.6/site-packages/django/views/templates/default_urlconf.html:367 msgid "The install worked successfully! Congratulations!" @@ -4879,15 +5160,15 @@ msgstr "Bu kurulum başarıyla çalıştırıldı! Tebrikler!" #: venv/lib/python3.6/site-packages/django/views/templates/default_urlconf.html:368 #, python-format msgid "" -"You are seeing this page because DEBUG=True is in your settings file " -"and you have not configured any URLs." +"You are seeing this page because 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." +"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" @@ -4912,3 +5193,398 @@ msgstr "Django Topluluğu" #: venv/lib/python3.6/site-packages/django/views/templates/default_urlconf.html:408 msgid "Connect, get help, or contribute" msgstr "Bağlan, yardım al veya katkıda bulun" + +#: venv/lib/python3.6/site-packages/django_icons/renderers/image.py:217 +msgid "Icon of {}" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:58 +#, fuzzy +#| msgid "Please enter bridge name" +msgid "Please enter your OTP token." +msgstr "Lütfen köprü adı giriniz" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:59 +#, python-brace-format +msgid "Error generating challenge: {0}" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:60 +msgid "The selected OTP device is not interactive" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:61 +#, python-brace-format +msgid "OTP Challenge: {0}" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:62 +msgid "Invalid token. Please make sure you have entered it correctly." +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:64 +#, python-format +msgid "" +"Verification temporarily disabled because of %(failure_count)d failed " +"attempt, please try again soon." +msgid_plural "" +"Verification temporarily disabled because of %(failure_count)d failed " +"attempts, please try again soon." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:67 +msgid "Verification of the token is currently disabled" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:36 +msgid "Please correct the error below." +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:36 +msgid "Please correct the errors below." +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:52 +#, python-format +msgid "" +"You are authenticated as %(username)s, but are not authorized to access this " +"page. Would you like to login to a different account?" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:72 +#, fuzzy +#| msgid "Device" +msgid "OTP Device:" +msgstr "Aygıt" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:77 +msgid "OTP Token:" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:82 +msgid "Forgotten your password or username?" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:86 +#, fuzzy +#| msgid "Log Out" +msgid "Log in" +msgstr "Oturumu Kapat" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:88 +msgid "Get OTP Challenge" +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1093 +msgid "The inline foreign key did not match the parent instance primary key." +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1267 +#, fuzzy, python-format +#| msgid "\"%(pk)s\" is not a valid value." +msgid "\"%(pk)s\" is not a valid value for a primary key." +msgstr "'%(pk)s' bir geçerli değer değil." + +#: venv2/lib/python2.7/site-packages/django/utils/text.py:81 +#, fuzzy, python-format +#| msgctxt "String to return when truncating text" +#| msgid "%(truncated_text)s…" +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s..." +msgstr "%(truncated_text)s..." + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:520 +msgid "Welcome to Django" +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:521 +msgid "It worked!" +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:522 +msgid "Congratulations on your first Django-powered page." +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:524 +msgid "" +"Next, start your first app by running python manage.py startapp " +"[app_label]." +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:527 +#, fuzzy +#| msgid "" +#| "You are seeing this page because DEBUG=True is in your settings file and you have not configured " +#| "any URLs." +msgid "" +"You're seeing this message because you have DEBUG = True in " +"your Django settings file and you haven't configured any URLs. Get to work!" +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." + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:313 +#, fuzzy +#| msgid "Usage" +msgid "usage: " +msgstr "Kullanım" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:821 +msgid ".__call__() not defined" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1105 +#, python-format +msgid "unknown parser %r (choices: %s)" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1146 +#, python-format +msgid "argument \"-\" with mode %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1349 +#, python-format +msgid "cannot merge actions - two groups are named %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1387 +msgid "'required' is an invalid argument for positionals" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1407 +#, python-format +msgid "invalid option string %r: must start with a character %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1428 +#, python-format +msgid "dest= is required for options like %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1445 +#, python-format +msgid "invalid conflict_resolution value: %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1463 +#, python-format +msgid "conflicting option string(s): %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1526 +msgid "mutually exclusive arguments must be optional" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1596 +msgid "positional arguments" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1597 +msgid "optional arguments" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1615 +msgid "show this help message and exit" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1621 +msgid "show program's version number and exit" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1653 +msgid "cannot have multiple subparser arguments" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1705 +#, python-format +msgid "unrecognized arguments: %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1802 +#, python-format +msgid "not allowed with argument %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1848 +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1862 +#, python-format +msgid "ignored explicit argument %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1952 +msgid "too few arguments" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1959 +#, python-format +msgid "argument %s is required" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1973 +#, python-format +msgid "one of the arguments %s is required" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2019 +msgid "expected one argument" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2020 +msgid "expected at most one argument" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2021 +msgid "expected at least one argument" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2023 +#, python-format +msgid "expected %s argument(s)" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2080 +#, python-format +msgid "ambiguous option: %s could match %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2142 +#, python-format +msgid "unexpected option string: %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2243 +#, python-format +msgid "%r is not callable" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2259 +#, fuzzy, python-format +#| msgid "Enter a valid value." +msgid "invalid %s value: %r" +msgstr "Geçerli bir değer girin." + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2269 +#, python-format +msgid "invalid choice: %r (choose from %s)" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2362 +#, python-format +msgid "%s: error: %s\n" +msgstr "" + +#: webvirtcloud/middleware.py:21 +#, python-format +msgid "libvirt Error - %(exception)s" +msgstr "" + +#~ msgid "No username has been entered" +#~ msgstr "Kullanıcı adı girilmedi" + +#~ msgid "No password has been entered" +#~ msgstr "Parola girilmedi" + +#~ msgid "User doesn't have any Instance" +#~ msgstr "Kullanıcının hiç sanal makinesi yok" + +#~ msgid "Edit privilegies for" +#~ msgstr "İmtiyazları düzenle" + +#~ msgid "Add Instance for User" +#~ msgstr "Kullanıcıya sanal makine ekle" + +#~ msgid "Edit Password" +#~ msgstr "Parola Düzenle" + +#~ msgid "Old" +#~ msgstr "Eski" + +#~ msgid "New" +#~ msgstr "Yeni" + +#~ msgid "Retry" +#~ msgstr "Yeniden dene" + +#~ msgid "Instance already added" +#~ msgstr "Sanal makine zaten eklenmiş" + +#~ msgid "No hostname has been entered" +#~ msgstr "Sunucu adı girilmedi" + +#~ msgid "No IP / Domain name has been entered" +#~ msgstr "IP/Alan adı girilmedi" + +#~ msgid "No login has been entered" +#~ msgstr "Oturum açma bilgileri girilmedi" + +#~ msgid "The name of the host must not contain any special characters" +#~ msgstr "Sunucu adı özel karakterler içeremez" + +#~ msgid "The name of the host must not exceed 20 characters" +#~ msgstr "Sunucu adı 20 karakterden fazla olamaz" + +#~ msgid "No details available" +#~ msgstr "Ayrıntı mevcut değil" + +#~ msgid "Edit connection" +#~ msgstr "Bağlantıyı düzenle" + +#~ msgid "FQDN / IP" +#~ msgstr "FQDN / IP" + +#~ msgid "Hypervisor doesn't have any Computes" +#~ msgstr "Hipervizör hiçbir Sunucya sahip değil" + +#~ msgid "No HDD image has been entered" +#~ msgstr "HDD imajı belirtilmedi" + +#~ msgid "Micro" +#~ msgstr "Mikro" + +#~ msgid "You don't have any Instance" +#~ msgstr "Hiç sanal makineniz yok" + +#~ msgid "Not Active" +#~ msgstr "Pasif" + +#~ msgid "Connection Failed" +#~ msgstr "Bağlantı Başarısız" + +#~ msgid "Delete Ownership" +#~ msgstr "Sahipliği sil" + +#~ msgid "To set console's type, shutdown the instance." +#~ msgstr "Konsol tipini ayarlamak için sanal makineyi kapatın" + +#~ msgid "To set console listen address, shutdown the instance." +#~ msgstr "Dinleme adresini ayarlamak için sanal makineyi kapatın." + +#~ msgid "Listen on" +#~ msgstr "Dinlenen" + +#~ msgid "Generate" +#~ msgstr "Oluştur" + +#~ msgid "To set console's keymap, shutdown the instance." +#~ msgstr "Konsolun keymap ini ayarlamak için sanal makineyi kapatın." + +#~ msgid "Delete storage for instance?" +#~ msgstr "Sanal makinenin depolamasını da sil?" + +#~ msgid "Fixing UUID {uuid}" +#~ msgstr "UUID: {uuid} düzeltiliyor" + +#~ msgid "Instance does not exist: Creating new instance" +#~ msgstr "Sanal makine mevcut değil: Yeni sanal makine oluşturuluyor" + +#~ msgid "The disk: {dev} is detached but not deleted. Error: {err}" +#~ msgstr "{dev} diski makineden ayrıldı fakat silinemedi. Hata: {err}" + +#~ msgid "Enter the console password or select Generate" +#~ msgstr "Konsol parolası girin veya Oluştur u seçin" diff --git a/locale/uk/LC_MESSAGES/django.po b/locale/uk/LC_MESSAGES/django.po index f6fa43b..5eea391 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-12 09:03+0000\n" +"POT-Creation-Date: 2020-07-20 09:29+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,253 +21,181 @@ msgstr "" "100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || " "(n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" -#: accounts/forms.py:10 -msgid "No username has been entered" +#: accounts/forms.py:24 +msgid "Instance owned by another user" msgstr "" -#: accounts/forms.py:13 -msgid "No password has been entered" -msgstr "" - -#: accounts/forms.py:19 create/forms.py:23 -msgid "The flavor name must not contain any special characters" -msgstr "" - -#: accounts/forms.py:21 create/forms.py:25 -msgid "The flavor name must not exceed 20 characters" -msgstr "" - -#: accounts/forms.py:26 create/forms.py:30 -msgid "Flavor name is already use" -msgstr "" - -#: accounts/models.py:22 -msgid "key name" -msgstr "" - -#: accounts/models.py:23 -msgid "public key" +#: accounts/models.py:24 +#, python-format +msgid "Instance \"%(inst)s\" of user %(user)s" msgstr "" #: accounts/models.py:32 +msgid "key name" +msgstr "" + +#: accounts/models.py:33 +msgid "public key" +msgstr "" + +#: accounts/models.py:42 msgid "max instances" msgstr "" -#: accounts/models.py:34 accounts/models.py:41 accounts/models.py:47 -#: accounts/models.py:53 +#: accounts/models.py:44 accounts/models.py:51 accounts/models.py:57 +#: accounts/models.py:63 msgid "-1 for unlimited. Any integer value" msgstr "" -#: accounts/models.py:39 +#: accounts/models.py:49 msgid "max CPUs" msgstr "" -#: accounts/models.py:45 +#: accounts/models.py:55 msgid "max memory" msgstr "" -#: accounts/models.py:51 +#: accounts/models.py:61 msgid "max disk size" msgstr "" -#: accounts/models.py:89 +#: accounts/models.py:77 msgid "Can change password" msgstr "" -#: accounts/templates/account.html:3 admin/templates/admin/common/form.html:6 -#: admin/templates/admin/logs.html:32 admin/templates/admin/user_form.html:6 -#: instances/templates/add_instance_owner_block.html:18 -#: instances/templates/allinstances_index_grouped.html:7 -#: instances/templates/allinstances_index_nongrouped.html:6 -#: instances/templates/instance.html:1644 instances/templates/instances.html:71 -msgid "User" +#: accounts/templates/account.html:4 accounts/templates/account.html:12 +msgid "User Profile" msgstr "" -#: accounts/templates/account.html:23 accounts/templates/profile.html:98 -msgid "Key name" +#: accounts/templates/account.html:21 +#: computes/templates/computes/instances.html:5 +#: computes/templates/computes/instances.html:32 +#: computes/templates/overview.html:16 instances/templates/allinstances.html:5 +#: instances/templates/allinstances.html:9 +#: instances/templates/bottom_bar.html:17 +#: interfaces/templates/interface.html:14 +#: interfaces/templates/interfaces.html:17 networks/templates/network.html:16 +#: networks/templates/networks.html:20 nwfilters/templates/nwfilter.html:15 +#: nwfilters/templates/nwfilters.html:24 secrets/templates/secrets.html:20 +#: storages/templates/storage.html:20 storages/templates/storages.html:20 +#: templates/navbar.html:14 +msgid "Instances" msgstr "" -#: accounts/templates/account.html:24 accounts/templates/profile.html:104 -msgid "Public key" +#: accounts/templates/account.html:24 +msgid "Public Keys" msgstr "" -#: accounts/templates/account.html:47 accounts/templates/accounts-list.html:25 -#: accounts/templates/accounts.html:21 admin/templates/admin/group_list.html:24 -#: admin/templates/admin/logs.html:21 admin/templates/admin/user_list.html:25 -#: computes/templates/computes.html:241 -#: create/templates/create_instance_w2.html:70 -#: instances/templates/allinstances.html:33 -#: instances/templates/allinstances.html:49 -#: instances/templates/instances.html:61 -#: interfaces/templates/interfaces.html:47 networks/templates/networks.html:50 -#: nwfilters/templates/nwfilters.html:138 secrets/templates/secrets.html:50 -#: storages/templates/storage.html:189 storages/templates/storages.html:50 -msgid "Warning" -msgstr "" - -#: accounts/templates/account.html:47 -msgid "User doesn't have any Instance" -msgstr "" - -#: accounts/templates/account.html:56 -#: accounts/templates/create_user_inst_block.html:18 -#: admin/templates/admin/logs.html:33 instances/templates/instance.html:4 +#: accounts/templates/account.html:34 admin/templates/admin/logs.html:34 +#: instances/templates/instance.html:4 msgid "Instance" msgstr "" -#: accounts/templates/account.html:57 accounts/templates/account.html:88 +#: accounts/templates/account.html:35 msgid "VNC" msgstr "" -#: accounts/templates/account.html:58 accounts/templates/account.html:97 -#: instances/templates/instance.html:88 instances/templates/instance.html:412 -#: instances/templates/instance.html:414 instances/templates/instance.html:441 -#: instances/templates/instance.html:476 instances/templates/instance.html:480 -#: instances/templates/instance.html:497 instances/templates/instance.html:499 -#: instances/templates/instance.html:504 +#: accounts/templates/account.html:36 instances/templates/instance.html:87 +#: instances/templates/instances/resize_tab.html:56 +#: instances/templates/instances/resize_tab.html:58 +#: instances/templates/instances/resize_tab.html:85 +#: instances/templates/instances/resize_tab.html:121 +#: instances/templates/instances/resize_tab.html:125 +#: instances/templates/instances/resize_tab.html:151 +#: instances/templates/instances/resize_tab.html:153 +#: instances/templates/instances/resize_tab.html:158 msgid "Resize" msgstr "" -#: accounts/templates/account.html:59 accounts/templates/account.html:106 -#: accounts/templates/account.html:127 +#: accounts/templates/account.html:37 accounts/templates/account.html:55 #: accounts/templates/accounts-list.html:133 -#: accounts/templates/accounts.html:126 accounts/templates/profile.html:84 -#: admin/templates/admin/common/confirm_delete.html:6 -#: admin/templates/admin/common/confirm_delete.html:16 +#: accounts/templates/accounts.html:126 accounts/templates/profile.html:60 #: admin/templates/admin/common/list.html:22 #: admin/templates/admin/group_list.html:47 -#: admin/templates/admin/user_list.html:67 computes/templates/computes.html:98 -#: computes/templates/computes.html:142 computes/templates/computes.html:190 -#: computes/templates/computes.html:220 instances/templates/instance.html:873 -#: instances/templates/instance.html:880 interfaces/templates/interface.html:61 -#: networks/templates/network.html:53 nwfilters/templates/nwfilter.html:114 -#: nwfilters/templates/nwfilter.html:154 nwfilters/templates/nwfilters.html:123 -#: secrets/templates/secrets.html:77 storages/templates/storage.html:63 -#: storages/templates/storage.html:176 +#: admin/templates/admin/user_list.html:67 +#: computes/templates/computes/list.html:55 +#: instances/templates/instances/settings_tab.html:310 +#: instances/templates/instances/settings_tab.html:314 +#: interfaces/templates/interface.html:61 networks/templates/network.html:53 +#: nwfilters/templates/nwfilter.html:114 nwfilters/templates/nwfilter.html:154 +#: nwfilters/templates/nwfilters.html:123 secrets/templates/secrets.html:77 +#: storages/templates/storage.html:62 storages/templates/storage.html:175 +#: templates/common/confirm_delete.html:6 +#: templates/common/confirm_delete.html:16 #: venv/lib/python3.6/site-packages/django/forms/formsets.py:375 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:394 msgid "Delete" msgstr "" -#: accounts/templates/account.html:60 -#: create/templates/create_instance_w2.html:85 -#: instances/templates/instance.html:556 instances/templates/instance.html:831 +#: accounts/templates/account.html:38 +#: instances/templates/create_instance_w2.html:86 +#: instances/templates/instances/settings_tab.html:239 +#: instances/templates/instances/snapshots_tab.html:49 #: nwfilters/templates/nwfilter.html:104 nwfilters/templates/nwfilter.html:138 #: nwfilters/templates/nwfilters.html:60 secrets/templates/secrets.html:62 -#: storages/templates/storage.html:102 +#: storages/templates/storage.html:101 msgid "Action" msgstr "" -#: accounts/templates/account.html:81 -msgid "Edit privilegies for" +#: accounts/templates/account.html:50 +msgid "edit" msgstr "" -#: accounts/templates/account.html:91 accounts/templates/account.html:100 -#: accounts/templates/account.html:109 -msgid "False" +#: accounts/templates/account.html:68 accounts/templates/profile.html:74 +msgid "Key name" msgstr "" -#: accounts/templates/account.html:116 -#: accounts/templates/accounts-list.html:145 -#: accounts/templates/accounts.html:138 -#: accounts/templates/create_user_block.html:31 -#: accounts/templates/create_user_inst_block.html:29 -#: computes/templates/computes.html:101 computes/templates/computes.html:145 -#: computes/templates/computes.html:193 computes/templates/computes.html:223 -#: create/templates/create_flav_block.html:51 -#: create/templates/create_instance_w2.html:273 -#: instances/templates/add_instance_network_block.html:49 -#: instances/templates/add_instance_owner_block.html:29 -#: instances/templates/add_instance_volume.html:89 -#: instances/templates/add_instance_volume.html:144 -#: instances/templates/create_inst_block.html:34 -#: instances/templates/edit_instance_volume.html:123 -#: instances/templates/instance.html:993 -#: interfaces/templates/create_iface_block.html:135 -#: networks/templates/add_network_qos.html:50 -#: networks/templates/create_net_block.html:84 -#: networks/templates/modify_ipv4_fixed_address.html:44 -#: networks/templates/modify_ipv6_fixed_address.html:44 -#: nwfilters/templates/add_nwf_rule.html:25 -#: nwfilters/templates/create_nwfilter_block.html:23 -#: nwfilters/templates/nwfilters.html:83 nwfilters/templates/nwfilters.html:111 -#: secrets/templates/create_secret_block.html:54 -#: secrets/templates/secrets.html:102 -#: storages/templates/create_stg_block.html:55 -#: storages/templates/create_stg_block.html:84 -#: storages/templates/create_stg_block.html:140 -#: storages/templates/create_stg_block.html:202 -#: storages/templates/create_stg_block.html:230 -#: storages/templates/create_stg_vol_block.html:27 -#: storages/templates/create_stg_vol_block.html:81 -#: storages/templates/storage.html:156 -msgid "Close" -msgstr "" - -#: accounts/templates/account.html:117 accounts/templates/accounts-list.html:45 -#: accounts/templates/accounts-list.html:148 -#: accounts/templates/accounts.html:36 accounts/templates/accounts.html:141 -#: admin/templates/admin/common/list.html:16 -#: admin/templates/admin/group_list.html:44 -#: admin/templates/admin/user_list.html:61 computes/templates/computes.html:33 -#: networks/templates/network.html:85 nwfilters/templates/nwfilter.html:62 -#: secrets/templates/secrets.html:74 -msgid "Edit" -msgstr "" - -#: accounts/templates/account.html:127 accounts/templates/profile.html:84 -#: create/templates/create_instance_w2.html:291 -#: instances/templates/instance.html:581 instances/templates/instance.html:1004 -#: instances/templates/instance.html:1074 -#: instances/templates/instance.html:1079 -#: interfaces/templates/interface.html:61 -#: interfaces/templates/interface.html:63 networks/templates/network.html:53 -#: networks/templates/network.html:55 networks/templates/network.html:65 -#: networks/templates/network.html:139 networks/templates/network.html:192 -#: networks/templates/network.html:197 networks/templates/network.html:252 -#: networks/templates/network.html:301 networks/templates/network.html:306 -#: networks/templates/network.html:356 networks/templates/network.html:361 -#: nwfilters/templates/nwfilter.html:114 nwfilters/templates/nwfilter.html:154 -#: nwfilters/templates/nwfilters.html:123 secrets/templates/secrets.html:77 -#: storages/templates/storage.html:64 storages/templates/storage.html:67 -#: storages/templates/storage.html:79 storages/templates/storage.html:176 -msgid "Are you sure?" +#: accounts/templates/account.html:69 accounts/templates/profile.html:80 +msgid "Public key" msgstr "" #: accounts/templates/accounts-list.html:4 #: accounts/templates/accounts-list.html:13 accounts/templates/accounts.html:3 #: accounts/templates/accounts.html:9 admin/templates/admin/group_list.html:5 #: admin/templates/admin/user_list.html:6 -#: admin/templates/admin/user_list.html:16 admin/views.py:83 -#: instances/templates/instance.html:657 templates/navbar.html:29 +#: admin/templates/admin/user_list.html:16 admin/views.py:84 +#: instances/templates/instances/settings_tab.html:63 templates/navbar.html:29 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 +#: computes/templates/computes/instances.html:18 +#: instances/templates/allinstances.html:16 +#: nwfilters/templates/nwfilters.html:11 storages/templates/storage.html:88 +#: templates/search_block.html:3 msgid "Search" msgstr "" +#: accounts/templates/accounts-list.html:25 accounts/templates/accounts.html:21 +#: admin/templates/admin/group_list.html:24 admin/templates/admin/logs.html:22 +#: admin/templates/admin/user_list.html:25 +#: computes/templates/computes/instances.html:57 +#: computes/templates/computes/list.html:21 +#: instances/templates/create_instance_w2.html:71 +#: interfaces/templates/interfaces.html:47 networks/templates/networks.html:50 +#: nwfilters/templates/nwfilters.html:138 secrets/templates/secrets.html:50 +#: storages/templates/storage.html:188 storages/templates/storages.html:50 +msgid "Warning" +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" msgstr "" -#: accounts/templates/accounts-list.html:33 accounts/templates/profile.html:27 -#: admin/templates/admin/user_list.html:33 computes/templates/computes.html:79 -#: computes/templates/computes.html:127 computes/templates/computes.html:170 +#: accounts/templates/accounts-list.html:33 accounts/templates/profile.html:31 +#: admin/templates/admin/user_list.html:33 msgid "Username" msgstr "" #: accounts/templates/accounts-list.html:34 accounts/templates/accounts.html:44 -#: admin/templates/admin/user_list.html:34 computes/templates/computes.html:40 -#: instances/templates/allinstances.html:57 -#: instances/templates/allinstances_index_grouped.html:8 -#: instances/templates/allinstances_index_nongrouped.html:7 -#: instances/templates/instances.html:72 +#: admin/templates/admin/user_list.html:34 +#: computes/templates/computes/instances.html:68 +#: computes/templates/computes/list.html:30 +#: instances/templates/allinstances_index_grouped.html:9 +#: instances/templates/allinstances_index_nongrouped.html:9 msgid "Status" msgstr "" @@ -282,22 +210,33 @@ msgid "Superuser" msgstr "" #: accounts/templates/accounts-list.html:37 -#: instances/templates/instance.html:631 instances/templates/instance.html:1444 -#: instances/templates/instance.html:1446 -#: instances/templates/instance_actions.html:7 +#: instances/templates/instance_actions.html:6 +#: instances/templates/instances/settings_tab.html:37 +#: instances/templates/instances/settings_tab.html:783 +#: instances/templates/instances/settings_tab.html:785 #: nwfilters/templates/nwfilters.html:112 -#: nwfilters/templates/nwfilters.html:118 storages/templates/storage.html:157 -#: storages/templates/storage.html:164 +#: nwfilters/templates/nwfilters.html:118 storages/templates/storage.html:156 +#: storages/templates/storage.html:163 msgid "Clone" msgstr "" +#: accounts/templates/accounts-list.html:45 +#: accounts/templates/accounts-list.html:148 +#: accounts/templates/accounts.html:36 accounts/templates/accounts.html:141 +#: admin/templates/admin/common/list.html:16 +#: admin/templates/admin/group_list.html:44 +#: admin/templates/admin/user_list.html:61 +#: computes/templates/computes/list.html:54 networks/templates/network.html:85 +#: nwfilters/templates/nwfilter.html:62 secrets/templates/secrets.html:74 +msgid "Edit" +msgstr "" + #: accounts/templates/accounts-list.html:51 accounts/templates/accounts.html:48 #: admin/templates/admin/user_list.html:50 -#: instances/templates/allinstances.html:68 -#: instances/templates/allinstances_index_grouped.html:26 -#: instances/templates/allinstances_index_grouped.html:56 -#: instances/templates/allinstances_index_nongrouped.html:20 -#: instances/templates/instance.html:17 instances/templates/instances.html:85 +#: computes/templates/computes/instances.html:94 +#: instances/templates/allinstances_index_grouped.html:57 +#: instances/templates/allinstances_index_nongrouped.html:40 +#: instances/templates/instance.html:17 msgid "Active" msgstr "" @@ -312,24 +251,21 @@ msgstr "" #: accounts/templates/accounts-list.html:76 accounts/templates/accounts.html:69 #: accounts/templates/create_user_block.html:18 -#: computes/templates/computes.html:66 computes/templates/computes.html:114 -#: computes/templates/computes.html:157 computes/templates/computes.html:172 -#: computes/templates/computes.html:205 -#: create/templates/create_flav_block.html:19 -#: create/templates/create_instance_w2.html:81 -#: create/templates/create_instance_w2.html:107 -#: create/templates/create_instance_w2.html:110 -#: create/templates/create_instance_w2.html:309 -#: create/templates/create_instance_w2.html:311 -#: create/templates/create_instance_w2.html:522 -#: create/templates/create_instance_w2.html:524 +#: computes/templates/computes/instances.html:66 +#: computes/templates/computes/list.html:29 #: instances/templates/add_instance_volume.html:40 #: instances/templates/add_instance_volume.html:42 -#: instances/templates/allinstances.html:56 -#: instances/templates/allinstances_index_grouped.html:6 +#: instances/templates/allinstances_index_grouped.html:7 #: instances/templates/allinstances_index_nongrouped.html:5 -#: instances/templates/instance.html:554 instances/templates/instance.html:906 -#: instances/templates/instances.html:70 +#: instances/templates/create_instance_w2.html:82 +#: instances/templates/create_instance_w2.html:108 +#: instances/templates/create_instance_w2.html:111 +#: instances/templates/create_instance_w2.html:310 +#: instances/templates/create_instance_w2.html:312 +#: instances/templates/create_instance_w2.html:523 +#: instances/templates/create_instance_w2.html:525 +#: instances/templates/instances/settings_tab.html:340 +#: instances/templates/instances/snapshots_tab.html:47 #: interfaces/templates/create_iface_block.html:18 #: interfaces/templates/interface.html:76 #: networks/templates/create_net_block.html:18 @@ -344,21 +280,18 @@ msgstr "" #: storages/templates/create_stg_block.html:100 #: storages/templates/create_stg_block.html:165 #: storages/templates/create_stg_block.html:214 -#: storages/templates/create_stg_vol_block.html:20 -#: storages/templates/create_stg_vol_block.html:51 -#: storages/templates/create_stg_vol_block.html:53 -#: storages/templates/storage.html:98 storages/templates/storage.html:126 -#: storages/templates/storage.html:128 +#: storages/templates/create_stg_vol_block.html:21 +#: storages/templates/storage.html:97 storages/templates/storage.html:125 +#: storages/templates/storage.html:127 msgid "Name" msgstr "" #: accounts/templates/accounts-list.html:83 accounts/templates/accounts.html:76 #: accounts/templates/create_user_block.html:24 -#: accounts/templates/login.html:19 computes/templates/computes.html:85 -#: computes/templates/computes.html:176 -#: console/templates/console-spice-full.html:200 -#: instances/templates/instance.html:1293 -#: instances/templates/instance.html:1300 +#: accounts/templates/login.html:19 +#: console/templates/console-spice-full.html:201 +#: console/templates/console-spice-lite.html:58 +#: console/templates/console-spice-lite.html:99 msgid "Password" msgstr "" @@ -371,7 +304,7 @@ msgid "Is superuser" msgstr "" #: accounts/templates/accounts-list.html:101 -#: accounts/templates/accounts.html:94 instances/models.py:25 +#: accounts/templates/accounts.html:94 msgid "Can clone instances" msgstr "" @@ -405,6 +338,63 @@ msgstr "" msgid "Unblock" msgstr "" +#: accounts/templates/accounts-list.html:145 +#: accounts/templates/accounts.html:138 +#: accounts/templates/create_user_block.html:31 +#: instances/templates/add_instance_network_block.html:49 +#: instances/templates/add_instance_owner_block.html:30 +#: instances/templates/add_instance_volume.html:89 +#: instances/templates/add_instance_volume.html:144 +#: instances/templates/create_flav_block.html:25 +#: instances/templates/create_inst_block.html:34 +#: instances/templates/create_instance_w2.html:274 +#: instances/templates/edit_instance_volume.html:123 +#: instances/templates/instances/settings_tab.html:427 +#: interfaces/templates/create_iface_block.html:135 +#: networks/templates/add_network_qos.html:50 +#: networks/templates/create_net_block.html:84 +#: networks/templates/modify_ipv4_fixed_address.html:44 +#: networks/templates/modify_ipv6_fixed_address.html:44 +#: nwfilters/templates/add_nwf_rule.html:25 +#: nwfilters/templates/create_nwfilter_block.html:23 +#: nwfilters/templates/nwfilters.html:83 nwfilters/templates/nwfilters.html:111 +#: secrets/templates/create_secret_block.html:54 +#: secrets/templates/secrets.html:102 +#: storages/templates/create_stg_block.html:55 +#: storages/templates/create_stg_block.html:84 +#: storages/templates/create_stg_block.html:140 +#: storages/templates/create_stg_block.html:202 +#: storages/templates/create_stg_block.html:230 +#: storages/templates/create_stg_vol_block.html:28 +#: storages/templates/create_stg_vol_block.html:56 +#: storages/templates/storage.html:155 +msgid "Close" +msgstr "" + +#: accounts/templates/accounts/change_password_form.html:7 +#: accounts/templates/accounts/change_password_form.html:12 +#: accounts/templates/profile.html:21 +msgid "Change Password" +msgstr "" + +#: accounts/templates/accounts/change_password_form.html:22 +#: admin/templates/admin/user_form.html:22 +#: computes/templates/computes/form.html:21 +#: templates/common/confirm_delete.html:14 templates/common/form.html:20 +msgid "Cancel" +msgstr "" + +#: accounts/templates/accounts/change_password_form.html:24 +#: accounts/templates/profile.html:44 +#: instances/templates/instances/settings_tab.html:633 +#: instances/templates/instances/settings_tab.html:637 +#: instances/templates/instances/settings_tab.html:819 +#: instances/templates/instances/settings_tab.html:821 +#: venv/lib/python3.6/site-packages/django/forms/widgets.py:397 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:379 +msgid "Change" +msgstr "" + #: accounts/templates/create_user_block.html:13 msgid "Add New User" msgstr "" @@ -414,13 +404,13 @@ msgid "john" msgstr "" #: accounts/templates/create_user_block.html:32 -#: create/templates/create_instance_w1.html:95 -#: create/templates/create_instance_w2.html:275 -#: create/templates/create_instance_w2.html:277 -#: create/templates/create_instance_w2.html:504 -#: create/templates/create_instance_w2.html:508 -#: create/templates/create_instance_w2.html:717 -#: create/templates/create_instance_w2.html:721 +#: instances/templates/create_instance_w1.html:95 +#: instances/templates/create_instance_w2.html:276 +#: instances/templates/create_instance_w2.html:278 +#: instances/templates/create_instance_w2.html:505 +#: instances/templates/create_instance_w2.html:509 +#: instances/templates/create_instance_w2.html:718 +#: instances/templates/create_instance_w2.html:722 #: interfaces/templates/create_iface_block.html:138 #: networks/templates/create_net_block.html:85 #: networks/templates/modify_ipv4_fixed_address.html:45 @@ -433,29 +423,10 @@ msgstr "" #: storages/templates/create_stg_block.html:148 #: storages/templates/create_stg_block.html:205 #: storages/templates/create_stg_block.html:233 -#: storages/templates/create_stg_vol_block.html:82 +#: storages/templates/create_stg_vol_block.html:57 msgid "Create" msgstr "" -#: accounts/templates/create_user_inst_block.html:12 -msgid "Add Instance for User" -msgstr "" - -#: accounts/templates/create_user_inst_block.html:18 -#: console/templates/console-spice-full.html:198 -#: instances/templates/allinstances_index_nongrouped.html:6 -msgid "Host" -msgstr "" - -#: accounts/templates/create_user_inst_block.html:30 -#: accounts/templates/profile.html:111 -#: create/templates/create_flav_block.html:54 -#: instances/templates/add_instance_network_block.html:50 -#: instances/templates/add_instance_owner_block.html:30 -#: nwfilters/templates/add_nwf_rule.html:26 -msgid "Add" -msgstr "" - #: accounts/templates/login.html:3 accounts/templates/logout.html:4 msgid "WebVirtCloud" msgstr "" @@ -469,7 +440,7 @@ msgstr "" msgid "Incorrect username or password." msgstr "" -#: accounts/templates/login.html:18 accounts/templates/profile.html:21 +#: accounts/templates/login.html:18 accounts/templates/profile.html:25 msgid "Login" msgstr "" @@ -481,72 +452,86 @@ msgstr "" msgid "Successful log out" msgstr "" -#: accounts/templates/profile.html:4 accounts/templates/profile.html:9 +#: accounts/templates/profile.html:5 accounts/templates/profile.html:10 #: templates/navbar.html:45 msgid "Profile" msgstr "" -#: accounts/templates/profile.html:18 +#: accounts/templates/profile.html:19 msgid "Edit Profile" msgstr "" -#: accounts/templates/profile.html:33 +#: accounts/templates/profile.html:37 msgid "Email" msgstr "" -#: accounts/templates/profile.html:40 accounts/templates/profile.html:67 -#: computes/templates/computes.html:104 computes/templates/computes.html:148 -#: computes/templates/computes.html:196 computes/templates/computes.html:225 -#: instances/templates/instance.html:1190 -#: instances/templates/instance.html:1194 -#: instances/templates/instance.html:1480 -#: instances/templates/instance.html:1482 -#: venv/lib/python3.6/site-packages/django/forms/widgets.py:397 -msgid "Change" -msgstr "" - -#: accounts/templates/profile.html:45 -msgid "Edit Password" -msgstr "" - #: accounts/templates/profile.html:48 -msgid "Old" -msgstr "" - -#: accounts/templates/profile.html:54 -msgid "New" -msgstr "" - -#: accounts/templates/profile.html:60 -msgid "Retry" -msgstr "" - -#: accounts/templates/profile.html:72 instances/templates/instance.html:266 +#: instances/templates/instances/access_tab.html:23 msgid "SSH Keys" msgstr "" -#: accounts/templates/profile.html:100 +#: accounts/templates/profile.html:60 +#: instances/templates/create_instance_w2.html:292 +#: instances/templates/instances/settings_tab.html:438 +#: instances/templates/instances/settings_tab.html:510 +#: instances/templates/instances/settings_tab.html:520 +#: instances/templates/instances/snapshots_tab.html:75 +#: interfaces/templates/interface.html:61 +#: interfaces/templates/interface.html:63 networks/templates/network.html:53 +#: networks/templates/network.html:55 networks/templates/network.html:65 +#: networks/templates/network.html:139 networks/templates/network.html:192 +#: networks/templates/network.html:197 networks/templates/network.html:252 +#: networks/templates/network.html:301 networks/templates/network.html:306 +#: networks/templates/network.html:356 networks/templates/network.html:361 +#: nwfilters/templates/nwfilter.html:114 nwfilters/templates/nwfilter.html:154 +#: nwfilters/templates/nwfilters.html:123 secrets/templates/secrets.html:77 +#: storages/templates/storage.html:63 storages/templates/storage.html:66 +#: storages/templates/storage.html:78 storages/templates/storage.html:175 +msgid "Are you sure?" +msgstr "" + +#: accounts/templates/profile.html:76 msgid "Enter Name" msgstr "" -#: accounts/templates/profile.html:106 +#: accounts/templates/profile.html:82 msgid "Enter Public Key" msgstr "" -#: accounts/views.py:52 +#: accounts/templates/profile.html:87 +#: instances/templates/add_instance_network_block.html:50 +#: instances/templates/add_instance_owner_block.html:31 +#: instances/templates/create_flav_block.html:28 +#: nwfilters/templates/add_nwf_rule.html:26 +msgid "Add" +msgstr "" + +#: accounts/views.py:39 msgid "Key name already exist" msgstr "" -#: accounts/views.py:55 +#: accounts/views.py:42 msgid "Public key already exist" msgstr "" -#: accounts/views.py:58 +#: accounts/views.py:45 msgid "Invalid characters in public key" msgstr "" -#: accounts/views.py:112 -msgid "Instance already added" +#: accounts/views.py:77 +msgid "Password Changed" +msgstr "" + +#: accounts/views.py:80 +msgid "Wrong Data Provided" +msgstr "" + +#: accounts/views.py:100 +msgid "Create User Instance" +msgstr "" + +#: accounts/views.py:118 +msgid "Update User Instance" msgstr "" #: admin/forms.py:46 @@ -558,25 +543,6 @@ msgstr "" msgid "Groups" msgstr "" -#: admin/templates/admin/common/confirm_delete.html:12 -msgid "Are you sure you want to delete" -msgstr "" - -#: admin/templates/admin/common/confirm_delete.html:14 -#: admin/templates/admin/common/form.html:22 -#: admin/templates/admin/user_form.html:22 -#: computes/templates/computes/form.html:22 -msgid "Cancel" -msgstr "" - -#: admin/templates/admin/common/form.html:24 -#: admin/templates/admin/user_form.html:24 -#: computes/templates/computes/form.html:24 -#: instances/templates/edit_instance_volume.html:124 -#: networks/templates/add_network_qos.html:51 -msgid "Save" -msgstr "" - #: admin/templates/admin/common/list.html:9 msgid "Create New" msgstr "" @@ -591,33 +557,53 @@ 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 -#: instances/templates/instance.html:909 instances/templates/instance.html:1051 -#: instances/templates/instances.html:75 networks/templates/network.html:178 -#: networks/templates/network.html:287 networks/templates/network.html:335 +#: computes/templates/computes/instances.html:71 +#: computes/templates/computes/list.html:32 +#: instances/templates/allinstances_index_grouped.html:12 +#: instances/templates/allinstances_index_nongrouped.html:12 +#: instances/templates/instances/settings_tab.html:343 +#: instances/templates/instances/settings_tab.html:486 +#: networks/templates/network.html:178 networks/templates/network.html:287 +#: networks/templates/network.html:335 msgid "Actions" msgstr "" -#: admin/templates/admin/logs.html:3 admin/templates/admin/logs.html:8 -#: instances/templates/instance.html:1577 templates/navbar.html:31 +#: admin/templates/admin/logs.html:4 admin/templates/admin/logs.html:9 +#: instances/templates/instances/stats_tab.html:13 templates/navbar.html:31 msgid "Logs" msgstr "" -#: admin/templates/admin/logs.html:21 +#: admin/templates/admin/logs.html:22 msgid "You don't have any Logs" msgstr "" -#: admin/templates/admin/logs.html:31 instances/templates/instance.html:555 -#: instances/templates/instance.html:1643 +#: admin/templates/admin/logs.html:32 +#: instances/templates/instances/snapshots_tab.html:48 +#: instances/templates/instances/stats_tab.html:83 msgid "Date" msgstr "" -#: admin/templates/admin/logs.html:34 instances/templates/instance.html:1645 +#: admin/templates/admin/logs.html:33 admin/templates/admin/user_form.html:6 +#: computes/templates/computes/instances.html:67 +#: instances/templates/add_instance_owner_block.html:18 +#: instances/templates/allinstances_index_grouped.html:8 +#: instances/templates/allinstances_index_nongrouped.html:7 +#: instances/templates/instances/stats_tab.html:84 +msgid "User" +msgstr "" + +#: admin/templates/admin/logs.html:35 +#: instances/templates/instances/stats_tab.html:85 msgid "Message" msgstr "" +#: admin/templates/admin/user_form.html:24 +#: computes/templates/computes/form.html:23 +#: instances/templates/edit_instance_volume.html:124 +#: networks/templates/add_network_qos.html:51 templates/common/form.html:22 +msgid "Save" +msgstr "" + #: admin/templates/admin/user_list.html:37 msgid "Can Clone" msgstr "" @@ -626,19 +612,19 @@ msgstr "" msgid "View Profile" msgstr "" -#: admin/views.py:38 +#: admin/views.py:39 msgid "Create Group" msgstr "" -#: admin/views.py:56 +#: admin/views.py:57 msgid "Update Group" msgstr "" -#: admin/views.py:108 +#: admin/views.py:110 msgid "Create User" msgstr "" -#: admin/views.py:130 +#: admin/views.py:132 msgid "Update User" msgstr "" @@ -850,7 +836,39 @@ msgstr "" msgid "Show access ssh keys" msgstr "" -#: appsettings/models.py:9 computes/models.py:5 instances/models.py:10 +#: appsettings/migrations/0004_auto_20200716_0637.py:11 +msgid "Console Scale" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:11 +msgid "Allow console to scaling view" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:12 +msgid "Console View-Only" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:12 +msgid "Allow only view not modify" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:13 +msgid "Console Resize Session" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:13 +msgid "Allow to resize session for console" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:14 +msgid "Console Clip Viewport" +msgstr "" + +#: appsettings/migrations/0004_auto_20200716_0637.py:14 +msgid "Clip console viewport" +msgstr "" + +#: appsettings/models.py:9 computes/models.py:11 instances/models.py:27 msgid "name" msgstr "" @@ -875,19 +893,19 @@ msgstr "" msgid "Edit Settings" msgstr "" -#: appsettings/templates/appsettings.html:18 +#: appsettings/templates/appsettings.html:17 msgid "App Settings" msgstr "" -#: appsettings/templates/appsettings.html:22 templates/navbar.html:43 +#: appsettings/templates/appsettings.html:21 templates/navbar.html:43 msgid "Language" msgstr "" -#: appsettings/templates/appsettings.html:55 +#: appsettings/templates/appsettings.html:54 msgid "After change please full refresh page with 'Ctrl + F5' " msgstr "" -#: appsettings/templates/appsettings.html:60 +#: appsettings/templates/appsettings.html:59 msgid "Other Settings" msgstr "" @@ -910,97 +928,22 @@ msgstr "" msgid "FQDN/IP" msgstr "" -#: computes/forms.py:47 -msgid "No hostname has been entered" -msgstr "" - -#: computes/forms.py:48 -msgid "No IP / Domain name has been entered" -msgstr "" - -#: computes/forms.py:49 -msgid "No login has been entered" -msgstr "" - -#: computes/forms.py:57 -msgid "The name of the host must not contain any special characters" -msgstr "" - -#: computes/forms.py:59 -msgid "The name of the host must not exceed 20 characters" -msgstr "" - -#: computes/forms.py:67 computes/validators.py:16 -msgid "" -"Hostname must contain only numbers, or the domain name separated by \".\"" -msgstr "" - -#: computes/forms.py:69 computes/validators.py:18 -msgid "Wrong IP address" -msgstr "" - -#: computes/models.py:6 +#: computes/models.py:12 msgid "hostname" msgstr "" -#: computes/models.py:7 +#: computes/models.py:13 msgid "login" msgstr "" -#: computes/models.py:8 +#: computes/models.py:14 msgid "password" msgstr "" -#: computes/models.py:9 +#: computes/models.py:15 msgid "details" msgstr "" -#: computes/templates/computes.html:3 computes/templates/computes.html:9 -#: templates/navbar.html:18 -msgid "Computes" -msgstr "" - -#: computes/templates/computes.html:42 instances/templates/instance.html:1537 -msgid "Connected" -msgstr "" - -#: computes/templates/computes.html:44 -msgid "Not Connected" -msgstr "" - -#: computes/templates/computes.html:46 computes/templates/computes.html:91 -#: 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 "" - -#: computes/templates/computes.html:50 -msgid "No details available" -msgstr "" - -#: computes/templates/computes.html:59 -msgid "Edit connection" -msgstr "" - -#: computes/templates/computes.html:73 computes/templates/computes.html:121 -#: computes/templates/computes.html:164 -msgid "FQDN / IP" -msgstr "" - -#: computes/templates/computes.html:112 -msgid "" -"Need create ssh authorization key. If you have another SSH port on " -"your server, you can add IP:PORT like '192.168.1.1:2222'." -msgstr "" - -#: computes/templates/computes.html:241 -msgid "Hypervisor doesn't have any Computes" -msgstr "" - #: computes/templates/computes/form.html:6 msgid "Add Compute" msgstr "" @@ -1009,6 +952,137 @@ msgstr "" msgid "Create Compute" msgstr "" +#: computes/templates/computes/instances.html:29 +#: computes/templates/computes/list.html:50 +#: computes/templates/computes/list.html:52 computes/templates/overview.html:4 +#: computes/templates/overview.html:13 interfaces/templates/interface.html:11 +#: interfaces/templates/interfaces.html:14 networks/templates/network.html:13 +#: networks/templates/networks.html:17 nwfilters/templates/nwfilter.html:12 +#: nwfilters/templates/nwfilters.html:21 secrets/templates/secrets.html:17 +#: storages/templates/storage.html:17 storages/templates/storages.html:17 +msgid "Overview" +msgstr "" + +#: computes/templates/computes/instances.html:35 +#: computes/templates/overview.html:19 interfaces/templates/interface.html:17 +#: interfaces/templates/interfaces.html:20 networks/templates/network.html:19 +#: networks/templates/networks.html:23 nwfilters/templates/nwfilter.html:18 +#: nwfilters/templates/nwfilters.html:27 secrets/templates/secrets.html:23 +#: storages/templates/storage.html:23 storages/templates/storages.html:3 +#: storages/templates/storages.html:9 storages/templates/storages.html:23 +msgid "Storages" +msgstr "" + +#: computes/templates/computes/instances.html:38 +#: computes/templates/overview.html:22 interfaces/templates/interface.html:20 +#: interfaces/templates/interfaces.html:23 networks/templates/network.html:22 +#: networks/templates/networks.html:3 networks/templates/networks.html:9 +#: networks/templates/networks.html:26 nwfilters/templates/nwfilter.html:21 +#: nwfilters/templates/nwfilters.html:30 secrets/templates/secrets.html:26 +#: storages/templates/storage.html:26 storages/templates/storages.html:26 +msgid "Networks" +msgstr "" + +#: computes/templates/computes/instances.html:41 +#: computes/templates/overview.html:25 interfaces/templates/interface.html:23 +#: interfaces/templates/interfaces.html:4 +#: interfaces/templates/interfaces.html:26 networks/templates/network.html:25 +#: networks/templates/networks.html:29 nwfilters/templates/nwfilter.html:24 +#: nwfilters/templates/nwfilters.html:33 secrets/templates/secrets.html:29 +#: storages/templates/storage.html:29 storages/templates/storages.html:29 +msgid "Interfaces" +msgstr "" + +#: computes/templates/computes/instances.html:44 +#: computes/templates/overview.html:28 interfaces/templates/interface.html:26 +#: interfaces/templates/interfaces.html:29 networks/templates/network.html:28 +#: networks/templates/networks.html:32 nwfilters/templates/nwfilter.html:4 +#: nwfilters/templates/nwfilter.html:27 nwfilters/templates/nwfilters.html:4 +#: nwfilters/templates/nwfilters.html:13 nwfilters/templates/nwfilters.html:36 +#: secrets/templates/secrets.html:32 storages/templates/storage.html:32 +#: storages/templates/storages.html:32 +msgid "NWFilters" +msgstr "" + +#: computes/templates/computes/instances.html:47 +#: computes/templates/overview.html:31 interfaces/templates/interface.html:29 +#: interfaces/templates/interfaces.html:32 networks/templates/network.html:31 +#: networks/templates/networks.html:35 nwfilters/templates/nwfilter.html:30 +#: nwfilters/templates/nwfilters.html:39 secrets/templates/secrets.html:4 +#: secrets/templates/secrets.html:13 secrets/templates/secrets.html:35 +#: storages/templates/create_stg_block.html:124 +#: storages/templates/storage.html:35 storages/templates/storages.html:35 +msgid "Secrets" +msgstr "" + +#: computes/templates/computes/instances.html:58 +msgid "Hypervisor doesn't have any Instances" +msgstr "" + +#: computes/templates/computes/instances.html:66 +#: instances/templates/allinstances_index_grouped.html:7 +#: instances/templates/allinstances_index_nongrouped.html:5 +#: instances/templates/instances/settings_tab.html:777 +#: instances/templates/instances/settings_tab.html:800 +msgid "Description" +msgstr "" + +#: computes/templates/computes/instances.html:69 +#: instances/templates/allinstances_index_grouped.html:10 +#: instances/templates/allinstances_index_nongrouped.html:10 +#: instances/templates/create_instance_w2.html:83 +#: instances/templates/create_instance_w2.html:328 +#: instances/templates/create_instance_w2.html:541 +#: instances/templates/instance.html:40 instances/templates/instance.html:42 +msgid "VCPU" +msgstr "" + +#: computes/templates/computes/instances.html:70 +#: computes/templates/overview.html:82 +#: instances/templates/allinstances_index_grouped.html:11 +#: instances/templates/allinstances_index_nongrouped.html:11 +#: instances/templates/instances/resize_tab.html:13 +msgid "Memory" +msgstr "" + +#: computes/templates/computes/instances.html:96 +#: instances/templates/allinstances_index_grouped.html:58 +#: instances/templates/allinstances_index_nongrouped.html:42 +#: instances/templates/instance.html:14 +msgid "Off" +msgstr "" + +#: computes/templates/computes/instances.html:98 +#: instances/templates/allinstances_index_grouped.html:60 +#: instances/templates/allinstances_index_nongrouped.html:44 +msgid "Suspended" +msgstr "" + +#: computes/templates/computes/list.html:6 +#: computes/templates/computes/list.html:12 templates/navbar.html:18 +msgid "Computes" +msgstr "" + +#: computes/templates/computes/list.html:21 +msgid "You don't have any computes" +msgstr "" + +#: computes/templates/computes/list.html:31 computes/templates/overview.html:92 +#: instances/templates/instances/settings_tab.html:163 +#: instances/templates/instances/settings_tab.html:248 +msgid "Details" +msgstr "" + +#: computes/templates/computes/list.html:42 +#: instances/templates/allinstances_index_grouped.html:28 +#: instances/templates/instances/settings_tab.html:876 +msgid "Connected" +msgstr "" + +#: computes/templates/computes/list.html:42 +msgid "Not Connected" +msgstr "" + #: computes/templates/create_comp_block.html:5 msgid "TCP" msgstr "" @@ -1029,79 +1103,6 @@ msgstr "" msgid "Add new host" msgstr "" -#: computes/templates/overview.html:4 computes/templates/overview.html:13 -#: instances/templates/instances.html:30 interfaces/templates/interface.html:11 -#: interfaces/templates/interfaces.html:14 networks/templates/network.html:13 -#: networks/templates/networks.html:17 nwfilters/templates/nwfilter.html:12 -#: nwfilters/templates/nwfilters.html:21 secrets/templates/secrets.html:17 -#: storages/templates/storage.html:17 storages/templates/storages.html:17 -msgid "Overview" -msgstr "" - -#: computes/templates/overview.html:16 instances/templates/allinstances.html:4 -#: instances/templates/allinstances.html:20 -#: instances/templates/bottom_bar.html:17 instances/templates/instances.html:4 -#: instances/templates/instances.html:33 interfaces/templates/interface.html:14 -#: interfaces/templates/interfaces.html:17 networks/templates/network.html:16 -#: networks/templates/networks.html:20 nwfilters/templates/nwfilter.html:15 -#: nwfilters/templates/nwfilters.html:24 secrets/templates/secrets.html:20 -#: storages/templates/storage.html:20 storages/templates/storages.html:20 -#: templates/navbar.html:14 -msgid "Instances" -msgstr "" - -#: computes/templates/overview.html:19 instances/templates/instances.html:36 -#: interfaces/templates/interface.html:17 -#: interfaces/templates/interfaces.html:20 networks/templates/network.html:19 -#: networks/templates/networks.html:23 nwfilters/templates/nwfilter.html:18 -#: nwfilters/templates/nwfilters.html:27 secrets/templates/secrets.html:23 -#: storages/templates/storage.html:23 storages/templates/storages.html:3 -#: storages/templates/storages.html:9 storages/templates/storages.html:23 -msgid "Storages" -msgstr "" - -#: computes/templates/overview.html:22 instances/templates/instances.html:39 -#: interfaces/templates/interface.html:20 -#: interfaces/templates/interfaces.html:23 networks/templates/network.html:22 -#: networks/templates/networks.html:3 networks/templates/networks.html:9 -#: networks/templates/networks.html:26 nwfilters/templates/nwfilter.html:21 -#: nwfilters/templates/nwfilters.html:30 secrets/templates/secrets.html:26 -#: storages/templates/storage.html:26 storages/templates/storages.html:26 -msgid "Networks" -msgstr "" - -#: computes/templates/overview.html:25 instances/templates/instances.html:42 -#: interfaces/templates/interface.html:23 -#: interfaces/templates/interfaces.html:4 -#: interfaces/templates/interfaces.html:26 networks/templates/network.html:25 -#: networks/templates/networks.html:29 nwfilters/templates/nwfilter.html:24 -#: nwfilters/templates/nwfilters.html:33 secrets/templates/secrets.html:29 -#: storages/templates/storage.html:29 storages/templates/storages.html:29 -msgid "Interfaces" -msgstr "" - -#: computes/templates/overview.html:28 instances/templates/instances.html:45 -#: interfaces/templates/interface.html:26 -#: interfaces/templates/interfaces.html:29 networks/templates/network.html:28 -#: networks/templates/networks.html:32 nwfilters/templates/nwfilter.html:4 -#: nwfilters/templates/nwfilter.html:27 nwfilters/templates/nwfilters.html:4 -#: nwfilters/templates/nwfilters.html:13 nwfilters/templates/nwfilters.html:36 -#: secrets/templates/secrets.html:32 storages/templates/storage.html:32 -#: storages/templates/storages.html:32 -msgid "NWFilters" -msgstr "" - -#: computes/templates/overview.html:31 instances/templates/instances.html:48 -#: interfaces/templates/interface.html:29 -#: interfaces/templates/interfaces.html:32 networks/templates/network.html:31 -#: networks/templates/networks.html:35 nwfilters/templates/nwfilter.html:30 -#: nwfilters/templates/nwfilters.html:39 secrets/templates/secrets.html:4 -#: secrets/templates/secrets.html:13 secrets/templates/secrets.html:35 -#: storages/templates/create_stg_block.html:124 -#: storages/templates/storage.html:35 storages/templates/storages.html:35 -msgid "Secrets" -msgstr "" - #: computes/templates/overview.html:42 msgid "Basic details" msgstr "" @@ -1135,16 +1136,9 @@ msgstr "" msgid "Libvirt" msgstr "" -#: computes/templates/overview.html:82 instances/templates/allinstances.html:59 -#: instances/templates/allinstances_index_grouped.html:10 -#: instances/templates/allinstances_index_nongrouped.html:9 -#: instances/templates/instance.html:369 instances/templates/instances.html:74 -msgid "Memory" -msgstr "" - #: computes/templates/overview.html:84 -#: create/templates/create_instance_w1.html:42 -#: create/templates/create_instance_w1.html:58 +#: instances/templates/create_instance_w1.html:42 +#: instances/templates/create_instance_w1.html:58 msgid "Architecture" msgstr "" @@ -1173,287 +1167,153 @@ msgstr "" msgid "RAM Utilization" msgstr "" +#: computes/validators.py:16 +msgid "" +"Hostname must contain only numbers, or the domain name separated by \".\"" +msgstr "" + +#: computes/validators.py:18 +msgid "Wrong IP address" +msgstr "" + #: computes/validators.py:24 msgid "The hostname must not contain any special characters" msgstr "" -#: console/templates/console-base.html:69 +#: console/templates/console-base.html:51 msgid "Send key(s)" msgstr "" -#: console/templates/console-base.html:89 +#: console/templates/console-base.html:71 msgid "Fullscreen" msgstr "" +#: console/templates/console-spice-full.html:56 +msgid "must set host and port" +msgstr "" + +#: console/templates/console-spice-full.html:83 +#: console/templates/console-spice-full.html:97 +#: console/templates/console-spice-lite.html:138 +#: console/templates/console-spice-lite.html:150 +msgid "disconnect" +msgstr "" + +#: console/templates/console-spice-full.html:114 +#: console/templates/console-spice-lite.html:167 +msgid "File API is not supported" +msgstr "" + +#: console/templates/console-spice-full.html:197 +#: instances/templates/allinstances_index_nongrouped.html:7 +msgid "Host" +msgstr "" + #: console/templates/console-spice-full.html:199 msgid "Port" msgstr "" -#: console/templates/console-spice-full.html:201 +#: console/templates/console-spice-full.html:207 msgid "Show console" msgstr "" -#: console/templates/console-spice-full.html:202 +#: console/templates/console-spice-full.html:209 #: interfaces/templates/interface.html:60 networks/templates/network.html:52 #: networks/templates/network.html:122 networks/templates/network.html:128 #: networks/templates/network.html:234 networks/templates/network.html:240 -#: storages/templates/storage.html:62 +#: storages/templates/storage.html:61 msgid "Start" msgstr "" -#: console/templates/console-vnc-full.html:83 +#: console/templates/console-spice-lite.html:109 +msgid "must specify host and port in URL" +msgstr "" + +#: console/templates/console-vnc-full.html:78 msgid "noVNC encountered an error" msgstr "" -#: console/templates/console-vnc-lite.html:297 +#: console/templates/console-vnc-lite.html:222 msgid "Loading" msgstr "" -#: create/forms.py:10 -msgid "No flavor name has been entered" -msgstr "" - -#: create/forms.py:13 create/forms.py:37 -msgid "No VCPU has been entered" -msgstr "" - -#: create/forms.py:15 -msgid "No HDD image has been entered" -msgstr "" - -#: create/forms.py:17 create/forms.py:40 -msgid "No RAM size has been entered" -msgstr "" - -#: create/forms.py:34 +#: instances/forms.py:37 msgid "No Virtual Machine name has been entered" msgstr "" -#: create/forms.py:41 +#: instances/forms.py:39 +msgid "No VCPU has been entered" +msgstr "" + +#: instances/forms.py:42 +msgid "No RAM size has been entered" +msgstr "" + +#: instances/forms.py:43 msgid "No Network pool has been choosen" msgstr "" -#: create/forms.py:46 +#: instances/forms.py:48 msgid "Please select HDD cache mode" msgstr "" -#: create/forms.py:53 +#: instances/forms.py:55 msgid "Please select a graphics type" msgstr "" -#: create/forms.py:54 +#: instances/forms.py:56 msgid "Please select a video driver" msgstr "" -#: create/forms.py:61 +#: instances/forms.py:63 msgid "The name of the virtual machine must not contain any special characters" msgstr "" -#: create/forms.py:63 +#: instances/forms.py:65 msgid "The name of the virtual machine must not exceed 20 characters" msgstr "" -#: create/models.py:5 +#: instances/models.py:11 msgid "label" msgstr "" -#: create/models.py:6 +#: instances/models.py:12 msgid "memory" msgstr "" -#: create/models.py:7 +#: instances/models.py:13 msgid "vcpu" msgstr "" -#: create/models.py:8 +#: instances/models.py:14 msgid "disk" msgstr "" -#: create/templates/create_flav_block.html:13 -msgid "Add New Flavor" +#: instances/models.py:28 +msgid "uuid" msgstr "" -#: create/templates/create_flav_block.html:21 -msgid "Micro" +#: instances/models.py:29 +msgid "is template" msgstr "" -#: create/templates/create_flav_block.html:26 -#: create/templates/create_instance_w2.html:82 -#: create/templates/create_instance_w2.html:327 -#: create/templates/create_instance_w2.html:540 -#: instances/templates/allinstances.html:58 -#: instances/templates/allinstances_index_grouped.html:9 -#: instances/templates/allinstances_index_nongrouped.html:8 -#: instances/templates/instance.html:40 instances/templates/instance.html:42 -#: instances/templates/instances.html:73 -msgid "VCPU" +#: instances/models.py:30 +msgid "created" msgstr "" -#: create/templates/create_flav_block.html:33 -#: create/templates/create_instance_w2.html:83 -#: create/templates/create_instance_w2.html:356 -#: create/templates/create_instance_w2.html:567 -#: instances/templates/instance.html:45 -msgid "RAM" +#: instances/models.py:215 +msgid "Can access console without password" msgstr "" -#: create/templates/create_flav_block.html:38 -#: create/templates/create_instance_w2.html:94 -#: create/templates/create_instance_w2.html:360 -#: create/templates/create_instance_w2.html:571 -#: instances/templates/allinstances.html:78 -#: instances/templates/instance.html:45 instances/templates/instance.html:450 -#: instances/templates/instance.html:463 -msgid "MB" +#: instances/templates/add_instance_network_block.html:12 +msgid "Add Instance Network" msgstr "" -#: create/templates/create_flav_block.html:41 -#: create/templates/create_instance_w2.html:84 -#: create/templates/create_instance_w2.html:371 -msgid "HDD" -msgstr "" - -#: create/templates/create_flav_block.html:46 -#: create/templates/create_instance_w2.html:95 -#: instances/templates/add_instance_volume.html:60 -#: storages/templates/create_stg_vol_block.html:71 -msgid "GB" -msgstr "" - -#: create/templates/create_instance_w1.html:4 -#: create/templates/create_instance_w2.html:4 -msgid "Create new instance" -msgstr "" - -#: create/templates/create_instance_w1.html:4 -msgid "Select Type" -msgstr "" - -#: create/templates/create_instance_w1.html:11 -#: create/templates/create_instance_w2.html:13 -#, python-format -msgid "New instance on %(host)s " -msgstr "" - -#: create/templates/create_instance_w1.html:47 -#: instances/templates/instance.html:643 networks/templates/network.html:75 -#: nwfilters/templates/nwfilter.html:52 -msgid "XML" -msgstr "" - -#: create/templates/create_instance_w1.html:68 -msgid "Chipset" -msgstr "" - -#: create/templates/create_instance_w1.html:78 -msgid "Next" -msgstr "" - -#: create/templates/create_instance_w2.html:49 -msgid "Flavor" -msgstr "" - -#: create/templates/create_instance_w2.html:54 -msgid "Custom" -msgstr "" - -#: create/templates/create_instance_w2.html:59 -msgid "Template" -msgstr "" - -#: create/templates/create_instance_w2.html:70 -msgid "Hypervisor doesn't have any Flavors" -msgstr "" - -#: create/templates/create_instance_w2.html:75 -msgid "Create from flavor" -msgstr "" - -#: create/templates/create_instance_w2.html:101 -msgid "Create Virtual Machine" -msgstr "" - -#: create/templates/create_instance_w2.html:119 -#: create/templates/create_instance_w2.html:316 -#: create/templates/create_instance_w2.html:529 -msgid "Firmware" -msgstr "" - -#: create/templates/create_instance_w2.html:131 -#: create/templates/create_instance_w2.html:334 -#: create/templates/create_instance_w2.html:546 -msgid "VCPU Config" -msgstr "" - -#: create/templates/create_instance_w2.html:134 -#: create/templates/create_instance_w2.html:337 -#: create/templates/create_instance_w2.html:549 -msgid "no-mode" -msgstr "" - -#: create/templates/create_instance_w2.html:153 -#: create/templates/create_instance_w2.html:595 -#: instances/templates/add_instance_volume.html:30 -#: instances/templates/add_instance_volume.html:100 -#: instances/templates/instance.html:829 storages/templates/storage.html:4 -#: storages/templates/storage.html:14 -msgid "Storage" -msgstr "" - -#: create/templates/create_instance_w2.html:162 -#: create/templates/create_instance_w2.html:190 -#: create/templates/create_instance_w2.html:381 -#: create/templates/create_instance_w2.html:436 -#: create/templates/create_instance_w2.html:584 -#: create/templates/create_instance_w2.html:603 -#: create/templates/create_instance_w2.html:649 -#: instances/templates/add_instance_network_block.html:40 -#: instances/templates/add_instance_volume.html:117 -#: instances/templates/create_inst_block.html:25 -#: instances/templates/instance.html:329 instances/templates/instance.html:776 -#: instances/templates/instance.html:972 instances/templates/instance.html:1649 -#: interfaces/templates/interface.html:42 -#: interfaces/templates/interface.html:44 nwfilters/templates/nwfilter.html:81 -#: storages/templates/create_stg_block.html:132 -#: storages/templates/storage.html:49 storages/templates/storage.html:51 -#: storages/templates/storage.html:53 -msgid "None" -msgstr "" - -#: create/templates/create_instance_w2.html:168 -#: create/templates/create_instance_w2.html:392 -#: create/templates/create_instance_w2.html:609 -#: instances/templates/add_instance_network_block.html:24 -#: instances/templates/instance.html:624 instances/templates/instance.html:959 -#: networks/templates/network.html:4 networks/templates/network.html:9 -#: networks/templates/network.html:110 networks/templates/network.html:221 -msgid "Network" -msgstr "" - -#: create/templates/create_instance_w2.html:178 -#: create/templates/create_instance_w2.html:406 -#: create/templates/create_instance_w2.html:619 -#: instances/templates/edit_instance_volume.html:25 -msgid "Advanced" -msgstr "" - -#: create/templates/create_instance_w2.html:187 -#: create/templates/create_instance_w2.html:433 -#: create/templates/create_instance_w2.html:646 -#: instances/templates/add_instance_network_block.html:37 -#: instances/templates/instance.html:968 nwfilters/templates/nwfilter.html:9 -msgid "NWFilter" -msgstr "" - -#: create/templates/create_instance_w2.html:198 -#: create/templates/create_instance_w2.html:635 -msgid "HDD cache mode" -msgstr "" - -#: create/templates/create_instance_w2.html:209 #: instances/templates/add_instance_network_block.html:18 -#: instances/templates/instance.html:924 instances/templates/instance.html:947 -#: instances/templates/instance.html:1047 +#: instances/templates/create_instance_w2.html:210 +#: instances/templates/instances/settings_tab.html:358 +#: instances/templates/instances/settings_tab.html:381 +#: instances/templates/instances/settings_tab.html:482 #: interfaces/templates/interface.html:46 #: interfaces/templates/interface.html:75 #: interfaces/templates/interfaces.html:63 @@ -1462,128 +1322,46 @@ msgstr "" msgid "MAC" msgstr "" -#: create/templates/create_instance_w2.html:216 -#: create/templates/create_instance_w2.html:445 -#: create/templates/create_instance_w2.html:658 -msgid "Graphics" +#: instances/templates/add_instance_network_block.html:24 +#: instances/templates/create_instance_w2.html:169 +#: instances/templates/create_instance_w2.html:393 +#: instances/templates/create_instance_w2.html:610 +#: instances/templates/instances/settings_tab.html:30 +#: instances/templates/instances/settings_tab.html:393 +#: networks/templates/network.html:4 networks/templates/network.html:9 +#: networks/templates/network.html:110 networks/templates/network.html:221 +msgid "Network" msgstr "" -#: create/templates/create_instance_w2.html:227 -#: create/templates/create_instance_w2.html:456 -#: create/templates/create_instance_w2.html:669 -msgid "Video" +#: instances/templates/add_instance_network_block.html:37 +#: instances/templates/create_instance_w2.html:188 +#: instances/templates/create_instance_w2.html:434 +#: instances/templates/create_instance_w2.html:647 +#: instances/templates/instances/settings_tab.html:402 +#: nwfilters/templates/nwfilter.html:9 +msgid "NWFilter" msgstr "" -#: create/templates/create_instance_w2.html:241 -#: create/templates/create_instance_w2.html:470 -#: create/templates/create_instance_w2.html:683 -msgid "Console Access" -msgstr "" - -#: create/templates/create_instance_w2.html:251 -#: create/templates/create_instance_w2.html:253 -#: create/templates/create_instance_w2.html:480 -#: create/templates/create_instance_w2.html:482 -#: create/templates/create_instance_w2.html:693 -#: create/templates/create_instance_w2.html:695 -msgid "Console Password" -msgstr "" - -#: create/templates/create_instance_w2.html:257 -#: create/templates/create_instance_w2.html:486 -#: create/templates/create_instance_w2.html:699 -msgid "Guest Agent" -msgstr "" - -#: create/templates/create_instance_w2.html:264 -#: create/templates/create_instance_w2.html:493 -#: create/templates/create_instance_w2.html:706 -msgid "VirtIO" -msgstr "" - -#: create/templates/create_instance_w2.html:363 -msgid "Added Disks" -msgstr "" - -#: create/templates/create_instance_w2.html:376 -#: create/templates/create_instance_w2.html:579 -msgid "Select pool" -msgstr "" - -#: create/templates/create_instance_w2.html:415 -#: create/templates/create_instance_w2.html:628 -msgid "Disk Metadata" -msgstr "" - -#: create/templates/create_instance_w2.html:417 -#: create/templates/create_instance_w2.html:630 -msgid "Metadata preallocation" -msgstr "" - -#: create/templates/create_instance_w2.html:419 -#: create/templates/create_instance_w2.html:632 -#: venv/lib/python3.6/site-packages/django/db/models/fields/files.py:360 -msgid "Image" -msgstr "" - -#: create/templates/create_instance_w2.html:422 -msgid "HDD Cache Mode" -msgstr "" - -#: create/templates/create_instance_w2.html:574 -msgid "Template Disk" -msgstr "" - -#: create/views.py:52 create/views.py:164 -msgid "A virtual machine with this name already exists" -msgstr "" - -#: create/views.py:133 -msgid "You haven't defined any storage pools" -msgstr "" - -#: create/views.py:136 -msgid "You haven't defined any network pools" -msgstr "" - -#: create/views.py:167 -msgid "There is an instance with same name. Are you sure?" -msgstr "" - -#: create/views.py:171 -msgid "No Virtual Machine MAC has been entered" -msgstr "" - -#: create/views.py:204 -msgid "Image has already exist. Please check volumes or change instance name" -msgstr "" - -#: create/views.py:230 -msgid "First you need to create or select an image" -msgstr "" - -#: create/views.py:252 -msgid "Invalid cache mode" -msgstr "" - -#: create/views.py:290 -msgid "Instance is created" -msgstr "" - -#: instances/models.py:11 -msgid "uuid" -msgstr "" - -#: instances/models.py:12 -msgid "is template" -msgstr "" - -#: instances/models.py:13 -msgid "created" -msgstr "" - -#: instances/templates/add_instance_network_block.html:12 -msgid "Add Instance Network" +#: instances/templates/add_instance_network_block.html:40 +#: instances/templates/add_instance_volume.html:117 +#: instances/templates/create_inst_block.html:25 +#: instances/templates/create_instance_w2.html:163 +#: instances/templates/create_instance_w2.html:191 +#: instances/templates/create_instance_w2.html:382 +#: instances/templates/create_instance_w2.html:437 +#: instances/templates/create_instance_w2.html:585 +#: instances/templates/create_instance_w2.html:604 +#: instances/templates/create_instance_w2.html:650 +#: instances/templates/instances/access_tab.html:135 +#: instances/templates/instances/settings_tab.html:183 +#: instances/templates/instances/settings_tab.html:406 +#: instances/templates/instances/stats_tab.html:90 +#: interfaces/templates/interface.html:42 +#: interfaces/templates/interface.html:44 nwfilters/templates/nwfilter.html:81 +#: storages/templates/create_stg_block.html:132 +#: storages/templates/storage.html:48 storages/templates/storage.html:50 +#: storages/templates/storage.html:52 +msgid "None" msgstr "" #: instances/templates/add_instance_owner_block.html:12 @@ -1613,24 +1391,36 @@ msgstr "" msgid "Volume parameters" msgstr "" +#: instances/templates/add_instance_volume.html:30 +#: instances/templates/add_instance_volume.html:100 +#: instances/templates/create_instance_w2.html:154 +#: instances/templates/create_instance_w2.html:596 +#: instances/templates/instances/settings_tab.html:237 +#: storages/templates/storage.html:4 storages/templates/storage.html:14 +msgid "Storage" +msgstr "" + #: instances/templates/add_instance_volume.html:46 #: storages/templates/create_stg_block.html:183 -#: storages/templates/create_stg_vol_block.html:57 -#: storages/templates/storage.html:101 storages/templates/storage.html:139 +#: storages/templates/storage.html:100 storages/templates/storage.html:138 msgid "Format" msgstr "" #: instances/templates/add_instance_volume.html:56 -#: storages/templates/create_stg_vol_block.html:67 -#: storages/templates/storage.html:54 storages/templates/storage.html:100 +#: storages/templates/storage.html:53 storages/templates/storage.html:99 #: storages/templates/storages.html:66 msgid "Size" msgstr "" +#: instances/templates/add_instance_volume.html:60 +#: instances/templates/create_instance_w2.html:96 +msgid "GB" +msgstr "" + #: instances/templates/add_instance_volume.html:63 #: instances/templates/add_instance_volume.html:123 #: instances/templates/edit_instance_volume.html:53 -#: instances/templates/instance.html:763 +#: instances/templates/instances/settings_tab.html:168 msgid "Bus" msgstr "" @@ -1640,9 +1430,8 @@ msgid "Cache" msgstr "" #: instances/templates/add_instance_volume.html:83 -#: instances/templates/instance.html:1416 -#: storages/templates/create_stg_vol_block.html:74 -#: storages/templates/storage.html:149 +#: instances/templates/instances/settings_tab.html:755 +#: storages/templates/storage.html:148 msgid "Metadata" msgstr "" @@ -1654,55 +1443,23 @@ msgstr "" msgid "Volume" msgstr "" -#: instances/templates/allinstances.html:33 -#: instances/templates/allinstances.html:49 -msgid "You don't have any Instance" +#: instances/templates/allinstances.html:24 +msgid "Problem occurred with host" msgstr "" -#: instances/templates/allinstances.html:71 -#: instances/templates/allinstances_index_grouped.html:57 -#: instances/templates/allinstances_index_nongrouped.html:21 -#: instances/templates/instance.html:14 instances/templates/instances.html:86 -msgid "Off" -msgstr "" - -#: instances/templates/allinstances.html:74 -#: instances/templates/allinstances_index_grouped.html:58 -#: instances/templates/allinstances_index_nongrouped.html:22 -#: instances/templates/instance.html:20 instances/templates/instance.html:143 -#: instances/templates/instance.html:198 -#: instances/templates/instance_actions.html:15 -#: instances/templates/instance_actions.html:32 -#: instances/templates/instance_actions.html:49 -#: instances/templates/instances.html:87 instances/views.py:699 -#: instances/views.py:1239 -msgid "Suspend" -msgstr "" - -#: instances/templates/allinstances_index_grouped.html:6 -#: instances/templates/allinstances_index_nongrouped.html:5 -#: instances/templates/instance.html:1438 -#: instances/templates/instance.html:1461 instances/templates/instances.html:70 -msgid "Description" -msgstr "" - -#: instances/templates/allinstances_index_grouped.html:11 +#: instances/templates/allinstances_index_grouped.html:12 msgid "Mem Usage" msgstr "" -#: instances/templates/allinstances_index_grouped.html:27 -msgid "Not Active" -msgstr "" - -#: instances/templates/allinstances_index_grouped.html:28 -msgid "Connection Failed" -msgstr "" - #: instances/templates/bottom_bar.html:4 msgid "HOST" msgstr "" -#: instances/templates/create_inst_block.html:12 +#: instances/templates/create_flav_block.html:14 +msgid "Add New Flavor" +msgstr "" + +#: instances/templates/create_inst_block.html:11 msgid "Choose a compute for new instance" msgstr "" @@ -1719,6 +1476,183 @@ msgstr "" msgid "Choose" msgstr "" +#: instances/templates/create_instance_w1.html:4 +#: instances/templates/create_instance_w2.html:5 +msgid "Create new instance" +msgstr "" + +#: instances/templates/create_instance_w1.html:4 +msgid "Select Type" +msgstr "" + +#: instances/templates/create_instance_w1.html:11 +#: instances/templates/create_instance_w2.html:14 +#, python-format +msgid "New instance on %(host)s " +msgstr "" + +#: instances/templates/create_instance_w1.html:47 +#: instances/templates/instances/settings_tab.html:49 +#: networks/templates/network.html:75 nwfilters/templates/nwfilter.html:52 +msgid "XML" +msgstr "" + +#: instances/templates/create_instance_w1.html:68 +msgid "Chipset" +msgstr "" + +#: instances/templates/create_instance_w1.html:78 +msgid "Next" +msgstr "" + +#: instances/templates/create_instance_w2.html:50 +msgid "Flavor" +msgstr "" + +#: instances/templates/create_instance_w2.html:55 +msgid "Custom" +msgstr "" + +#: instances/templates/create_instance_w2.html:60 +msgid "Template" +msgstr "" + +#: instances/templates/create_instance_w2.html:71 +msgid "Hypervisor doesn't have any Flavors" +msgstr "" + +#: instances/templates/create_instance_w2.html:76 +msgid "Create from flavor" +msgstr "" + +#: instances/templates/create_instance_w2.html:84 +#: instances/templates/create_instance_w2.html:357 +#: instances/templates/create_instance_w2.html:568 +#: instances/templates/instance.html:45 +msgid "RAM" +msgstr "" + +#: instances/templates/create_instance_w2.html:85 +#: instances/templates/create_instance_w2.html:372 +msgid "HDD" +msgstr "" + +#: instances/templates/create_instance_w2.html:95 +#: instances/templates/create_instance_w2.html:361 +#: instances/templates/create_instance_w2.html:572 +#: instances/templates/instance.html:45 +#: instances/templates/instances/resize_tab.html:95 +#: instances/templates/instances/resize_tab.html:108 +msgid "MB" +msgstr "" + +#: instances/templates/create_instance_w2.html:102 +msgid "Create Virtual Machine" +msgstr "" + +#: instances/templates/create_instance_w2.html:120 +#: instances/templates/create_instance_w2.html:317 +#: instances/templates/create_instance_w2.html:530 +msgid "Firmware" +msgstr "" + +#: instances/templates/create_instance_w2.html:132 +#: instances/templates/create_instance_w2.html:335 +#: instances/templates/create_instance_w2.html:547 +msgid "VCPU Config" +msgstr "" + +#: instances/templates/create_instance_w2.html:135 +#: instances/templates/create_instance_w2.html:338 +#: instances/templates/create_instance_w2.html:550 +msgid "no-mode" +msgstr "" + +#: instances/templates/create_instance_w2.html:179 +#: instances/templates/create_instance_w2.html:407 +#: instances/templates/create_instance_w2.html:620 +#: instances/templates/edit_instance_volume.html:25 +msgid "Advanced" +msgstr "" + +#: instances/templates/create_instance_w2.html:199 +#: instances/templates/create_instance_w2.html:636 +msgid "HDD cache mode" +msgstr "" + +#: instances/templates/create_instance_w2.html:217 +#: instances/templates/create_instance_w2.html:446 +#: instances/templates/create_instance_w2.html:659 +msgid "Graphics" +msgstr "" + +#: instances/templates/create_instance_w2.html:228 +#: instances/templates/create_instance_w2.html:457 +#: instances/templates/create_instance_w2.html:670 +msgid "Video" +msgstr "" + +#: instances/templates/create_instance_w2.html:242 +#: instances/templates/create_instance_w2.html:471 +#: instances/templates/create_instance_w2.html:684 +msgid "Console Access" +msgstr "" + +#: instances/templates/create_instance_w2.html:252 +#: instances/templates/create_instance_w2.html:254 +#: instances/templates/create_instance_w2.html:481 +#: instances/templates/create_instance_w2.html:483 +#: instances/templates/create_instance_w2.html:694 +#: instances/templates/create_instance_w2.html:696 +msgid "Console Password" +msgstr "" + +#: instances/templates/create_instance_w2.html:258 +#: instances/templates/create_instance_w2.html:487 +#: instances/templates/create_instance_w2.html:700 +msgid "Guest Agent" +msgstr "" + +#: instances/templates/create_instance_w2.html:265 +#: instances/templates/create_instance_w2.html:494 +#: instances/templates/create_instance_w2.html:707 +msgid "VirtIO" +msgstr "" + +#: instances/templates/create_instance_w2.html:364 +msgid "Added Disks" +msgstr "" + +#: instances/templates/create_instance_w2.html:377 +#: instances/templates/create_instance_w2.html:580 +msgid "Select pool" +msgstr "" + +#: instances/templates/create_instance_w2.html:416 +#: instances/templates/create_instance_w2.html:629 +msgid "Disk Metadata" +msgstr "" + +#: instances/templates/create_instance_w2.html:418 +#: instances/templates/create_instance_w2.html:631 +msgid "Metadata preallocation" +msgstr "" + +#: instances/templates/create_instance_w2.html:420 +#: instances/templates/create_instance_w2.html:633 +#: venv/lib/python3.6/site-packages/django/db/models/fields/files.py:360 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/files.py:391 +msgid "Image" +msgstr "" + +#: instances/templates/create_instance_w2.html:423 +msgid "HDD Cache Mode" +msgstr "" + +#: instances/templates/create_instance_w2.html:575 +msgid "Template Disk" +msgstr "" + #: instances/templates/edit_instance_volume.html:3 msgid "Edit Volume" msgstr "" @@ -1767,6 +1701,15 @@ msgstr "" msgid "Detect zeroes" msgstr "" +#: instances/templates/instance.html:20 +#: instances/templates/instance_actions.html:14 +#: instances/templates/instance_actions.html:25 +#: instances/templates/instance_actions.html:37 +#: instances/templates/instances/power_tab.html:25 +#: instances/templates/instances/power_tab.html:82 instances/views.py:287 +msgid "Suspend" +msgstr "" + #: instances/templates/instance.html:26 msgid "Guest Agent Enabled & Connected" msgstr "" @@ -1779,8 +1722,9 @@ msgstr "" msgid "Guest Agent Not Enabled & Not Connected" msgstr "" -#: instances/templates/instance.html:48 instances/templates/instance.html:374 -#: instances/templates/instance.html:610 +#: instances/templates/instance.html:48 +#: instances/templates/instances/resize_tab.html:18 +#: instances/templates/instances/settings_tab.html:16 msgid "Disk" msgstr "" @@ -1792,808 +1736,820 @@ msgstr "" msgid "quota reached" msgstr "" -#: instances/templates/instance.html:76 +#: instances/templates/instance.html:75 msgid "Power" msgstr "" -#: instances/templates/instance.html:82 +#: instances/templates/instance.html:81 msgid "Access" msgstr "" -#: instances/templates/instance.html:95 +#: instances/templates/instance.html:94 msgid "Snapshot" msgstr "" -#: instances/templates/instance.html:102 templates/navbar.html:32 +#: instances/templates/instance.html:101 templates/navbar.html:32 msgid "Settings" msgstr "" -#: instances/templates/instance.html:108 +#: instances/templates/instance.html:107 msgid "Stats" msgstr "" -#: instances/templates/instance.html:114 instances/templates/instance.html:1674 -#: instances/templates/instance.html:1691 -#: instances/templates/instance.html:1695 instances/views.py:421 +#: instances/templates/instance.html:113 +#: instances/templates/instances/destroy_instance_form.html:40 +#: instances/templates/instances/destroy_tab.html:18 +#: instances/templates/instances/destroy_tab.html:20 +#: instances/templates/instances/destroy_tab.html:23 instances/views.py:329 msgid "Destroy" msgstr "" -#: instances/templates/instance.html:127 instances/templates/instance.html:176 -#: instances/templates/instance_actions.html:18 -#: instances/templates/instance_actions.html:52 instances/views.py:387 -#: instances/views.py:1199 -msgid "Power Off" -msgstr "" - -#: instances/templates/instance.html:132 instances/templates/instance.html:183 -#: instances/templates/instance_actions.html:21 -#: instances/templates/instance_actions.html:38 -#: instances/templates/instance_actions.html:55 instances/views.py:381 -#: instances/views.py:1211 -msgid "Power Cycle" -msgstr "" - -#: instances/templates/instance.html:137 instances/templates/instance.html:157 -#: instances/templates/instance.html:190 instances/templates/instance.html:216 -#: instances/templates/instance_actions.html:35 instances/views.py:393 -#: instances/views.py:1206 -msgid "Force Off" -msgstr "" - -#: instances/templates/instance.html:152 instances/templates/instance.html:209 -#: instances/templates/instance.html:224 -#: instances/templates/instance_actions.html:29 instances/views.py:705 -#: instances/views.py:1245 -msgid "Resume" -msgstr "" - -#: instances/templates/instance.html:165 instances/templates/instance.html:236 -#: instances/templates/instance.html:238 -#: instances/templates/instance_actions.html:11 -#: instances/templates/instance_actions.html:46 instances/views.py:374 -#: instances/views.py:1193 +#: instances/templates/instance_actions.html:10 +#: instances/templates/instance_actions.html:35 +#: instances/templates/instances/power_tab.html:47 +#: instances/templates/instances/power_tab.html:121 +#: instances/templates/instances/power_tab.html:123 instances/views.py:262 msgid "Power On" msgstr "" -#: instances/templates/instance.html:174 -msgid "This action sends an ACPI shutdown signal to the instance." +#: instances/templates/instance_actions.html:15 +#: instances/templates/instances/power_tab.html:9 +#: instances/templates/instances/power_tab.html:59 instances/views.py:278 +msgid "Power Off" msgstr "" -#: instances/templates/instance.html:181 -msgid "" -"This action forcibly powers off and start the instance and may cause data " -"corruption." +#: instances/templates/instance_actions.html:16 +#: instances/templates/instance_actions.html:29 +#: instances/templates/instances/power_tab.html:14 +#: instances/templates/instances/power_tab.html:66 instances/views.py:271 +msgid "Power Cycle" msgstr "" -#: instances/templates/instance.html:188 instances/templates/instance.html:214 -msgid "" -"This action forcibly powers off the instance and may cause data corruption." +#: instances/templates/instance_actions.html:17 +#: instances/templates/instance_actions.html:30 +msgid "VNC Console" msgstr "" -#: instances/templates/instance.html:196 -msgid "This action suspends the instance." +#: instances/templates/instance_actions.html:22 +#: instances/templates/instances/power_tab.html:34 +#: instances/templates/instances/power_tab.html:93 +#: instances/templates/instances/power_tab.html:108 instances/views.py:295 +msgid "Resume" msgstr "" -#: instances/templates/instance.html:207 -msgid "This action restore the instance after suspend." +#: instances/templates/instance_actions.html:26 +#: instances/templates/instances/power_tab.html:19 +#: instances/templates/instances/power_tab.html:39 +#: instances/templates/instances/power_tab.html:74 +#: instances/templates/instances/power_tab.html:100 instances/views.py:302 +msgid "Force Off" msgstr "" -#: instances/templates/instance.html:222 -msgid "Administrator blocked your instance." -msgstr "" - -#: instances/templates/instance.html:232 -msgid "Click on Power On button to start this instance." -msgstr "" - -#: instances/templates/instance.html:235 -msgid "Template instance cannot be started." -msgstr "" - -#: instances/templates/instance.html:253 instances/templates/instance.html:285 -#: instances/templates/instance.html:290 instances/templates/instance.html:291 -#: instances/templates/instance.html:295 instances/templates/instance.html:617 -#: instances/templates/instance_actions.html:58 +#: instances/templates/instance_actions.html:41 +#: instances/templates/instances/access_tab.html:9 +#: instances/templates/instances/access_tab.html:79 +#: instances/templates/instances/access_tab.html:87 +#: instances/templates/instances/access_tab.html:90 +#: instances/templates/instances/access_tab.html:94 +#: instances/templates/instances/settings_tab.html:23 msgid "Console" msgstr "" -#: instances/templates/instance.html:259 +#: instances/templates/instances/access_tab.html:16 msgid "Root Password" msgstr "" -#: instances/templates/instance.html:273 instances/templates/instance.html:349 +#: instances/templates/instances/access_tab.html:31 +#: instances/templates/instances/access_tab.html:156 msgid "VDI" msgstr "" -#: instances/templates/instance.html:281 +#: instances/templates/instances/access_tab.html:39 +#, python-format msgid "" -"This action opens a new window with a VNC connection to the console of the " -"instance." +" This action opens a new window with a %(type)s connection to the console of " +"the instance." msgstr "" -#: instances/templates/instance.html:287 +#: instances/templates/instances/access_tab.html:47 +msgid "Scale" +msgstr "" + +#: instances/templates/instances/access_tab.html:55 +msgid "View Only" +msgstr "" + +#: instances/templates/instances/access_tab.html:63 +msgid "Resize Session" +msgstr "" + +#: instances/templates/instances/access_tab.html:71 +msgid "View Clipboard" +msgstr "" + +#: instances/templates/instances/access_tab.html:82 msgid "Toggle Dropdown" msgstr "" -#: instances/templates/instance.html:290 instances/templates/instance.html:291 +#: instances/templates/instances/access_tab.html:86 +#: instances/templates/instances/access_tab.html:89 msgid "Console port" msgstr "" -#: instances/templates/instance.html:290 +#: instances/templates/instances/access_tab.html:87 msgid "Lite" msgstr "" -#: instances/templates/instance.html:291 +#: instances/templates/instances/access_tab.html:90 msgid "Full" msgstr "" -#: instances/templates/instance.html:301 +#: instances/templates/instances/access_tab.html:100 msgid "You need shut down your instance and enter a new root password." msgstr "" -#: instances/templates/instance.html:305 +#: instances/templates/instances/access_tab.html:107 msgid "Enter Password" msgstr "" -#: instances/templates/instance.html:309 instances/templates/instance.html:311 +#: instances/templates/instances/access_tab.html:112 +#: instances/templates/instances/access_tab.html:115 msgid "Reset Root Password" msgstr "" -#: instances/templates/instance.html:319 +#: instances/templates/instances/access_tab.html:123 msgid "You need shut down your instance and choose your public key." msgstr "" -#: instances/templates/instance.html:335 instances/templates/instance.html:337 +#: instances/templates/instances/access_tab.html:142 +#: instances/templates/instances/access_tab.html:144 msgid "Add Public Key" msgstr "" -#: instances/templates/instance.html:345 +#: instances/templates/instances/access_tab.html:152 msgid "" "This action opens a remote viewer with a connection to the console of the " "instance." msgstr "" -#: instances/templates/instance.html:364 +#: instances/templates/instances/destroy_instance_form.html:4 +msgid "Confirm Destroy" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:8 +msgid "Destroy instance" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:15 +msgid "Instance is suspended, cannot destroy!" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:19 +msgid "This action is irreversible!" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:26 +msgid "Remove Instance's data" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:34 +msgid "Remove Instance's NVRAM" +msgstr "" + +#: instances/templates/instances/destroy_instance_form.html:46 +msgid "You cannot destroy instance!" +msgstr "" + +#: instances/templates/instances/destroy_tab.html:8 +msgid "Destroy Instance" +msgstr "" + +#: instances/templates/instances/destroy_tab.html:15 +msgid "This action starts remove instance process" +msgstr "" + +#: instances/templates/instances/power_tab.html:56 +msgid "This action sends an ACPI shutdown signal to the instance." +msgstr "" + +#: instances/templates/instances/power_tab.html:64 +msgid "" +"This action forcibly powers off and start the instance and may cause data " +"corruption." +msgstr "" + +#: instances/templates/instances/power_tab.html:71 +#: instances/templates/instances/power_tab.html:98 +msgid "" +"This action forcibly powers off the instance and may cause data corruption." +msgstr "" + +#: instances/templates/instances/power_tab.html:80 +msgid "This action suspends the instance." +msgstr "" + +#: instances/templates/instances/power_tab.html:91 +msgid "This action restore the instance after suspend." +msgstr "" + +#: instances/templates/instances/power_tab.html:106 +msgid "Administrator blocked your instance." +msgstr "" + +#: instances/templates/instances/power_tab.html:116 +msgid "Click on Power On button to start this instance." +msgstr "" + +#: instances/templates/instances/power_tab.html:120 +msgid "Template instance cannot be started." +msgstr "" + +#: instances/templates/instances/resize_tab.html:8 msgid "CPU" msgstr "" -#: instances/templates/instance.html:385 +#: instances/templates/instances/resize_tab.html:29 msgid "Logical host CPUs" msgstr "" -#: instances/templates/instance.html:387 instances/templates/instance.html:450 -#: instances/templates/instance.html:490 +#: instances/templates/instances/resize_tab.html:31 +#: instances/templates/instances/resize_tab.html:95 +#: instances/templates/instances/resize_tab.html:136 msgid "Current Allocation" msgstr "" -#: instances/templates/instance.html:401 instances/templates/instance.html:463 +#: instances/templates/instances/resize_tab.html:45 +#: instances/templates/instances/resize_tab.html:108 msgid "Maximum Allocation" msgstr "" -#: instances/templates/instance.html:419 +#: instances/templates/instances/resize_tab.html:63 msgid "Logical Instance Active/Maximum CPUs" msgstr "" -#: instances/templates/instance.html:427 instances/templates/instance.html:674 -#: instances/templates/instance.html:689 networks/templates/network.html:65 -#: storages/templates/storage.html:79 +#: instances/templates/instances/resize_tab.html:71 +#: instances/templates/instances/settings_tab.html:79 +#: instances/templates/instances/settings_tab.html:95 +#: networks/templates/network.html:65 storages/templates/storage.html:78 msgid "Disable" msgstr "" -#: instances/templates/instance.html:429 +#: instances/templates/instances/resize_tab.html:73 msgid "Constant" msgstr "" -#: instances/templates/instance.html:431 instances/templates/instance.html:672 -#: instances/templates/instance.html:687 networks/templates/network.html:63 -#: storages/templates/storage.html:76 +#: instances/templates/instances/resize_tab.html:75 +#: instances/templates/instances/settings_tab.html:77 +#: instances/templates/instances/settings_tab.html:91 +#: networks/templates/network.html:63 storages/templates/storage.html:75 msgid "Enable" msgstr "" -#: instances/templates/instance.html:440 instances/templates/instance.html:479 -#: instances/templates/instance.html:503 +#: instances/templates/instances/resize_tab.html:84 +#: instances/templates/instances/resize_tab.html:124 +#: instances/templates/instances/resize_tab.html:157 msgid "You don't have permission for resizing instance" msgstr "" -#: instances/templates/instance.html:448 +#: instances/templates/instances/resize_tab.html:93 msgid "Total host memory" msgstr "" -#: instances/templates/instance.html:458 instances/templates/instance.html:473 +#: instances/templates/instances/resize_tab.html:103 +#: instances/templates/instances/resize_tab.html:118 msgid "Custom value" msgstr "" -#: instances/templates/instance.html:487 +#: instances/templates/instances/resize_tab.html:133 msgid "Disk allocation (GB)" msgstr "" -#: instances/templates/instance.html:517 instances/templates/instance.html:538 -#: instances/templates/instance.html:540 -msgid "Take Snapshot" +#: instances/templates/instances/resize_tab.html:140 +#: instances/templates/instances/settings_tab.html:269 +msgid "Error getting disk info" msgstr "" -#: instances/templates/instance.html:522 -msgid "Manage Snapshots" -msgstr "" - -#: instances/templates/instance.html:530 -msgid "" -"This may take more than an hour, depending on how much content is on your " -"droplet and how large the disk is." -msgstr "" - -#: instances/templates/instance.html:534 -msgid "Enter Snapshot Name" -msgstr "" - -#: instances/templates/instance.html:545 -msgid "To take a snapshot please Power Off the instance." -msgstr "" - -#: instances/templates/instance.html:550 -msgid "Choose a snapshot for restore/delete" -msgstr "" - -#: instances/templates/instance.html:567 -msgid "Revert to this Snapshot" -msgstr "" - -#: instances/templates/instance.html:572 -msgid "To restore snapshots you need Power Off the instance." -msgstr "" - -#: instances/templates/instance.html:581 -msgid "Delete Snapshot" -msgstr "" - -#: instances/templates/instance.html:592 -msgid "You do not have any snapshots" -msgstr "" - -#: instances/templates/instance.html:605 +#: instances/templates/instances/settings_tab.html:11 msgid "Boot" msgstr "" -#: instances/templates/instance.html:638 instances/templates/instance.html:1174 -#: instances/templates/instance.html:1176 +#: instances/templates/instances/settings_tab.html:44 +#: instances/templates/instances/settings_tab.html:616 +#: instances/templates/instances/settings_tab.html:618 msgid "Migrate" msgstr "" -#: instances/templates/instance.html:650 +#: instances/templates/instances/settings_tab.html:56 msgid "Options" msgstr "" -#: instances/templates/instance.html:666 networks/templates/network.html:59 -#: storages/templates/storage.html:71 +#: instances/templates/instances/settings_tab.html:72 +#: networks/templates/network.html:59 storages/templates/storage.html:70 msgid "Autostart" msgstr "" -#: instances/templates/instance.html:670 +#: instances/templates/instances/settings_tab.html:75 msgid "Autostart your instance when host server is power on " msgstr "" -#: instances/templates/instance.html:680 +#: instances/templates/instances/settings_tab.html:84 msgid "Boot Order" msgstr "" -#: instances/templates/instance.html:685 +#: instances/templates/instances/settings_tab.html:88 msgid "Enable Boot Menu for your instance when it starts up " msgstr "" -#: instances/templates/instance.html:687 +#: instances/templates/instances/settings_tab.html:91 msgid "Show boot menu" msgstr "" -#: instances/templates/instance.html:689 +#: instances/templates/instances/settings_tab.html:95 msgid "Hide boot menu" msgstr "" -#: instances/templates/instance.html:693 +#: instances/templates/instances/settings_tab.html:100 msgid "Please shutdown instance to modify boot menu" msgstr "" -#: instances/templates/instance.html:724 +#: instances/templates/instances/settings_tab.html:130 msgid "up: move selected devices" msgstr "" -#: instances/templates/instance.html:727 +#: instances/templates/instances/settings_tab.html:133 msgid "down: move selected devices" msgstr "" -#: instances/templates/instance.html:733 instances/templates/instance.html:994 +#: instances/templates/instances/settings_tab.html:139 +#: instances/templates/instances/settings_tab.html:428 msgid "Apply" msgstr "" -#: instances/templates/instance.html:743 +#: instances/templates/instances/settings_tab.html:149 msgid "Instance Media" msgstr "" -#: instances/templates/instance.html:746 +#: instances/templates/instances/settings_tab.html:152 msgid "Add CD-ROM" msgstr "" -#: instances/templates/instance.html:764 instances/templates/instance.html:826 +#: instances/templates/instances/settings_tab.html:169 +#: instances/templates/instances/settings_tab.html:234 #: interfaces/templates/create_iface_block.html:34 #: networks/templates/network.html:46 networks/templates/networks.html:63 #: storages/templates/create_stg_block.html:77 msgid "Device" msgstr "" -#: instances/templates/instance.html:765 +#: instances/templates/instances/settings_tab.html:170 msgid "CD-ROM" msgstr "" -#: instances/templates/instance.html:781 instances/templates/instance.html:783 +#: instances/templates/instances/settings_tab.html:188 +#: instances/templates/instances/settings_tab.html:190 msgid "Mount" msgstr "" -#: instances/templates/instance.html:786 +#: instances/templates/instances/settings_tab.html:193 msgid "Detach CD-ROM (remove device)" msgstr "" -#: instances/templates/instance.html:800 instances/templates/instance.html:802 +#: instances/templates/instances/settings_tab.html:208 +#: instances/templates/instances/settings_tab.html:210 msgid "Unmount" msgstr "" -#: instances/templates/instance.html:812 +#: instances/templates/instances/settings_tab.html:220 msgid "There is not any CD-ROM device." msgstr "" -#: instances/templates/instance.html:817 +#: instances/templates/instances/settings_tab.html:225 msgid "Instance Volume" msgstr "" -#: instances/templates/instance.html:827 +#: instances/templates/instances/settings_tab.html:235 msgid "Used" msgstr "" -#: instances/templates/instance.html:828 +#: instances/templates/instances/settings_tab.html:236 msgid "Capacity" msgstr "" -#: instances/templates/instance.html:830 instances/templates/instance.html:928 +#: instances/templates/instances/settings_tab.html:238 +#: instances/templates/instances/settings_tab.html:362 msgid "Source" msgstr "" -#: instances/templates/instance.html:870 instances/templates/instance.html:877 +#: instances/templates/instances/settings_tab.html:294 +#: instances/templates/instances/settings_tab.html:298 msgid "Detach" msgstr "" -#: instances/templates/instance.html:870 +#: instances/templates/instances/settings_tab.html:294 msgid "Are you sure to detach volume?" msgstr "" -#: instances/templates/instance.html:873 -msgid "Are you sure to delete volume?" -msgstr "" - -#: instances/templates/instance.html:877 instances/templates/instance.html:880 +#: instances/templates/instances/settings_tab.html:298 +#: instances/templates/instances/settings_tab.html:314 msgid "Are you sure? This may lead data corruption!" msgstr "" -#: instances/templates/instance.html:896 +#: instances/templates/instances/settings_tab.html:310 +msgid "Are you sure to delete volume?" +msgstr "" + +#: instances/templates/instances/settings_tab.html:330 msgid "Add a network device" msgstr "" -#: instances/templates/instance.html:902 +#: instances/templates/instances/settings_tab.html:336 msgid "Network Devices" msgstr "" -#: instances/templates/instance.html:907 instances/templates/instance.html:908 +#: instances/templates/instances/settings_tab.html:341 +#: instances/templates/instances/settings_tab.html:342 msgid "Info" msgstr "" -#: instances/templates/instance.html:921 +#: instances/templates/instances/settings_tab.html:355 msgid "active" msgstr "" -#: instances/templates/instance.html:926 nwfilters/templates/nwfilter.html:78 +#: instances/templates/instances/settings_tab.html:360 +#: nwfilters/templates/nwfilter.html:78 msgid "Filter" msgstr "" -#: instances/templates/instance.html:933 +#: instances/templates/instances/settings_tab.html:367 msgid "Edit NIC" msgstr "" -#: instances/templates/instance.html:941 +#: instances/templates/instances/settings_tab.html:375 msgid "Edit Instance Network" msgstr "" -#: instances/templates/instance.html:954 +#: instances/templates/instances/settings_tab.html:388 msgid "Net Source" msgstr "" -#: instances/templates/instance.html:962 interfaces/templates/interface.html:3 -#: interfaces/templates/interface.html:8 interfaces/templates/interface.html:40 +#: instances/templates/instances/settings_tab.html:396 +#: interfaces/templates/interface.html:3 interfaces/templates/interface.html:8 +#: interfaces/templates/interface.html:40 msgid "Interface" msgstr "" -#: instances/templates/instance.html:980 instances/templates/instance.html:1019 +#: instances/templates/instances/settings_tab.html:414 +#: instances/templates/instances/settings_tab.html:453 msgid "Model" msgstr "" -#: instances/templates/instance.html:994 +#: instances/templates/instances/settings_tab.html:428 msgid "Apply network changes" msgstr "" -#: instances/templates/instance.html:1003 +#: instances/templates/instances/settings_tab.html:437 msgid "Delete Device" msgstr "" -#: instances/templates/instance.html:1011 +#: instances/templates/instances/settings_tab.html:445 #: interfaces/templates/create_iface_block.html:71 #: interfaces/templates/interface.html:42 msgid "IPv4" msgstr "" -#: instances/templates/instance.html:1015 +#: instances/templates/instances/settings_tab.html:449 #: interfaces/templates/create_iface_block.html:74 #: interfaces/templates/interface.html:44 msgid "IPv6" msgstr "" -#: instances/templates/instance.html:1021 +#: instances/templates/instances/settings_tab.html:455 msgid "QoS" msgstr "" -#: instances/templates/instance.html:1041 networks/templates/network.html:325 +#: instances/templates/instances/settings_tab.html:476 +#: networks/templates/network.html:325 msgid "QoS Configuration" msgstr "" -#: instances/templates/instance.html:1047 +#: instances/templates/instances/settings_tab.html:482 #: networks/templates/add_network_qos.html:18 #: networks/templates/network.html:331 nwfilters/templates/nwfilter.html:134 msgid "Direction" msgstr "" -#: instances/templates/instance.html:1048 +#: instances/templates/instances/settings_tab.html:483 #: networks/templates/add_network_qos.html:27 #: networks/templates/network.html:332 msgid "Average" msgstr "" -#: instances/templates/instance.html:1049 +#: instances/templates/instances/settings_tab.html:484 #: networks/templates/add_network_qos.html:34 #: networks/templates/network.html:333 msgid "Peak" msgstr "" -#: instances/templates/instance.html:1050 +#: instances/templates/instances/settings_tab.html:485 #: networks/templates/add_network_qos.html:41 #: networks/templates/network.html:334 msgid "Burst" msgstr "" -#: instances/templates/instance.html:1074 networks/templates/network.html:356 +#: instances/templates/instances/settings_tab.html:510 +#: networks/templates/network.html:356 msgid "Edit QoS" msgstr "" -#: instances/templates/instance.html:1079 networks/templates/network.html:361 +#: instances/templates/instances/settings_tab.html:520 +#: networks/templates/network.html:361 msgid "Delete QoS" msgstr "" -#: instances/templates/instance.html:1095 +#: instances/templates/instances/settings_tab.html:536 msgid "For migration both host servers must have equal settings and OS type" msgstr "" -#: instances/templates/instance.html:1098 +#: instances/templates/instances/settings_tab.html:540 msgid "Original host" msgstr "" -#: instances/templates/instance.html:1104 +#: instances/templates/instances/settings_tab.html:546 msgid "Host migration" msgstr "" -#: instances/templates/instance.html:1121 +#: instances/templates/instances/settings_tab.html:563 msgid "Live migration" msgstr "" -#: instances/templates/instance.html:1129 +#: instances/templates/instances/settings_tab.html:571 msgid "Unsafe migration" msgstr "" -#: instances/templates/instance.html:1137 +#: instances/templates/instances/settings_tab.html:579 msgid "Delete original" msgstr "" -#: instances/templates/instance.html:1145 +#: instances/templates/instances/settings_tab.html:587 msgid "Offline migration" msgstr "" -#: instances/templates/instance.html:1153 +#: instances/templates/instances/settings_tab.html:595 msgid "Post copy" msgstr "" -#: instances/templates/instance.html:1161 +#: instances/templates/instances/settings_tab.html:603 msgid "Forces CPU convergence during live migration" msgstr "" -#: instances/templates/instance.html:1161 +#: instances/templates/instances/settings_tab.html:603 msgid "Auto converge" msgstr "" -#: instances/templates/instance.html:1169 +#: instances/templates/instances/settings_tab.html:611 msgid "Compress instance memory for fast migration" msgstr "" -#: instances/templates/instance.html:1169 +#: instances/templates/instances/settings_tab.html:611 msgid "Compressed" msgstr "" -#: instances/templates/instance.html:1182 +#: instances/templates/instances/settings_tab.html:624 msgid "If you need to edit XML please Power Off the instance" msgstr "" -#: instances/templates/instance.html:1203 +#: instances/templates/instances/settings_tab.html:646 msgid "Instance owners" msgstr "" -#: instances/templates/instance.html:1216 -msgid "Delete Ownership" +#: instances/templates/instances/settings_tab.html:675 +msgid "To change console settings, shutdown the instance." msgstr "" -#: instances/templates/instance.html:1231 -msgid "To set console's type, shutdown the instance." +#: instances/templates/instances/settings_tab.html:681 +#: instances/templates/instances/settings_tab.html:683 +msgid "Update" msgstr "" -#: instances/templates/instance.html:1234 -#: interfaces/templates/create_iface_block.html:44 -#: interfaces/templates/interface.html:77 -#: interfaces/templates/interfaces.html:62 -#: storages/templates/create_stg_block.html:35 -#: storages/templates/create_stg_block.html:64 -#: storages/templates/create_stg_block.html:93 -#: storages/templates/create_stg_block.html:158 -#: storages/templates/storages.html:64 -msgid "Type" -msgstr "" - -#: instances/templates/instance.html:1238 -#: instances/templates/instance.html:1262 -#: instances/templates/instance.html:1331 -#: instances/templates/instance.html:1495 -msgid "please choose" -msgstr "" - -#: instances/templates/instance.html:1246 -#: instances/templates/instance.html:1248 -#: instances/templates/instance.html:1269 -#: instances/templates/instance.html:1271 -#: instances/templates/instance.html:1307 -#: instances/templates/instance.html:1309 -#: instances/templates/instance.html:1339 -#: instances/templates/instance.html:1341 -#: instances/templates/instance.html:1502 -#: instances/templates/instance.html:1504 -#: instances/templates/instance.html:1524 -#: instances/templates/instance.html:1526 -#: instances/templates/instance.html:1554 secrets/templates/secrets.html:103 -msgid "Set" -msgstr "" - -#: instances/templates/instance.html:1255 -msgid "To set console listen address, shutdown the instance." -msgstr "" - -#: instances/templates/instance.html:1258 -msgid "Listen on" -msgstr "" - -#: instances/templates/instance.html:1278 -msgid "To create console password, shutdown the instance." -msgstr "" - -#: instances/templates/instance.html:1284 -msgid "Generate" -msgstr "" - -#: instances/templates/instance.html:1288 -#: instances/templates/instance.html:1322 networks/templates/network.html:169 -#: networks/templates/network.html:279 -#: venv/lib/python3.6/site-packages/django/forms/widgets.py:395 -msgid "Clear" -msgstr "" - -#: instances/templates/instance.html:1304 networks/templates/network.html:161 -#: networks/templates/network.html:271 nwfilters/templates/nwfilters.html:88 -msgid "Show" -msgstr "" - -#: instances/templates/instance.html:1316 -msgid "To set console's keymap, shutdown the instance." -msgstr "" - -#: instances/templates/instance.html:1327 -msgid "Keymap" -msgstr "" - -#: instances/templates/instance.html:1353 +#: instances/templates/instances/settings_tab.html:692 msgid "Create a clone" msgstr "" -#: instances/templates/instance.html:1356 +#: instances/templates/instances/settings_tab.html:695 msgid "Clone Name" msgstr "" -#: instances/templates/instance.html:1363 -#: instances/templates/instance.html:1394 +#: instances/templates/instances/settings_tab.html:702 +#: instances/templates/instances/settings_tab.html:733 msgid "Guess" msgstr "" -#: instances/templates/instance.html:1382 +#: instances/templates/instances/settings_tab.html:721 msgid "Network devices" msgstr "" -#: instances/templates/instance.html:1392 +#: instances/templates/instances/settings_tab.html:731 msgid "Random" msgstr "" -#: instances/templates/instance.html:1407 +#: instances/templates/instances/settings_tab.html:746 msgid "Storage devices" msgstr "" -#: instances/templates/instance.html:1432 -#: instances/templates/instance.html:1455 +#: instances/templates/instances/settings_tab.html:771 +#: instances/templates/instances/settings_tab.html:794 msgid "Title" msgstr "" -#: instances/templates/instance.html:1452 +#: instances/templates/instances/settings_tab.html:791 msgid "To set instance template name description, shutdown the instance." msgstr "" -#: instances/templates/instance.html:1467 +#: instances/templates/instances/settings_tab.html:806 msgid "Is template" msgstr "" -#: instances/templates/instance.html:1488 +#: instances/templates/instances/settings_tab.html:827 msgid "To set instance video model, shutdown the instance." msgstr "" -#: instances/templates/instance.html:1491 +#: instances/templates/instances/settings_tab.html:830 msgid "Primary Video Model" msgstr "" -#: instances/templates/instance.html:1512 +#: instances/templates/instances/settings_tab.html:834 +msgid "please choose" +msgstr "" + +#: instances/templates/instances/settings_tab.html:841 +#: instances/templates/instances/settings_tab.html:843 +#: instances/templates/instances/settings_tab.html:863 +#: instances/templates/instances/settings_tab.html:865 +#: instances/templates/instances/settings_tab.html:893 +#: secrets/templates/secrets.html:103 +msgid "Set" +msgstr "" + +#: instances/templates/instances/settings_tab.html:851 msgid "To set instance vCPUs hotpluggable" msgstr "" -#: instances/templates/instance.html:1515 +#: instances/templates/instances/settings_tab.html:854 msgid "vCPU Hot Plug" msgstr "" -#: instances/templates/instance.html:1519 -#: instances/templates/instance.html:1550 +#: instances/templates/instances/settings_tab.html:858 +#: instances/templates/instances/settings_tab.html:889 msgid "Enabled" msgstr "" -#: instances/templates/instance.html:1520 -#: instances/templates/instance.html:1551 +#: instances/templates/instances/settings_tab.html:859 +#: instances/templates/instances/settings_tab.html:890 msgid "Disabled" msgstr "" -#: instances/templates/instance.html:1534 +#: instances/templates/instances/settings_tab.html:873 msgid "To Enable/Disable Qemu Guest Agent. Status" msgstr "" -#: instances/templates/instance.html:1539 +#: instances/templates/instances/settings_tab.html:878 msgid "Disconnected" msgstr "" -#: instances/templates/instance.html:1542 +#: instances/templates/instances/settings_tab.html:881 #: venv/lib/python3.6/site-packages/django/forms/widgets.py:709 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:703 msgid "Unknown" msgstr "" -#: instances/templates/instance.html:1546 +#: instances/templates/instances/settings_tab.html:885 msgid "Qemu Guest Agent" msgstr "" -#: instances/templates/instance.html:1572 +#: instances/templates/instances/snapshots_tab.html:9 +#: instances/templates/instances/snapshots_tab.html:31 +#: instances/templates/instances/snapshots_tab.html:33 +msgid "Take Snapshot" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:14 +msgid "Manage Snapshots" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:22 +msgid "" +"This may take more than an hour, depending on how much content is on your " +"droplet and how large the disk is." +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:27 +msgid "Enter Snapshot Name" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:38 +msgid "To take a snapshot please Power Off the instance." +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:43 +msgid "Choose a snapshot for restore/delete" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:61 +msgid "Revert to this Snapshot" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:66 +msgid "To restore snapshots you need Power Off the instance." +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:75 +msgid "Delete Snapshot" +msgstr "" + +#: instances/templates/instances/snapshots_tab.html:86 +msgid "You do not have any snapshots" +msgstr "" + +#: instances/templates/instances/stats_tab.html:8 msgid "Real Time" msgstr "" -#: instances/templates/instance.html:1586 +#: instances/templates/instances/stats_tab.html:23 msgid "CPU Usage" msgstr "" -#: instances/templates/instance.html:1598 +#: instances/templates/instances/stats_tab.html:36 msgid "Memory Usage" msgstr "" -#: instances/templates/instance.html:1611 +#: instances/templates/instances/stats_tab.html:50 msgid "Bandwidth Device" msgstr "" -#: instances/templates/instance.html:1625 +#: instances/templates/instances/stats_tab.html:65 msgid "Disk I/O device" msgstr "" -#: instances/templates/instance.html:1664 -msgid "Destroy Instance" -msgstr "" - -#: instances/templates/instance.html:1671 -msgid "Delete storage for instance?" -msgstr "" - -#: instances/templates/instance.html:1680 -msgid "Remove Instance's data" -msgstr "" - -#: instances/templates/instance.html:1687 -msgid "Remove Instance's NVRAM" -msgstr "" - -#: instances/templates/instance_actions.html:24 -#: instances/templates/instance_actions.html:41 -msgid "VNC Console" -msgstr "" - -#: instances/templates/instances.html:61 -msgid "Hypervisor doesn't have any Instances" -msgstr "" - -#: instances/views.py:224 +#: instances/utils.py:122 msgid "None available device name" msgstr "" -#: instances/views.py:260 +#: instances/utils.py:239 +msgid "Deleting due to multiple(Instance Name) records." +msgstr "" + +#: instances/utils.py:247 +msgid "Deleting due to multiple(UUID) records." +msgstr "" + +#: instances/views.py:259 +msgid "Templates cannot be started." +msgstr "" + +#: instances/views.py:362 #, python-brace-format msgid "Migrate to {new_compute.hostname}" msgstr "" -#: instances/views.py:340 -#, python-brace-format -msgid "Fixing UUID {uuid}" -msgstr "" - -#: instances/views.py:345 -msgid "Instance does not exist: Creating new instance" -msgstr "" - -#: instances/views.py:370 instances/views.py:1190 -msgid "Templates cannot be started." -msgstr "" - -#: instances/views.py:437 +#: instances/views.py:385 msgid "Reset root password" msgstr "" -#: instances/views.py:445 instances/views.py:467 +#: instances/views.py:391 instances/views.py:417 msgid "Please shutdown down your instance and then try again" msgstr "" -#: instances/views.py:459 +#: instances/views.py:409 #, python-brace-format msgid "Installed new SSH public key {publickey.keyname}" msgstr "" -#: instances/views.py:477 +#: instances/views.py:436 #, python-brace-format msgid "User {quota_msg} quota reached, cannot resize CPU of '{instance.name}'!" msgstr "" -#: instances/views.py:483 +#: instances/views.py:442 msgid "Resize CPU" msgstr "" -#: instances/views.py:501 +#: instances/views.py:470 #, python-brace-format msgid "" "User {quota_msg} quota reached, cannot resize memory of '{instance.name}'!" msgstr "" -#: instances/views.py:507 +#: instances/views.py:476 msgid "Resize Memory" msgstr "" -#: instances/views.py:524 +#: instances/views.py:506 #, python-brace-format msgid "" "User {quota_msg} quota reached, cannot resize disks of '{instance.name}'!" msgstr "" -#: instances/views.py:528 +#: instances/views.py:510 msgid "Disk resize" msgstr "" @@ -2602,259 +2558,289 @@ msgstr "" msgid "Attach new disk {name} ({format})" msgstr "" -#: instances/views.py:571 +#: instances/views.py:580 #, python-brace-format msgid "Attach Existing disk: {target_dev}" msgstr "" -#: instances/views.py:603 +#: instances/views.py:636 msgid "Volume changes are applied. But it will be activated after shutdown" msgstr "" -#: instances/views.py:606 +#: instances/views.py:638 msgid "Volume is changed successfully." msgstr "" -#: instances/views.py:607 +#: instances/views.py:639 #, python-brace-format msgid "Edit disk: {target_dev}" msgstr "" -#: instances/views.py:623 +#: instances/views.py:661 #, python-brace-format msgid "Delete disk: {dev}" msgstr "" -#: instances/views.py:628 -#, python-brace-format -msgid "The disk: {dev} is detached but not deleted. Error: {err}" -msgstr "" - -#: instances/views.py:638 +#: instances/views.py:677 #, python-brace-format msgid "Detach disk: {dev}" msgstr "" -#: instances/views.py:646 +#: instances/views.py:690 #, python-brace-format msgid "Add CD-ROM: {target}" msgstr "" -#: instances/views.py:653 +#: instances/views.py:703 #, python-brace-format msgid "Detach CD-ROM: {dev}" msgstr "" -#: instances/views.py:661 +#: instances/views.py:716 #, python-brace-format msgid "Mount media: {dev}" msgstr "" -#: instances/views.py:669 +#: instances/views.py:729 #, python-brace-format msgid "Umount media: {dev}" msgstr "" -#: instances/views.py:676 +#: instances/views.py:742 #, python-brace-format msgid "New snapshot : {name}" msgstr "" -#: instances/views.py:683 +#: instances/views.py:753 #, python-brace-format msgid "Delete snapshot : {snap_name}" msgstr "" -#: instances/views.py:690 +#: instances/views.py:764 msgid "Successful revert snapshot: " msgstr "" -#: instances/views.py:693 +#: instances/views.py:767 msgid "Revert snapshot" msgstr "" -#: instances/views.py:716 +#: instances/views.py:781 #, python-brace-format msgid "VCPU {id} is enabled={enabled}" msgstr "" -#: instances/views.py:723 +#: instances/views.py:792 #, python-brace-format msgid "VCPU Hot-plug is enabled={status}" msgstr "" -#: instances/views.py:734 +#: instances/views.py:803 msgid "Set autostart" msgstr "" -#: instances/views.py:740 +#: instances/views.py:812 msgid "Unset autostart" msgstr "" -#: instances/views.py:746 +#: instances/views.py:821 msgid "Enable boot menu" msgstr "" -#: instances/views.py:752 +#: instances/views.py:830 msgid "Disable boot menu" msgstr "" -#: instances/views.py:764 +#: instances/views.py:845 msgid "Set boot order" msgstr "" -#: instances/views.py:767 +#: instances/views.py:848 msgid "Boot menu changes applied. But it will be activated after shutdown" msgstr "" -#: instances/views.py:770 +#: instances/views.py:850 msgid "Boot order changed successfully." msgstr "" -#: instances/views.py:778 +#: instances/views.py:861 msgid "Edit XML" msgstr "" -#: instances/views.py:792 -msgid "Enter the console password or select Generate" +#: instances/views.py:875 +#, python-brace-format +msgid "Set Quest Agent {status}" msgstr "" -#: instances/views.py:796 +#: instances/views.py:885 +msgid "Set Video Model" +msgstr "" + +#: instances/views.py:894 +msgid "Change network" +msgstr "" + +#: instances/views.py:907 +msgid "Network Device Config is changed. Please shutdown instance to activate." +msgstr "" + +#: instances/views.py:915 +msgid "Add network" +msgstr "" + +#: instances/views.py:929 +msgid "Delete network" +msgstr "" + +#: instances/views.py:945 +#, python-brace-format +msgid "Set Link State: {state}" +msgstr "" + +#: instances/views.py:964 +msgid "{qos_dir.capitalize()} QoS is set" +msgstr "" + +#: instances/views.py:968 networks/views.py:216 +msgid "{qos_dir.capitalize()} QoS is set. Network XML is changed." +msgstr "" + +#: instances/views.py:969 networks/views.py:217 +msgid "Stop and start network to activate new config" +msgstr "" + +#: instances/views.py:983 networks/views.py:233 +msgid "{qos_dir.capitalize()} QoS is deleted" +msgstr "" + +#: instances/views.py:987 networks/views.py:230 +msgid "{qos_dir.capitalize()} QoS is deleted. Network XML is changed. " +msgstr "" + +#: instances/views.py:988 networks/views.py:231 +msgid "Stop and start network to activate new config." +msgstr "" + +#: instances/views.py:1004 +msgid "Only one owner is allowed and the one already added" +msgstr "" + +#: instances/views.py:1009 +#, python-format +msgid "Added owner %(user)s" +msgstr "" + +#: instances/views.py:1020 +#, python-brace-format +msgid "Deleted owner {userinstance_id}" +msgstr "" + +#: instances/views.py:1052 +msgid "User '{quota_msg}' quota reached, cannot create '{clone_data['name']}'!" +msgstr "" + +#: instances/views.py:1055 +msgid "Instance '{clone_data['name']}' already exists!" +msgstr "" + +#: instances/views.py:1058 +msgid "Instance name '{clone_data['name']}' contains invalid characters!" +msgstr "" + +#: instances/views.py:1061 +msgid "Instance MAC '{clone_data['clone-net-mac-0']}' invalid format!" +msgstr "" + +#: instances/views.py:1071 +#, python-brace-format +msgid "Clone of '{instance.name}'" +msgstr "" + +#: instances/views.py:1104 msgid "" "Error setting console password. You should check that your instance have an " "graphic device." msgstr "" -#: instances/views.py:800 +#: instances/views.py:1107 msgid "Set VNC password" msgstr "" -#: instances/views.py:811 +#: instances/views.py:1115 msgid "Set VNC keymap" msgstr "" -#: instances/views.py:817 +#: instances/views.py:1120 msgid "Set VNC type" msgstr "" -#: instances/views.py:821 -msgid "Console type not supported" -msgstr "" - -#: instances/views.py:828 +#: instances/views.py:1125 msgid "Set VNC listen address" msgstr "" -#: instances/views.py:840 -#, python-brace-format -msgid "Set Quest Agent {status}" -msgstr "" - -#: instances/views.py:847 -msgid "Set Video Model" -msgstr "" - -#: instances/views.py:872 -msgid "Change network" -msgstr "" - -#: instances/views.py:885 -msgid "Network Device Config is changed. Please shutdown instance to activate." -msgstr "" - -#: instances/views.py:890 -msgid "Add network" -msgstr "" - -#: instances/views.py:900 -msgid "Delete network" -msgstr "" - -#: instances/views.py:912 -#, python-brace-format -msgid "Set Link State: {state}" -msgstr "" - -#: instances/views.py:928 -msgid "{qos_dir.capitalize()} QoS is set" -msgstr "" - -#: instances/views.py:931 networks/views.py:216 -msgid "{qos_dir.capitalize()} QoS is set. Network XML is changed." -msgstr "" - -#: instances/views.py:932 networks/views.py:217 -msgid "Stop and start network to activate new config" -msgstr "" - -#: instances/views.py:943 networks/views.py:233 -msgid "{qos_dir.capitalize()} QoS is deleted" -msgstr "" - -#: instances/views.py:946 networks/views.py:230 -msgid "{qos_dir.capitalize()} QoS is deleted. Network XML is changed. " -msgstr "" - -#: instances/views.py:947 networks/views.py:231 -msgid "Stop and start network to activate new config." -msgstr "" - -#: instances/views.py:959 -msgid "Only one owner is allowed and the one already added" -msgstr "" - -#: instances/views.py:964 -#, python-brace-format -msgid "Added owner {user_id}" -msgstr "" - -#: instances/views.py:972 -#, python-brace-format -msgid "Deleted owner {userinstance_id}" -msgstr "" - -#: instances/views.py:1001 -msgid "User '{quota_msg}' quota reached, cannot create '{clone_data['name']}'!" -msgstr "" - -#: instances/views.py:1004 -msgid "Instance '{clone_data['name']}' already exists!" -msgstr "" - -#: instances/views.py:1007 -msgid "Instance name '{clone_data['name']}' contains invalid characters!" -msgstr "" - -#: instances/views.py:1011 -msgid "Instance MAC '{clone_data['clone-net-mac-0']}' invalid format!" -msgstr "" - -#: instances/views.py:1027 -#, python-brace-format -msgid "Clone of '{instance.name}'" -msgstr "" - -#: instances/views.py:1046 +#: instances/views.py:1148 msgid "Edit options" msgstr "" -#: instances/views.py:1103 -msgid "Deleting due to multiple(Instance Name) records." -msgstr "" - -#: instances/views.py:1111 -msgid "Deleting due to multiple(UUID) records." -msgstr "" - -#: instances/views.py:1160 -#, python-brace-format -msgid "Problem occurred with host: {comp.name} - {status}" -msgstr "" - -#: instances/views.py:1218 +#: instances/views.py:1162 msgid "Send console.vv file" msgstr "" +#: instances/views.py:1214 instances/views.py:1307 +msgid "A virtual machine with this name already exists" +msgstr "" + +#: instances/views.py:1288 +msgid "You haven't defined any storage pools" +msgstr "" + +#: instances/views.py:1291 +msgid "You haven't defined any network pools" +msgstr "" + +#: instances/views.py:1310 +msgid "There is an instance with same name. Are you sure?" +msgstr "" + +#: instances/views.py:1313 +msgid "No Virtual Machine MAC has been entered" +msgstr "" + +#: instances/views.py:1337 +msgid "Image has already exist. Please check volumes or change instance name" +msgstr "" + +#: instances/views.py:1358 +msgid "First you need to create or select an image" +msgstr "" + +#: instances/views.py:1377 +msgid "Invalid cache mode" +msgstr "" + +#: instances/views.py:1414 +msgid "Instance is created" +msgstr "" + +#: instances/views.py:1433 +msgid "Flavor Created" +msgstr "" + +#: instances/views.py:1441 +msgid "Create Flavor" +msgstr "" + +#: instances/views.py:1452 +msgid "Flavor Updated" +msgstr "" + +#: instances/views.py:1460 +msgid "Update Flavor" +msgstr "" + +#: instances/views.py:1470 +msgid "Flavor Deleted" +msgstr "" + #: interfaces/forms.py:25 msgid "The IPv4 address must not contain any special characters" msgstr "" @@ -2915,6 +2901,17 @@ msgstr "" msgid "hotplug" msgstr "" +#: interfaces/templates/create_iface_block.html:44 +#: interfaces/templates/interface.html:77 +#: interfaces/templates/interfaces.html:62 +#: storages/templates/create_stg_block.html:35 +#: storages/templates/create_stg_block.html:64 +#: storages/templates/create_stg_block.html:93 +#: storages/templates/create_stg_block.html:158 +#: storages/templates/storages.html:64 +msgid "Type" +msgstr "" + #: interfaces/templates/create_iface_block.html:47 msgid "bridge" msgstr "" @@ -2993,12 +2990,12 @@ msgstr "" #: interfaces/templates/interface.html:56 #: interfaces/templates/interface.html:79 networks/templates/network.html:48 -#: storages/templates/storage.html:58 +#: storages/templates/storage.html:57 msgid "State" msgstr "" #: interfaces/templates/interface.html:63 networks/templates/network.html:55 -#: storages/templates/storage.html:66 +#: storages/templates/storage.html:65 msgid "Stop" msgstr "" @@ -3014,19 +3011,19 @@ msgstr "" msgid "Hypervisor doesn't have any Interfaces" msgstr "" -#: logs/models.py:5 +#: logs/models.py:6 msgid "user" msgstr "" -#: logs/models.py:6 +#: logs/models.py:7 msgid "instance" msgstr "" -#: logs/models.py:7 +#: logs/models.py:8 msgid "message" msgstr "" -#: logs/models.py:8 +#: logs/models.py:9 msgid "date" msgstr "" @@ -3042,11 +3039,11 @@ msgstr "" msgid "No IPv6 subnet has been entered" msgstr "" -#: networks/forms.py:24 storages/forms.py:25 +#: networks/forms.py:24 storages/forms.py:22 msgid "The pool name must not contain any special characters" msgstr "" -#: networks/forms.py:26 storages/forms.py:27 +#: networks/forms.py:26 storages/forms.py:24 msgid "The pool name must not exceed 20 characters" msgstr "" @@ -3215,6 +3212,17 @@ msgstr "" msgid "IPv4 Fixed Addresses" msgstr "" +#: networks/templates/network.html:161 networks/templates/network.html:271 +#: nwfilters/templates/nwfilters.html:88 +msgid "Show" +msgstr "" + +#: networks/templates/network.html:169 networks/templates/network.html:279 +#: venv/lib/python3.6/site-packages/django/forms/widgets.py:395 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:377 +msgid "Clear" +msgstr "" + #: networks/templates/network.html:192 networks/templates/network.html:301 msgid "Edit entry" msgstr "" @@ -3396,7 +3404,7 @@ msgid "Private" msgstr "" #: secrets/templates/create_secret_block.html:36 -#: storages/templates/storage.html:56 +#: storages/templates/storage.html:55 msgid "Usage" msgstr "" @@ -3421,27 +3429,27 @@ msgstr "" msgid "Value" msgstr "" -#: storages/forms.py:10 storages/forms.py:39 +#: storages/forms.py:9 storages/forms.py:36 msgid "No path has been entered" msgstr "" -#: storages/forms.py:36 +#: storages/forms.py:33 msgid "The target must not contain any special characters" msgstr "" -#: storages/forms.py:48 +#: storages/forms.py:45 msgid "No device or path has been entered" msgstr "" -#: storages/forms.py:50 +#: storages/forms.py:47 msgid "The disk source must not contain any special characters" msgstr "" -#: storages/forms.py:66 storages/forms.py:85 +#: storages/forms.py:61 storages/forms.py:76 msgid "The image name must not contain any special characters" msgstr "" -#: storages/forms.py:68 storages/forms.py:87 +#: storages/forms.py:78 msgid "The image name must not exceed 120 characters" msgstr "" @@ -3510,66 +3518,63 @@ msgstr "" msgid "Local Path" msgstr "" -#: storages/templates/create_stg_vol_block.html:14 +#: storages/templates/create_stg_vol_block.html:15 msgid "Upload ISO Image" msgstr "" -#: storages/templates/create_stg_vol_block.html:28 +#: storages/templates/create_stg_vol_block.html:29 msgid "Upload" msgstr "" -#: storages/templates/create_stg_vol_block.html:45 +#: storages/templates/create_stg_vol_block.html:46 msgid "Add New Volume" msgstr "" -#: storages/templates/create_stg_vol_block.html:60 -#: storages/templates/storage.html:144 -msgid "qcow2" -msgstr "" - -#: storages/templates/create_stg_vol_block.html:61 -#: storages/templates/storage.html:143 -msgid "qcow" -msgstr "" - -#: storages/templates/create_stg_vol_block.html:62 -#: storages/templates/storage.html:142 -msgid "raw" -msgstr "" - -#: storages/templates/storage.html:46 +#: storages/templates/storage.html:45 msgid "Pool name" msgstr "" -#: storages/templates/storage.html:48 +#: storages/templates/storage.html:47 msgid "Pool type" msgstr "" -#: storages/templates/storage.html:50 +#: storages/templates/storage.html:49 msgid "Pool path" msgstr "" -#: storages/templates/storage.html:52 +#: storages/templates/storage.html:51 msgid "Pool status" msgstr "" -#: storages/templates/storage.html:87 storages/templates/storages.html:68 +#: storages/templates/storage.html:86 storages/templates/storages.html:68 msgid "Volumes" msgstr "" -#: storages/templates/storage.html:99 +#: storages/templates/storage.html:98 msgid "Allocated" msgstr "" -#: storages/templates/storage.html:120 +#: storages/templates/storage.html:119 msgid "Clone image" msgstr "" -#: storages/templates/storage.html:133 +#: storages/templates/storage.html:132 msgid "Convert" msgstr "" -#: storages/templates/storage.html:189 +#: storages/templates/storage.html:141 +msgid "raw" +msgstr "" + +#: storages/templates/storage.html:142 +msgid "qcow" +msgstr "" + +#: storages/templates/storage.html:143 +msgid "qcow2" +msgstr "" + +#: storages/templates/storage.html:188 msgid "Hypervisor doesn't have any Volumes" msgstr "" @@ -3577,44 +3582,44 @@ msgstr "" msgid "Hypervisor doesn't have any Storages" msgstr "" -#: storages/views.py:38 +#: storages/views.py:40 msgid "Pool name already use" msgstr "" -#: storages/views.py:42 +#: storages/views.py:44 msgid "You need create secret for pool" msgstr "" -#: storages/views.py:45 +#: storages/views.py:47 msgid "You need input all fields for creating ceph pool" msgstr "" -#: storages/views.py:153 -#, python-brace-format -msgid "Image file {name} is created successfully" -msgstr "" - -#: storages/views.py:165 +#: storages/views.py:129 #, python-brace-format msgid "Volume: {volname} is deleted." msgstr "" -#: storages/views.py:171 +#: storages/views.py:134 msgid "ISO image already exist" msgstr "" -#: storages/views.py:175 +#: storages/views.py:138 msgid "ISO: {request.FILES['file']} is uploaded." msgstr "" -#: storages/views.py:184 +#: storages/views.py:147 msgid "Name of volume already in use" msgstr "" -#: storages/views.py:195 +#: storages/views.py:157 msgid "{data['image']} image cloned as {name} successfully" msgstr "" +#: storages/views.py:196 +#, python-brace-format +msgid "Image file {name} is created successfully" +msgstr "" + #: templates/403.html:3 msgid "403" msgstr "" @@ -3661,6 +3666,10 @@ msgid "" "to complete you request." msgstr "" +#: templates/common/confirm_delete.html:12 +msgid "Are you sure you want to delete" +msgstr "" + #: templates/errors_block.html:8 msgid "Error" msgstr "" @@ -3684,57 +3693,71 @@ msgid "close" msgstr "" #: venv/lib/python3.6/site-packages/django/contrib/messages/apps.py:7 +#: venv2/lib/python2.7/site-packages/django/contrib/messages/apps.py:7 msgid "Messages" msgstr "" #: venv/lib/python3.6/site-packages/django/contrib/sitemaps/apps.py:7 +#: venv2/lib/python2.7/site-packages/django/contrib/sitemaps/apps.py:7 msgid "Site Maps" msgstr "" #: venv/lib/python3.6/site-packages/django/contrib/staticfiles/apps.py:9 +#: venv2/lib/python2.7/site-packages/django/contrib/staticfiles/apps.py:7 msgid "Static Files" msgstr "" #: venv/lib/python3.6/site-packages/django/contrib/syndication/apps.py:7 +#: venv2/lib/python2.7/site-packages/django/contrib/syndication/apps.py:7 msgid "Syndication" msgstr "" #: venv/lib/python3.6/site-packages/django/core/paginator.py:45 +#: venv2/lib/python2.7/site-packages/django/core/paginator.py:43 msgid "That page number is not an integer" msgstr "" #: venv/lib/python3.6/site-packages/django/core/paginator.py:47 +#: venv2/lib/python2.7/site-packages/django/core/paginator.py:45 msgid "That page number is less than 1" msgstr "" #: venv/lib/python3.6/site-packages/django/core/paginator.py:52 +#: venv2/lib/python2.7/site-packages/django/core/paginator.py:50 msgid "That page contains no results" msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:31 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:34 msgid "Enter a valid value." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:102 #: venv/lib/python3.6/site-packages/django/forms/fields.py:658 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:107 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:671 msgid "Enter a valid URL." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:154 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:160 msgid "Enter a valid integer." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:165 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:171 msgid "Enter a valid email address." msgstr "" #. Translators: "letters" means latin letters: a-z and A-Z. #: venv/lib/python3.6/site-packages/django/core/validators.py:239 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:245 msgid "" "Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:246 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:252 msgid "" "Enter a valid 'slug' consisting of Unicode letters, numbers, underscores, or " "hyphens." @@ -3742,39 +3765,51 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:255 #: venv/lib/python3.6/site-packages/django/core/validators.py:275 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:257 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:277 msgid "Enter a valid IPv4 address." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:260 #: venv/lib/python3.6/site-packages/django/core/validators.py:276 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:262 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:278 msgid "Enter a valid IPv6 address." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:270 #: venv/lib/python3.6/site-packages/django/core/validators.py:274 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:272 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:276 msgid "Enter a valid IPv4 or IPv6 address." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:304 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:308 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1131 msgid "Enter only digits separated by commas." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:310 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:314 #, python-format msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:342 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:345 #, python-format msgid "Ensure this value is less than or equal to %(limit_value)s." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:351 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:354 #, python-format msgid "Ensure this value is greater than or equal to %(limit_value)s." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:361 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:364 #, python-format msgid "" "Ensure this value has at least %(limit_value)d character (it has " @@ -3786,6 +3821,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:376 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:379 #, python-format msgid "" "Ensure this value has at most %(limit_value)d character (it has " @@ -3799,10 +3835,13 @@ msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:395 #: venv/lib/python3.6/site-packages/django/forms/fields.py:290 #: venv/lib/python3.6/site-packages/django/forms/fields.py:325 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:303 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:340 msgid "Enter a number." msgstr "" #: venv/lib/python3.6/site-packages/django/core/validators.py:397 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:399 #, python-format msgid "Ensure that there are no more than %(max)s digit in total." msgid_plural "Ensure that there are no more than %(max)s digits in total." @@ -3810,6 +3849,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:402 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:404 #, python-format msgid "Ensure that there are no more than %(max)s decimal place." msgid_plural "Ensure that there are no more than %(max)s decimal places." @@ -3817,6 +3857,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:407 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:409 #, python-format msgid "" "Ensure that there are no more than %(max)s digit before the decimal point." @@ -3826,6 +3867,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/core/validators.py:469 +#: venv2/lib/python2.7/site-packages/django/core/validators.py:463 #, python-format msgid "" "File extension '%(extension)s' is not allowed. Allowed extensions are: " @@ -3838,28 +3880,35 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/base.py:1162 #: venv/lib/python3.6/site-packages/django/forms/models.py:756 +#: venv2/lib/python2.7/site-packages/django/db/models/base.py:1209 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:749 msgid "and" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/base.py:1164 +#: venv2/lib/python2.7/site-packages/django/db/models/base.py:1211 #, python-format msgid "%(model_name)s with this %(field_labels)s already exists." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:104 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:116 #, python-format msgid "Value %(value)r is not a valid choice." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:105 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:117 msgid "This field cannot be null." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:106 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:118 msgid "This field cannot be blank." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:107 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:119 #, python-format msgid "%(model_name)s with this %(field_label)s already exists." msgstr "" @@ -3867,33 +3916,42 @@ msgstr "" #. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. #. Eg: "Title must be unique for pub_date year" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:111 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:123 #, python-format msgid "" "%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:128 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:140 #, python-format msgid "Field of type: %(field_type)s" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:905 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1772 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:901 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1809 msgid "Integer" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:909 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1770 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:905 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1807 #, python-format msgid "'%(value)s' value must be an integer." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:984 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1850 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:978 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1878 msgid "Big (8 byte) integer" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:996 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:990 #, python-format msgid "'%(value)s' value must be either True or False." msgstr "" @@ -3904,19 +3962,23 @@ msgid "'%(value)s' value must be either True, False, or None." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:999 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:992 msgid "Boolean (Either True or False)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1040 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1058 #, python-format msgid "String (up to %(max_length)s)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1104 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1115 msgid "Comma-separated integers" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1153 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1172 #, python-format msgid "" "'%(value)s' value has an invalid date format. It must be in YYYY-MM-DD " @@ -3925,6 +3987,8 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1155 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1298 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1174 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1319 #, python-format msgid "" "'%(value)s' value has the correct format (YYYY-MM-DD) but it is an invalid " @@ -3932,10 +3996,12 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1158 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1177 msgid "Date (without time)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1296 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1317 #, python-format msgid "" "'%(value)s' value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." @@ -3943,6 +4009,7 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1300 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1321 #, python-format msgid "" "'%(value)s' value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" @@ -3950,19 +4017,23 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1304 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1325 msgid "Date (with time)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1452 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1475 #, python-format msgid "'%(value)s' value must be a decimal number." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1454 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1477 msgid "Decimal number" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1593 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1628 #, python-format msgid "" "'%(value)s' value has an invalid format. It must be in [DD] [HH:[MM:]]ss[." @@ -3970,66 +4041,81 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1596 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1631 msgid "Duration" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1646 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1683 msgid "Email address" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1669 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1707 msgid "File path" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1735 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1773 #, python-format msgid "'%(value)s' value must be a float." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1737 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1775 msgid "Floating point number" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1866 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1893 msgid "IPv4 address" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1897 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:1924 msgid "IP address" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1977 #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1978 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2006 #, python-format msgid "'%(value)s' value must be either None, True or False." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1980 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2008 msgid "Boolean (Either True, False or None)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2015 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2071 msgid "Positive integer" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2028 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2083 msgid "Positive small integer" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2042 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2096 #, python-format msgid "Slug (up to %(max_length)s)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2074 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2130 msgid "Small integer" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2081 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2137 msgid "Text" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2109 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2163 #, python-format msgid "" "'%(value)s' value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " @@ -4037,6 +4123,7 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2111 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2165 #, python-format msgid "" "'%(value)s' value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " @@ -4044,18 +4131,22 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2114 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2168 msgid "Time" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2240 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2296 msgid "URL" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2262 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2319 msgid "Raw binary data" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:2312 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/__init__.py:2366 #, python-format msgid "'%(value)s' is not a valid UUID." msgstr "" @@ -4065,65 +4156,81 @@ msgid "Universally unique identifier" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/files.py:221 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/files.py:228 msgid "File" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:778 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:788 #, python-format msgid "%(model)s instance with %(field)s %(value)r does not exist." msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:780 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:790 msgid "Foreign Key (type determined by related field)" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:1007 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:1029 msgid "One-to-one relationship" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:1057 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:1104 #, python-format msgid "%(from)s-%(to)s relationship" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:1058 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:1105 #, python-format msgid "%(from)s-%(to)s relationships" msgstr "" #: venv/lib/python3.6/site-packages/django/db/models/fields/related.py:1100 +#: venv2/lib/python2.7/site-packages/django/db/models/fields/related.py:1147 msgid "Many-to-many relationship" msgstr "" #. Translators: If found as last label character, these punctuation #. characters will prevent the default label_suffix to be appended to the label #: venv/lib/python3.6/site-packages/django/forms/boundfield.py:146 +#: venv2/lib/python2.7/site-packages/django/forms/boundfield.py:181 msgid ":?.!" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:53 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:56 msgid "This field is required." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:245 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:258 msgid "Enter a whole number." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:396 #: venv/lib/python3.6/site-packages/django/forms/fields.py:1126 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:418 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:1149 msgid "Enter a valid date." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:420 #: venv/lib/python3.6/site-packages/django/forms/fields.py:1127 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:442 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:1150 msgid "Enter a valid time." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:442 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:464 msgid "Enter a valid date/time." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:471 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:493 msgid "Enter a valid duration." msgstr "" @@ -4133,18 +4240,22 @@ msgid "The number of days must be between {min_days} and {max_days}." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:532 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:547 msgid "No file was submitted. Check the encoding type on the form." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:533 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:548 msgid "No file was submitted." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:534 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:549 msgid "The submitted file is empty." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:536 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:551 #, python-format msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." msgid_plural "" @@ -4153,10 +4264,12 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:539 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:554 msgid "Please either submit a file or check the clear checkbox, not both." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:600 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:619 msgid "" "Upload a valid image. The file you uploaded was either not an image or a " "corrupted image." @@ -4165,6 +4278,9 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:762 #: venv/lib/python3.6/site-packages/django/forms/fields.py:852 #: venv/lib/python3.6/site-packages/django/forms/models.py:1270 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:776 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:872 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1265 #, python-format msgid "Select a valid choice. %(value)s is not one of the available choices." msgstr "" @@ -4172,32 +4288,41 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:853 #: venv/lib/python3.6/site-packages/django/forms/fields.py:968 #: venv/lib/python3.6/site-packages/django/forms/models.py:1269 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:873 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:990 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1264 msgid "Enter a list of values." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:969 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:991 msgid "Enter a complete value." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/fields.py:1185 +#: venv2/lib/python2.7/site-packages/django/forms/fields.py:1208 msgid "Enter a valid UUID." msgstr "" #. Translators: This is the default suffix added to form field labels #: venv/lib/python3.6/site-packages/django/forms/forms.py:86 +#: venv2/lib/python2.7/site-packages/django/forms/forms.py:87 msgid ":" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/forms.py:212 +#: venv2/lib/python2.7/site-packages/django/forms/forms.py:213 #, python-format msgid "(Hidden field %(name)s) %(error)s" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/formsets.py:91 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:97 msgid "ManagementForm data is missing or has been tampered with" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/formsets.py:338 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:355 #, python-format msgid "Please submit %d or fewer forms." msgid_plural "Please submit %d or fewer forms." @@ -4205,6 +4330,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/forms/formsets.py:345 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:362 #, python-format msgid "Please submit %d or more forms." msgid_plural "Please submit %d or more forms." @@ -4213,20 +4339,25 @@ msgstr[1] "" #: venv/lib/python3.6/site-packages/django/forms/formsets.py:371 #: venv/lib/python3.6/site-packages/django/forms/formsets.py:373 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:390 +#: venv2/lib/python2.7/site-packages/django/forms/formsets.py:392 msgid "Order" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:751 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:744 #, python-format msgid "Please correct the duplicate data for %(field)s." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:755 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:748 #, python-format msgid "Please correct the duplicate data for %(field)s, which must be unique." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:761 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:754 #, python-format msgid "" "Please correct the duplicate data for %(field_name)s which must be unique " @@ -4234,6 +4365,7 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:770 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:763 msgid "Please correct the duplicate values below." msgstr "" @@ -4242,6 +4374,7 @@ msgid "The inline value did not match the parent instance." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/models.py:1158 +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1154 msgid "Select a valid choice. That choice is not one of the available choices." msgstr "" @@ -4251,6 +4384,7 @@ msgid "\"%(pk)s\" is not a valid value." msgstr "" #: venv/lib/python3.6/site-packages/django/forms/utils.py:162 +#: venv2/lib/python2.7/site-packages/django/forms/utils.py:172 #, python-format msgid "" "%(datetime)s couldn't be interpreted in time zone %(current_timezone)s; it " @@ -4258,23 +4392,29 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/widgets.py:396 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:378 msgid "Currently" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/widgets.py:710 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:704 msgid "Yes" msgstr "" #: venv/lib/python3.6/site-packages/django/forms/widgets.py:711 +#: venv2/lib/python2.7/site-packages/django/forms/widgets.py:705 msgid "No" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:788 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:851 msgid "yes,no,maybe" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:817 #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:834 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:880 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:897 #, python-format msgid "%(size)d byte" msgid_plural "%(size)d bytes" @@ -4282,327 +4422,401 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:836 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:899 #, python-format msgid "%s KB" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:838 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:901 #, python-format msgid "%s MB" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:840 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:903 #, python-format msgid "%s GB" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:842 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:905 #, python-format msgid "%s TB" msgstr "" #: venv/lib/python3.6/site-packages/django/template/defaultfilters.py:844 +#: venv2/lib/python2.7/site-packages/django/template/defaultfilters.py:907 #, python-format msgid "%s PB" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:62 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:66 msgid "p.m." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:63 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:67 msgid "a.m." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:68 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:72 msgid "PM" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:69 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:73 msgid "AM" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:150 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:158 msgid "midnight" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dateformat.py:152 +#: venv2/lib/python2.7/site-packages/django/utils/dateformat.py:160 msgid "noon" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Monday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Tuesday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Wednesday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Thursday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:6 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:6 msgid "Friday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:7 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:7 msgid "Saturday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:7 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:7 msgid "Sunday" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Mon" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Tue" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Wed" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Thu" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:10 msgid "Fri" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:11 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:11 msgid "Sat" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:11 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:11 msgid "Sun" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "January" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "February" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "March" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "April" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "May" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:18 msgid "June" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "July" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "August" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "September" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "October" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:15 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:19 msgid "November" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:16 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:20 msgid "December" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "jan" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "feb" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "mar" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "apr" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "may" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:19 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:23 msgid "jun" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "jul" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "aug" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "sep" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "oct" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "nov" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:20 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:24 msgid "dec" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:23 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:31 msgctxt "abbrev. month" msgid "Jan." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:24 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:32 msgctxt "abbrev. month" msgid "Feb." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:25 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:33 msgctxt "abbrev. month" msgid "March" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:26 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:34 msgctxt "abbrev. month" msgid "April" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:27 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:35 msgctxt "abbrev. month" msgid "May" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:28 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:36 msgctxt "abbrev. month" msgid "June" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:29 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:37 msgctxt "abbrev. month" msgid "July" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:30 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:38 msgctxt "abbrev. month" msgid "Aug." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:31 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:39 msgctxt "abbrev. month" msgid "Sept." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:32 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:40 msgctxt "abbrev. month" msgid "Oct." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:33 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:41 msgctxt "abbrev. month" msgid "Nov." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:34 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:42 msgctxt "abbrev. month" msgid "Dec." msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:37 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:45 msgctxt "alt. month" msgid "January" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:38 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:46 msgctxt "alt. month" msgid "February" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:39 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:47 msgctxt "alt. month" msgid "March" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:40 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:48 msgctxt "alt. month" msgid "April" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:41 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:49 msgctxt "alt. month" msgid "May" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:42 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:50 msgctxt "alt. month" msgid "June" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:43 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:51 msgctxt "alt. month" msgid "July" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:44 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:52 msgctxt "alt. month" msgid "August" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:45 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:53 msgctxt "alt. month" msgid "September" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:46 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:54 msgctxt "alt. month" msgid "October" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:47 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:55 msgctxt "alt. month" msgid "November" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/dates.py:48 +#: venv2/lib/python2.7/site-packages/django/utils/dates.py:56 msgctxt "alt. month" msgid "December" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/ipv6.py:8 +#: venv2/lib/python2.7/site-packages/django/utils/ipv6.py:12 msgid "This is not a valid IPv6 address." msgstr "" @@ -4613,16 +4827,20 @@ msgid "%(truncated_text)s…" msgstr "" #: venv/lib/python3.6/site-packages/django/utils/text.py:233 +#: venv2/lib/python2.7/site-packages/django/utils/text.py:251 msgid "or" msgstr "" #. Translators: This string is used as a separator between list elements #: venv/lib/python3.6/site-packages/django/utils/text.py:252 #: venv/lib/python3.6/site-packages/django/utils/timesince.py:83 +#: venv2/lib/python2.7/site-packages/django/utils/text.py:270 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:71 msgid ", " msgstr "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:9 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:11 #, python-format msgid "%d year" msgid_plural "%d years" @@ -4630,6 +4848,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:10 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:12 #, python-format msgid "%d month" msgid_plural "%d months" @@ -4637,6 +4856,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:11 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:13 #, python-format msgid "%d week" msgid_plural "%d weeks" @@ -4644,6 +4864,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:12 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:14 #, python-format msgid "%d day" msgid_plural "%d days" @@ -4651,6 +4872,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:13 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:15 #, python-format msgid "%d hour" msgid_plural "%d hours" @@ -4658,6 +4880,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:14 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:16 #, python-format msgid "%d minute" msgid_plural "%d minutes" @@ -4665,18 +4888,22 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.6/site-packages/django/utils/timesince.py:72 +#: venv2/lib/python2.7/site-packages/django/utils/timesince.py:60 msgid "0 minutes" msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:110 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:109 msgid "Forbidden" msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:111 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:110 msgid "CSRF verification failed. Request aborted." msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:115 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:114 msgid "" "You are seeing this message because this HTTPS site requires a 'Referer " "header' to be sent by your Web browser, but none was sent. This header is " @@ -4685,6 +4912,7 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:120 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:119 msgid "" "If you have configured your browser to disable 'Referer' headers, please re-" "enable them, at least for this site, or for HTTPS connections, or for 'same-" @@ -4701,6 +4929,7 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:132 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:124 msgid "" "You are seeing this message because this site requires a CSRF cookie when " "submitting forms. This cookie is required for security reasons, to ensure " @@ -4708,44 +4937,56 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:137 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:129 msgid "" "If you have configured your browser to disable cookies, please re-enable " "them, at least for this site, or for 'same-origin' requests." msgstr "" #: venv/lib/python3.6/site-packages/django/views/csrf.py:142 +#: venv2/lib/python2.7/site-packages/django/views/csrf.py:134 msgid "More information is available with DEBUG=True." msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:41 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:48 msgid "No year specified" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:61 #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:111 #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:208 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:72 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:132 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:249 msgid "Date out of range" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:90 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:107 msgid "No month specified" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:142 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:169 msgid "No day specified" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:188 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:225 msgid "No week specified" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:338 #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:367 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:387 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:415 #, python-format msgid "No %(verbose_name_plural)s available" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:589 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:669 #, python-format msgid "" "Future %(verbose_name_plural)s not available because %(class_name)s." @@ -4753,39 +4994,47 @@ msgid "" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/dates.py:623 +#: venv2/lib/python2.7/site-packages/django/views/generic/dates.py:703 #, python-format msgid "Invalid date string '%(datestr)s' given format '%(format)s'" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/detail.py:54 +#: venv2/lib/python2.7/site-packages/django/views/generic/detail.py:55 #, python-format msgid "No %(verbose_name)s found matching the query" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/list.py:67 +#: venv2/lib/python2.7/site-packages/django/views/generic/list.py:77 msgid "Page is not 'last', nor can it be converted to an int." msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/list.py:72 +#: venv2/lib/python2.7/site-packages/django/views/generic/list.py:82 #, python-format msgid "Invalid page (%(page_number)s): %(message)s" msgstr "" #: venv/lib/python3.6/site-packages/django/views/generic/list.py:154 +#: venv2/lib/python2.7/site-packages/django/views/generic/list.py:172 #, python-format msgid "Empty list and '%(class_name)s.allow_empty' is False." msgstr "" #: venv/lib/python3.6/site-packages/django/views/static.py:40 +#: venv2/lib/python2.7/site-packages/django/views/static.py:44 msgid "Directory indexes are not allowed here." msgstr "" #: venv/lib/python3.6/site-packages/django/views/static.py:42 +#: venv2/lib/python2.7/site-packages/django/views/static.py:46 #, python-format msgid "\"%(path)s\" does not exist" msgstr "" #: venv/lib/python3.6/site-packages/django/views/static.py:80 +#: venv2/lib/python2.7/site-packages/django/views/static.py:86 #, python-format msgid "Index of %(directory)s" msgstr "" @@ -4837,3 +5086,273 @@ msgstr "" #: venv/lib/python3.6/site-packages/django/views/templates/default_urlconf.html:408 msgid "Connect, get help, or contribute" msgstr "" + +#: venv/lib/python3.6/site-packages/django_icons/renderers/image.py:217 +msgid "Icon of {}" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:58 +msgid "Please enter your OTP token." +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:59 +#, python-brace-format +msgid "Error generating challenge: {0}" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:60 +msgid "The selected OTP device is not interactive" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:61 +#, python-brace-format +msgid "OTP Challenge: {0}" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:62 +msgid "Invalid token. Please make sure you have entered it correctly." +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:64 +#, python-format +msgid "" +"Verification temporarily disabled because of %(failure_count)d failed " +"attempt, please try again soon." +msgid_plural "" +"Verification temporarily disabled because of %(failure_count)d failed " +"attempts, please try again soon." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: venv/lib/python3.6/site-packages/django_otp/forms.py:67 +msgid "Verification of the token is currently disabled" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:36 +msgid "Please correct the error below." +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:36 +msgid "Please correct the errors below." +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:52 +#, python-format +msgid "" +"You are authenticated as %(username)s, but are not authorized to access this " +"page. Would you like to login to a different account?" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:72 +msgid "OTP Device:" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:77 +msgid "OTP Token:" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:82 +msgid "Forgotten your password or username?" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:86 +msgid "Log in" +msgstr "" + +#: venv/lib/python3.6/site-packages/django_otp/templates/otp/admin111/login.html:88 +msgid "Get OTP Challenge" +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1093 +msgid "The inline foreign key did not match the parent instance primary key." +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/forms/models.py:1267 +#, python-format +msgid "\"%(pk)s\" is not a valid value for a primary key." +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/utils/text.py:81 +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s..." +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:520 +msgid "Welcome to Django" +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:521 +msgid "It worked!" +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:522 +msgid "Congratulations on your first Django-powered page." +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:524 +msgid "" +"Next, start your first app by running python manage.py startapp " +"[app_label]." +msgstr "" + +#: venv2/lib/python2.7/site-packages/django/views/debug.py:527 +msgid "" +"You're seeing this message because you have DEBUG = True in " +"your Django settings file and you haven't configured any URLs. Get to work!" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:313 +msgid "usage: " +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:821 +msgid ".__call__() not defined" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1105 +#, python-format +msgid "unknown parser %r (choices: %s)" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1146 +#, python-format +msgid "argument \"-\" with mode %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1349 +#, python-format +msgid "cannot merge actions - two groups are named %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1387 +msgid "'required' is an invalid argument for positionals" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1407 +#, python-format +msgid "invalid option string %r: must start with a character %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1428 +#, python-format +msgid "dest= is required for options like %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1445 +#, python-format +msgid "invalid conflict_resolution value: %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1463 +#, python-format +msgid "conflicting option string(s): %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1526 +msgid "mutually exclusive arguments must be optional" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1596 +msgid "positional arguments" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1597 +msgid "optional arguments" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1615 +msgid "show this help message and exit" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1621 +msgid "show program's version number and exit" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1653 +msgid "cannot have multiple subparser arguments" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1705 +#, python-format +msgid "unrecognized arguments: %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1802 +#, python-format +msgid "not allowed with argument %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1848 +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1862 +#, python-format +msgid "ignored explicit argument %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1952 +msgid "too few arguments" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1959 +#, python-format +msgid "argument %s is required" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:1973 +#, python-format +msgid "one of the arguments %s is required" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2019 +msgid "expected one argument" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2020 +msgid "expected at most one argument" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2021 +msgid "expected at least one argument" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2023 +#, python-format +msgid "expected %s argument(s)" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2080 +#, python-format +msgid "ambiguous option: %s could match %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2142 +#, python-format +msgid "unexpected option string: %s" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2243 +#, python-format +msgid "%r is not callable" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2259 +#, python-format +msgid "invalid %s value: %r" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2269 +#, python-format +msgid "invalid choice: %r (choose from %s)" +msgstr "" + +#: venv2/lib/python2.7/site-packages/gunicorn/argparse_compat.py:2362 +#, python-format +msgid "%s: error: %s\n" +msgstr "" + +#: webvirtcloud/middleware.py:21 +#, python-format +msgid "libvirt Error - %(exception)s" +msgstr "" diff --git a/networks/forms.py b/networks/forms.py index 5fe0cee..82d71a0 100644 --- a/networks/forms.py +++ b/networks/forms.py @@ -46,7 +46,7 @@ class AddNetPool(forms.Form): def clean_bridge_name(self): bridge_name = self.cleaned_data['bridge_name'] - if self.cleaned_data['forward'] == 'bridge': + if self.cleaned_data['forward'] in ['bridge', 'macvtap']: have_symbol = re.match('^[a-zA-Z0-9\.\_\:\-]+$', bridge_name) if not have_symbol: raise forms.ValidationError(_('The pool bridge name must not contain any special characters')) diff --git a/networks/templates/create_net_block.html b/networks/templates/create_net_block.html index a40eeba..c317084 100644 --- a/networks/templates/create_net_block.html +++ b/networks/templates/create_net_block.html @@ -28,6 +28,7 @@ + @@ -55,25 +56,25 @@ -
+
-
+
- +
- +
-
+
@@ -88,4 +89,5 @@
-{% endif %} \ No newline at end of file +{% endif %} + diff --git a/networks/templates/network.html b/networks/templates/network.html index 415a483..5deea60 100644 --- a/networks/templates/network.html +++ b/networks/templates/network.html @@ -37,7 +37,6 @@ {% include 'errors_block.html' %} - {% include 'messages_block.html' %}
diff --git a/networks/templates/networks.html b/networks/templates/networks.html index 98ace57..30a05ac 100644 --- a/networks/templates/networks.html +++ b/networks/templates/networks.html @@ -79,6 +79,12 @@ if ($(this).val() == 'bridge') { $('.bridge_name_form_group').show(); $('.bridge_name_form_group_dhcp').hide(); + } else if ($(this).val() == 'macvtap') { + $('#bridge_label').text("Dev Name"); + $('#bridge_name').attr("placeholder", "eth0"); + $('.bridge_name_form_group').show(); + $('.bridge_name_form_group_dhcp').hide(); + $('.openvswitch').hide(); } else { $('.bridge_name_form_group').hide(); $('.bridge_name_form_group_dhcp').show(); diff --git a/networks/views.py b/networks/views.py index b1c85b8..9072636 100644 --- a/networks/views.py +++ b/networks/views.py @@ -42,8 +42,8 @@ def networks(request, compute_id): if data['name'] in networks: msg = _("Network pool name already in use") error_messages.append(msg) - if data['forward'] == 'bridge' and data['bridge_name'] == '': - error_messages.append(_('Please enter bridge name')) + if data['forward'] in ['bridge', 'macvtap'] and data['bridge_name'] == '': + error_messages.append(_('Please enter bridge/dev name')) if data['subnet']: ipv4 = True gateway4, netmask4, dhcp4 = network_size(data['subnet'], data['dhcp4']) diff --git a/vrtManager/connection.py b/vrtManager/connection.py index 3b79a71..4ac9f4f 100644 --- a/vrtManager/connection.py +++ b/vrtManager/connection.py @@ -841,7 +841,7 @@ class wvmConnect(object): def get_info(doc): mem = util.get_xpath(doc, "/domain/currentMemory") - mem = int(mem) / 1024 + mem = int(mem) // 1024 if raw_mem_size: mem = int(mem) * (1024 * 1024) cur_vcpu = util.get_xpath(doc, "/domain/vcpu/@current") @@ -875,7 +875,7 @@ class wvmConnect(object): def get_info(ctx): mem = util.get_xpath(ctx, "/domain/currentMemory") - mem = int(mem) / 1024 + mem = int(mem) // 1024 cur_vcpu = util.get_xpath(ctx, "/domain/vcpu/@current") if cur_vcpu: vcpu = cur_vcpu diff --git a/vrtManager/instance.py b/vrtManager/instance.py index fdee94d..149ca0f 100644 --- a/vrtManager/instance.py +++ b/vrtManager/instance.py @@ -32,7 +32,7 @@ class wvmInstances(wvmConnect): def get_instance_memory(self, name): inst = self.get_instance(name) mem = util.get_xml_path(inst.XMLDesc(0), "/domain/currentMemory") - return int(mem) / 1024 + return int(mem) // 1024 def get_instance_vcpu(self, name): inst = self.get_instance(name) @@ -242,11 +242,11 @@ class wvmInstance(wvmConnect): def get_memory(self): mem = util.get_xml_path(self._XMLDesc(0), "/domain/memory") - return int(mem) / 1024 + return int(mem) // 1024 def get_cur_memory(self): mem = util.get_xml_path(self._XMLDesc(0), "/domain/currentMemory") - return int(mem) / 1024 + return int(mem) // 1024 def get_title(self): title = util.get_xml_path(self._XMLDesc(0), "/domain/title") @@ -345,6 +345,7 @@ class wvmInstance(wvmConnect): result = [] inbound = outbound = [] for net in ctx.xpath('/domain/devices/interface'): + interface_type = net.xpath('@type')[0] mac_inst = net.xpath('mac/@address')[0] nic_inst = net.xpath('source/@network|source/@bridge|source/@dev')[0] target_inst = '' if not net.xpath('target/@dev') else net.xpath('target/@dev')[0] @@ -369,6 +370,7 @@ class wvmInstance(wvmConnect): except libvirtError: ipv4, ipv6 = None, None result.append({ + 'type': interface_type, 'mac': mac_inst, 'nic': nic_inst, 'target': target_inst, @@ -993,7 +995,7 @@ class wvmInstance(wvmConnect): except SyntaxError: # Little fix for old version ElementTree graphic = root.find("devices/graphics") - if keymap: + if keymap != 'auto': graphic.set('keymap', keymap) else: try: @@ -1289,24 +1291,39 @@ class wvmInstance(wvmConnect): bridge_name = iface.name() else: net = self.get_network(source) - bridge_name = net.bridgeName() + try: + bridge_name = net.bridgeName() + except libvirtError: + bridge_name = None return bridge_name def add_network(self, mac_address, source, source_type='net', model='virtio', nwfilter=None): - bridge_name = self.get_bridge_name(source, source_type) + forward_mode = '' + if source_type != 'iface': + forward_mode = self.get_network_forward(source) - forward_mode = self.get_network_forward(source) if forward_mode in ['nat', 'isolated', 'routed']: interface_type = 'network' + elif forward_mode == '': + interface_type = 'direct' else: - interface_type = 'bridge' + if self.get_bridge_name(source, source_type) is None: + interface_type = 'network' + else: + interface_type = 'bridge' xml_iface = f""" """ if interface_type == 'network': xml_iface += f"""""" + elif interface_type == 'direct': + if source_type == 'net': + xml_iface += f"""""" + else: + xml_iface += f"""""" else: + bridge_name = self.get_bridge_name(source, source_type) xml_iface += f"""""" xml_iface += f"""""" if nwfilter: @@ -1342,49 +1359,38 @@ class wvmInstance(wvmConnect): net_source_type = network_data.get('net-source-' + str(num) + '-type') net_filter = network_data.get('net-nwfilter-' + str(num)) net_model = network_data.get('net-model-' + str(num)) - bridge_name = self.get_bridge_name(net_source, net_source_type) + + source = interface.find('source') if interface.get('type') == 'bridge': - source = interface.find('mac') - source.set('address', net_mac) - source = interface.find('source') + bridge_name = self.get_bridge_name(net_source, net_source_type) source.set('bridge', bridge_name) - - source = interface.find('model') - if net_model != 'default': - source.attrib['type'] = net_model + elif interface.get('type') in ['network', 'direct']: + if net_source_type == 'net': + source.set('network', net_source) + elif net_source_type == 'iface': + source.set('dev', net_source) else: - interface.remove(source) + raise libvirtError(f"Unknown network type: {net_source_type}") + else: + raise libvirtError(f"Unknown network type: {interface.get('type')}") - source = interface.find('filterref') - if net_filter: - if source is not None: source.set('filter', net_filter) - else: - element = ElementTree.Element("filterref") - element.attrib['filter'] = net_filter - interface.append(element) - else: - if source is not None: interface.remove(source) - elif interface.get('type') == 'network': - source = interface.find('mac') - source.set('address', net_mac) - source = interface.find('source') - source.set('network', net_source) + source = interface.find('model') + if net_model != 'default': + source.attrib['type'] = net_model + else: + interface.remove(source) - source = interface.find('model') - if net_model != 'default': - source.attrib['type'] = net_model + source = interface.find('mac') + source.set('address', net_mac) + source = interface.find('filterref') + if net_filter: + if source is not None: source.set('filter', net_filter) else: - interface.remove(source) - - source = interface.find('filterref') - if net_filter: - if source is not None: source.set('filter', net_filter) - else: - element = ElementTree.Element("filterref") - element.attrib['filter'] = net_filter - interface.append(element) - else: - if source is not None: interface.remove(source) + element = ElementTree.Element("filterref") + element.attrib['filter'] = net_filter + interface.append(element) + else: + if source is not None: interface.remove(source) new_xml = ElementTree.tostring(tree).decode() self._defineXML(new_xml) diff --git a/vrtManager/network.py b/vrtManager/network.py index d42f864..dec2362 100644 --- a/vrtManager/network.py +++ b/vrtManager/network.py @@ -1,4 +1,5 @@ from lxml import etree +from libvirt import libvirtError from libvirt import VIR_NETWORK_SECTION_IP_DHCP_HOST from libvirt import VIR_NETWORK_UPDATE_COMMAND_ADD_LAST, VIR_NETWORK_UPDATE_COMMAND_DELETE, VIR_NETWORK_UPDATE_COMMAND_MODIFY from libvirt import VIR_NETWORK_UPDATE_AFFECT_LIVE, VIR_NETWORK_UPDATE_AFFECT_CONFIG @@ -32,7 +33,11 @@ class wvmNetworks(wvmConnect): for network in get_networks: net = self.get_network(network) net_status = net.isActive() - net_bridge = net.bridgeName() + try: + net_bridge = net.bridgeName() + except libvirtError: + net_bridge = util.get_xml_path(net.XMLDesc(0), "/network/forward/interface/@dev") + net_forward = util.get_xml_path(net.XMLDesc(0), "/network/forward/@mode") networks.append({'name': network, 'status': net_status, 'device': net_bridge, 'forward': net_forward}) @@ -50,15 +55,20 @@ class wvmNetworks(wvmConnect): {name}""" if forward in ['nat', 'route', 'bridge']: xml += f"""""" - xml += """""" - if openvswitch is True: - xml += """""" - if forward != 'bridge': + if forward == 'macvtap': + xml += f""" + + """ + else: + xml += """""" + if openvswitch is True: + xml += """""" + if forward not in ['bridge', 'macvtap']: if ipv4: xml += f"""""" if dhcp4: @@ -114,7 +124,7 @@ class wvmNetwork(wvmConnect): try: return self.net.bridgeName() except: - return None + return util.get_xml_path(self._XMLDesc(0), "/network/forward/interface/@dev") def start(self): self.net.create() diff --git a/webvirtcloud/urls.py b/webvirtcloud/urls.py index a2e14a8..52b6b88 100644 --- a/webvirtcloud/urls.py +++ b/webvirtcloud/urls.py @@ -19,8 +19,11 @@ urlpatterns = [ ] if settings.DEBUG: - import debug_toolbar + try: + import debug_toolbar - urlpatterns += [ - path('__debug__/', include(debug_toolbar.urls)), - ] + urlpatterns += [ + path('__debug__/', include(debug_toolbar.urls)), + ] + except: + pass
{% trans "Name" %}{% trans "Status" %}{% trans "Details" %}{% trans "Actions" %}
{% trans "Name" %}{% trans "Status" %}{% trans "Details" %}{% trans "Actions" %}
+
{{ compute.name }} + {% if compute.status is True %}{% trans "Connected" %}{% else %}{% trans "Not Connected" %}{% endif %} + {{ compute.details|default:"" }} +
{% if compute.status is True %} {% icon 'eye' %} diff --git a/console/templates/console-spice-full.html b/console/templates/console-spice-full.html index 29e52f9..da7dae1 100644 --- a/console/templates/console-spice-full.html +++ b/console/templates/console-spice-full.html @@ -160,6 +160,11 @@ SpiceHtml5.sendCtrlAltFN(sc, f); return false; } + + function sendCtrlAltDel() { + SpiceHtml5.sendCtrlAltDel(sc); + return false; + } /* SPICE port event listeners window.addEventListener('spice-port-data', function(event) { // Here we convert data to text, but really we can obtain binary data also diff --git a/console/templates/console-spice-lite.html b/console/templates/console-spice-lite.html index 8a359b7..a984063 100644 --- a/console/templates/console-spice-lite.html +++ b/console/templates/console-spice-lite.html @@ -186,6 +186,11 @@ return false; } + function sendCtrlAltDel() { + SpiceHtml5.sendCtrlAltDel(sc); + return false; + } + /* SPICE port event listeners window.addEventListener('spice-port-data', function(event) { // Here we convert data to text, but really we can obtain binary data also @@ -198,7 +203,7 @@ }); */ document.getElementById("fullscreen_button").addEventListener('click', fullscreen); - document.getElementById('ctrlaltdel').addEventListener('click', function () { sendCtrlAltDel(sc); }); + document.getElementById('ctrlaltdel').addEventListener('click', function () { sendCtrlAltDel(); }); document.getElementById('ctrlaltf1').addEventListener('click', function () { sendctrlaltfn(0) }); document.getElementById('ctrlaltf2').addEventListener('click', function () { sendctrlaltfn(1) }); document.getElementById('ctrlaltf3').addEventListener('click', function () { sendctrlaltfn(2) }); diff --git a/doc/images/grouped.PNG b/doc/images/grouped.PNG index 261b7dd..b6140c9 100644 Binary files a/doc/images/grouped.PNG and b/doc/images/grouped.PNG differ diff --git a/doc/images/hosts.PNG b/doc/images/hosts.PNG index 36fdbc1..f589802 100644 Binary files a/doc/images/hosts.PNG and b/doc/images/hosts.PNG differ diff --git a/doc/images/instance.PNG b/doc/images/instance.PNG index 2bd4382..3c3f1af 100644 Binary files a/doc/images/instance.PNG and b/doc/images/instance.PNG differ diff --git a/doc/images/log.PNG b/doc/images/log.PNG index 2302d15..a29cffe 100644 Binary files a/doc/images/log.PNG and b/doc/images/log.PNG differ diff --git a/doc/images/nongrouped.PNG b/doc/images/nongrouped.PNG index 96353cf..eb3d573 100644 Binary files a/doc/images/nongrouped.PNG and b/doc/images/nongrouped.PNG differ diff --git a/instances/templates/instances/destroy_tab.html b/instances/templates/instances/destroy_tab.html index 5549590..91397b3 100644 --- a/instances/templates/instances/destroy_tab.html +++ b/instances/templates/instances/destroy_tab.html @@ -12,6 +12,7 @@
+

{% trans 'This action starts remove instance process' %}

{% if request.user.is_superuser or userinstance.is_delete %} {% if instance.status == 3 %} {% trans "Destroy" %} diff --git a/instances/templates/instances/settings_tab.html b/instances/templates/instances/settings_tab.html index b31be04..62d6c5a 100644 --- a/instances/templates/instances/settings_tab.html +++ b/instances/templates/instances/settings_tab.html @@ -353,6 +353,7 @@ {% trans 'active' %} + {{ network.type }}
{% trans 'MAC' %}
+ {% if network.type == 'direct' %} + {% trans 'In most configurations, macvtap does not work for host to guest network communication' %} + {% endif %} +