From cada1d7cb6513a550e5729ac75a7a839416d196d Mon Sep 17 00:00:00 2001 From: Ezekiel Kigbo Date: Tue, 2 Jul 2019 05:11:47 +0000 Subject: [PATCH] Vue-i18n: app/assets/javascripts/clusters/ directory i18n linting for .vue files under the app/assets/javascripts/clusters/ directory --- .../clusters/components/application_row.vue | 4 +--- .../clusters/components/knative_domain_editor.vue | 10 +++++----- .../components/uninstall_application_button.vue | 3 ++- locale/gitlab.pot | 12 ++++++++++++ 4 files changed, 20 insertions(+), 9 deletions(-) diff --git a/app/assets/javascripts/clusters/components/application_row.vue b/app/assets/javascripts/clusters/components/application_row.vue index 4771090aa7e..cd2121db3b2 100644 --- a/app/assets/javascripts/clusters/components/application_row.vue +++ b/app/assets/javascripts/clusters/components/application_row.vue @@ -207,7 +207,7 @@ export default { return __('Updating'); } - return __('Updated'); + return this.updateSuccessful ? __('Updated to') : __('Updated'); }, updateFailureDescription() { return s__('ClusterIntegration|Update failed. Please check the logs and try again.'); @@ -331,8 +331,6 @@ export default { class="form-text text-muted label p-0 js-cluster-application-update-details" > {{ versionLabel }} - to - - {{ __('More information') }} - + {{ + __('More information') + }}

import LoadingButton from '~/vue_shared/components/loading_button.vue'; import { APPLICATION_STATUS } from '~/clusters/constants'; +import { __ } from '~/locale'; const { UPDATING, UNINSTALLING } = APPLICATION_STATUS; @@ -22,7 +23,7 @@ export default { return this.status === UNINSTALLING; }, label() { - return this.loading ? this.__('Uninstalling') : this.__('Uninstall'); + return this.loading ? __('Uninstalling') : __('Uninstall'); }, }, }; diff --git a/locale/gitlab.pot b/locale/gitlab.pot index f4cad04a70a..c57a974fe11 100644 --- a/locale/gitlab.pot +++ b/locale/gitlab.pot @@ -8979,6 +8979,9 @@ msgstr "" msgid "Save variables" msgstr "" +msgid "Saving" +msgstr "" + msgid "Saving project." msgstr "" @@ -11267,6 +11270,12 @@ msgstr "" msgid "Unfortunately, your email message to GitLab could not be processed." msgstr "" +msgid "Uninstall" +msgstr "" + +msgid "Uninstalling" +msgstr "" + msgid "Unknown encryption strategy: %{encrypted_strategy}!" msgstr "" @@ -11372,6 +11381,9 @@ msgstr "" msgid "Updated" msgstr "" +msgid "Updated to" +msgstr "" + msgid "Updating" msgstr ""