Commit 51bc062f authored by Thomas Randolph's avatar Thomas Randolph

Move all translations to the constants file

parent b71c8dbf
...@@ -3,13 +3,14 @@ import { mapActions, mapGetters, mapState } from 'vuex'; ...@@ -3,13 +3,14 @@ import { mapActions, mapGetters, mapState } from 'vuex';
import { escape } from 'lodash'; import { escape } from 'lodash';
import { GlButton, GlLoadingIcon, GlSafeHtmlDirective as SafeHtml } from '@gitlab/ui'; import { GlButton, GlLoadingIcon, GlSafeHtmlDirective as SafeHtml } from '@gitlab/ui';
import glFeatureFlagsMixin from '~/vue_shared/mixins/gl_feature_flags_mixin'; import glFeatureFlagsMixin from '~/vue_shared/mixins/gl_feature_flags_mixin';
import { __, sprintf } from '~/locale'; import { sprintf } from '~/locale';
import { deprecatedCreateFlash as createFlash } from '~/flash'; import { deprecatedCreateFlash as createFlash } from '~/flash';
import { hasDiff } from '~/helpers/diffs_helper'; import { hasDiff } from '~/helpers/diffs_helper';
import eventHub from '../../notes/event_hub'; import eventHub from '../../notes/event_hub';
import DiffFileHeader from './diff_file_header.vue'; import DiffFileHeader from './diff_file_header.vue';
import DiffContent from './diff_content.vue'; import DiffContent from './diff_content.vue';
import { diffViewerErrors } from '~/ide/constants'; import { diffViewerErrors } from '~/ide/constants';
import { GENERIC_ERROR, DIFF_FILE } from '../i18n';
export default { export default {
components: { components: {
...@@ -22,6 +23,10 @@ export default { ...@@ -22,6 +23,10 @@ export default {
SafeHtml, SafeHtml,
}, },
mixins: [glFeatureFlagsMixin()], mixins: [glFeatureFlagsMixin()],
i18n: {
genericError: GENERIC_ERROR,
...DIFF_FILE,
},
props: { props: {
file: { file: {
type: Object, type: Object,
...@@ -54,7 +59,7 @@ export default { ...@@ -54,7 +59,7 @@ export default {
...mapGetters('diffs', ['getDiffFileDiscussions']), ...mapGetters('diffs', ['getDiffFileDiscussions']),
viewBlobLink() { viewBlobLink() {
return sprintf( return sprintf(
__('You can %{linkStart}view the blob%{linkEnd} instead.'), this.$options.i18n.blobView,
{ {
linkStart: `<a href="${escape(this.file.view_path)}">`, linkStart: `<a href="${escape(this.file.view_path)}">`,
linkEnd: '</a>', linkEnd: '</a>',
...@@ -76,9 +81,7 @@ export default { ...@@ -76,9 +81,7 @@ export default {
}, },
forkMessage() { forkMessage() {
return sprintf( return sprintf(
__( this.$options.i18n.editInFork,
"You're not allowed to %{tag_start}edit%{tag_end} files in this project directly. Please fork this project, make your changes there, and submit a merge request.",
),
{ {
tag_start: '<span class="js-file-fork-suggestion-section-action">', tag_start: '<span class="js-file-fork-suggestion-section-action">',
tag_end: '</span>', tag_end: '</span>',
...@@ -149,7 +152,7 @@ export default { ...@@ -149,7 +152,7 @@ export default {
}) })
.catch(() => { .catch(() => {
this.isLoadingCollapsedDiff = false; this.isLoadingCollapsedDiff = false;
createFlash(__('Something went wrong on our end. Please try again!')); createFlash(this.$options.i18n.genericError);
}); });
}, },
showForkMessage() { showForkMessage() {
...@@ -189,14 +192,14 @@ export default { ...@@ -189,14 +192,14 @@ export default {
<a <a
:href="file.fork_path" :href="file.fork_path"
class="js-fork-suggestion-button btn btn-grouped btn-inverted btn-success" class="js-fork-suggestion-button btn btn-grouped btn-inverted btn-success"
>{{ __('Fork') }}</a >{{ $options.i18n.fork }}</a
> >
<button <button
class="js-cancel-fork-suggestion-button btn btn-grouped" class="js-cancel-fork-suggestion-button btn btn-grouped"
type="button" type="button"
@click="hideForkMessage" @click="hideForkMessage"
> >
{{ __('Cancel') }} {{ $options.i18n.cancel }}
</button> </button>
</div> </div>
<gl-loading-icon v-if="showLoadingIcon" class="diff-content loading" /> <gl-loading-icon v-if="showLoadingIcon" class="diff-content loading" />
...@@ -208,14 +211,14 @@ export default { ...@@ -208,14 +211,14 @@ export default {
<template v-else> <template v-else>
<div v-show="isCollapsed" class="gl-p-7 gl-text-center collapsed-file-warning"> <div v-show="isCollapsed" class="gl-p-7 gl-text-center collapsed-file-warning">
<p class="gl-mb-8 gl-mt-5"> <p class="gl-mb-8 gl-mt-5">
{{ __('This file is collapsed.') }} {{ $options.i18n.collapsed }}
</p> </p>
<gl-button <gl-button
class="gl-alert-action gl-mb-5" class="gl-alert-action gl-mb-5"
data-testid="expandButton" data-testid="expandButton"
@click="handleToggle" @click="handleToggle"
> >
{{ __('Expand file') }} {{ $options.i18n.expand }}
</gl-button> </gl-button>
</div> </div>
<diff-content <diff-content
......
import { __ } from '~/locale';
export const GENERIC_ERROR = __('Something went wrong on our end. Please try again!');
export const DIFF_FILE = {
blobView: __('You can %{linkStart}view the blob%{linkEnd} instead.'),
editInFork: __(
"You're not allowed to %{tag_start}edit%{tag_end} files in this project directly. Please fork this project, make your changes there, and submit a merge request.",
),
fork: __('Fork'),
cancel: __('Cancel'),
collapsed: __('This file is collapsed.'),
expand: __('Expand file'),
};
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