Commit 0da58854 authored by Ezekiel Kigbo's avatar Ezekiel Kigbo

Vue-i18n: app/assets/javascripts/pages directory

i18n linting for .vue files under the
app/assets/javascripts/pages directory
parent 58f3a561
<script>
import { __ } from '~/locale';
import projectFeatureToggle from '../../../../../vue_shared/components/toggle_button.vue';
export default {
......@@ -43,7 +44,7 @@ export default {
if (this.featureEnabled) {
return this.options;
}
return [[0, 'Enable feature to choose access level']];
return [[0, __('Enable feature to choose access level')]];
},
displaySelectInput() {
......
<script>
import settingsMixin from 'ee_else_ce/pages/projects/shared/permissions/mixins/settings_pannel_mixin';
import { __ } from '~/locale';
import projectFeatureSetting from './project_feature_setting.vue';
import projectFeatureToggle from '~/vue_shared/components/toggle_button.vue';
import projectSettingRow from './project_setting_row.vue';
......@@ -102,9 +103,9 @@ export default {
computed: {
featureAccessLevelOptions() {
const options = [[10, 'Only Project Members']];
const options = [[10, __('Only Project Members')]];
if (this.visibilityLevel !== visibilityOptions.PRIVATE) {
options.push([20, 'Everyone With Access']);
options.push([20, __('Everyone With Access')]);
}
return options;
},
......@@ -117,7 +118,7 @@ export default {
pagesFeatureAccessLevelOptions() {
if (this.visibilityLevel !== visibilityOptions.PUBLIC) {
return this.featureAccessLevelOptions.concat([[30, 'Everyone']]);
return this.featureAccessLevelOptions.concat([[30, __('Everyone')]]);
}
return this.featureAccessLevelOptions;
},
......@@ -200,17 +201,17 @@ export default {
<option
:value="visibilityOptions.PRIVATE"
:disabled="!visibilityAllowed(visibilityOptions.PRIVATE)"
>Private</option
>{{ __('Private') }}</option
>
<option
:value="visibilityOptions.INTERNAL"
:disabled="!visibilityAllowed(visibilityOptions.INTERNAL)"
>Internal</option
>{{ __('Internal') }}</option
>
<option
:value="visibilityOptions.PUBLIC"
:disabled="!visibilityAllowed(visibilityOptions.PUBLIC)"
>Public</option
>{{ __('Public') }}</option
>
</select>
<i aria-hidden="true" data-hidden="true" class="fa fa-chevron-down"></i>
......
......@@ -3917,6 +3917,9 @@ msgstr ""
msgid "Enable error tracking"
msgstr ""
msgid "Enable feature to choose access level"
msgstr ""
msgid "Enable for this project"
msgstr ""
......@@ -4304,6 +4307,9 @@ msgstr ""
msgid "Everyone"
msgstr ""
msgid "Everyone With Access"
msgstr ""
msgid "Everyone can contribute"
msgstr ""
......@@ -6977,6 +6983,9 @@ msgstr ""
msgid "One or more of your Google Code projects cannot be imported into GitLab directly because they use Subversion or Mercurial for version control, rather than Git."
msgstr ""
msgid "Only Project Members"
msgstr ""
msgid "Only admins"
msgstr ""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment