From c9a6c9e20ad9c67afecea7c08695de821527fd82 Mon Sep 17 00:00:00 2001 From: syuilo Date: Sun, 24 Feb 2019 03:54:04 +0900 Subject: [PATCH] =?UTF-8?q?=E3=83=86=E3=82=AD=E3=82=B9=E3=83=88=E3=82=92?= =?UTF-8?q?=E3=81=BE=E3=81=A8=E3=82=81=E3=81=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- locales/ja-JP.yml | 4 +--- src/client/app/mobile/views/components/drive.vue | 6 +++--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml index 1cbca8f40..859930edb 100644 --- a/locales/ja-JP.yml +++ b/locales/ja-JP.yml @@ -1562,9 +1562,7 @@ mobile/views/components/drive.vue: prompt: "何をしますか?(数字を入力してください): <1 → ファイルをアップロード | 2 → ファイルをURLでアップロード | 3 → フォルダ作成 | 4 → このフォルダ名を変更 | 5 → このフォルダを移動 | 6 → このフォルダを削除>" deletion-alert: "ごめんなさい!フォルダの削除は未実装です...。" folder-name: "フォルダー名" - root-rename-alert: "現在いる場所はルートで、フォルダではないため名前の変更はできません。名前を変更したいフォルダに移動してからやってください。" - root-move-alert: "現在いる場所はルートで、フォルダではないため移動はできません。移動したいフォルダに移動してからやってください。" - root-delete-alert: "現在いる場所はルートで、フォルダではないため削除はできません。削除したいフォルダに移動してからやってください。" + here-is-root: "現在いる場所はルートで、フォルダではありません。" url-prompt: "アップロードしたいファイルのURL" uploading: "アップロードをリクエストしました。アップロードが完了するまで時間がかかる場合があります。" diff --git a/src/client/app/mobile/views/components/drive.vue b/src/client/app/mobile/views/components/drive.vue index d3bd23df6..477233386 100644 --- a/src/client/app/mobile/views/components/drive.vue +++ b/src/client/app/mobile/views/components/drive.vue @@ -423,7 +423,7 @@ export default Vue.extend({ if (this.folder == null) { this.$root.dialog({ type: 'error', - text: this.$t('root-rename-alert') + text: this.$t('here-is-root') }); return; } @@ -441,7 +441,7 @@ export default Vue.extend({ if (this.folder == null) { this.$root.dialog({ type: 'error', - text: this.$t('root-move-alert') + text: this.$t('here-is-root') }); return; } @@ -478,7 +478,7 @@ export default Vue.extend({ if (this.folder == null) { this.$root.dialog({ type: 'error', - text: this.$t('root-delete-alert') + text: this.$t('here-is-root') }); return; }