From 4fd47353c3bafaf1d444a35e0338ec5bd85cb77f Mon Sep 17 00:00:00 2001 From: Evgenii Kolosov <108291208+Ljutyj@users.noreply.github.com> Date: Thu, 5 Dec 2024 15:33:23 +0300 Subject: [PATCH] VCST-2406: Fixed the tool-tip and localization key (#2865) --- .../Localizations/de.VirtoCommerce.Platform.json | 8 ++++---- .../Localizations/en.VirtoCommerce.Platform.json | 8 ++++---- .../Localizations/es.VirtoCommerce.Platform.json | 8 ++++---- .../Localizations/fr.VirtoCommerce.Platform.json | 8 ++++---- .../Localizations/it.VirtoCommerce.Platform.json | 8 ++++---- .../Localizations/ja.VirtoCommerce.Platform.json | 8 ++++---- .../Localizations/pl.VirtoCommerce.Platform.json | 8 ++++---- .../Localizations/pt.VirtoCommerce.Platform.json | 10 +++++----- .../Localizations/ru.VirtoCommerce.Platform.json | 8 ++++---- .../Localizations/zh.VirtoCommerce.Platform.json | 8 ++++---- .../wwwroot/js/app/settings/settings.js | 12 ++++++------ 11 files changed, 47 insertions(+), 47 deletions(-) diff --git a/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/de.VirtoCommerce.Platform.json b/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/de.VirtoCommerce.Platform.json index fe5f8d3579..472fe9a972 100644 --- a/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/de.VirtoCommerce.Platform.json +++ b/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/de.VirtoCommerce.Platform.json @@ -880,16 +880,16 @@ "create-folder": { "title": "Ein Ordnername muss den folgenden Benennungsregeln entsprechen:\n Der Ordnername muss zwischen 3 und 63 Zeichen lang sein.\n Der Ordnername muss mit einem Buchstaben oder einer Zahl beginnen und darf nur Buchstaben, Zahlen und Bindestriche (-) enthalten.\n Jeder Bindestrich (-) muss unmittelbar vor und nach einem Buchstaben oder einer Zahl stehen; aufeinanderfolgende Bindestriche sind nicht erlaubt.\n Alle Buchstaben in einem Ordnernamen müssen klein geschrieben sein" }, - "storefront-cache-reset": { + "cache-reset": { "title": "Cache zurücksetzen", "confirm-reset-message": "Sind Sie sicher, dass Sie den Cache zurücksetzen möchten? Diese Aktion löscht alle zwischengespeicherten Daten und kann die Systemleistung vorübergehend beeinträchtigen. Bestätigen Sie, um fortzufahren", - "reset-successfully-message": "Der Cache der Frontend-Anwendung wurde erfolgreich zurückgesetzt" + "reset-successfully-message": "Der Cache wurde erfolgreich zurückgesetzt" } }, "commands": { "login-on-behalf": "Im Namen von anmelden", - "reset-storefront-cache": { - "title": "Frontend-Anwendungs-Cache zurücksetzen", + "cache-reset": { + "title": "Cache zurücksetzen", "name": "Cache zurücksetzen" }, "restart-application-title": "Anwendung neu starten" diff --git a/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/en.VirtoCommerce.Platform.json b/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/en.VirtoCommerce.Platform.json index 6e451598b3..63f7e6d40e 100644 --- a/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/en.VirtoCommerce.Platform.json +++ b/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/en.VirtoCommerce.Platform.json @@ -879,16 +879,16 @@ "create-folder": { "title": "A folder name must conform to the following naming rules:\n Folder name must be between 3 and 63 characters long.\n Folder name must start with a letter or number, and can only contain letters, numbers, and hyphen (-).\n Each hyphen (-) must be immediately preceded and followed by a letter or number; consecutive hyphens are not permitted.\n All letters in a folder name must be lower case" }, - "storefront-cache-reset": { + "cache-reset": { "title": "Cache reset", "confirm-reset-message": "Are you sure you want to reset the cache? This action will clear all cached data and may temporarily affect system performance. Confirm to proceed", - "reset-successfully-message": "Frontend Application cache has been reset successfully" + "reset-successfully-message": "Cache has been reset successfully" } }, "commands": { "login-on-behalf": "Login on behalf", - "reset-storefront-cache": { - "title": "Reset Frontend Application cache", + "cache-reset": { + "title": "Reset cache", "name": "Reset cache" }, "restart-application-title": "Restart application" diff --git a/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/es.VirtoCommerce.Platform.json b/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/es.VirtoCommerce.Platform.json index c1d6a3218d..c8c9d13ef9 100644 --- a/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/es.VirtoCommerce.Platform.json +++ b/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/es.VirtoCommerce.Platform.json @@ -878,16 +878,16 @@ "create-folder": { "title": "El nombre de una carpeta debe cumplir con las siguientes reglas de nomenclatura:\n El nombre de la carpeta debe tener entre 3 y 63 caracteres de longitud.\n El nombre de la carpeta debe comenzar con una letra o número, y solo puede contener letras, números y guiones (-).\n Cada guion (-) debe estar inmediatamente precedido y seguido por una letra o número; no se permiten guiones consecutivos.\n Todas las letras en el nombre de una carpeta deben estar en minúsculas" }, - "storefront-cache-reset": { + "cache-reset": { "title": "Restablecer caché", "confirm-reset-message": "¿Está seguro de que desea restablecer la caché? Esta acción borrará todos los datos almacenados en caché y puede afectar temporalmente el rendimiento del sistema. Confirme para continuar", - "reset-successfully-message": "La caché de la aplicación frontend se ha restablecido con éxito" + "reset-successfully-message": "La caché se ha restablecido con éxito" } }, "commands": { "login-on-behalf": "Iniciar sesión en nombre de", - "reset-storefront-cache": { - "title": "Restablecer caché de la aplicación frontend", + "cache-reset": { + "title": "Restablecer caché", "name": "Restablecer caché" }, "restart-application-title": "Reinicia la aplicación" diff --git a/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/fr.VirtoCommerce.Platform.json b/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/fr.VirtoCommerce.Platform.json index d84cf56d91..5c0e3bdb29 100644 --- a/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/fr.VirtoCommerce.Platform.json +++ b/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/fr.VirtoCommerce.Platform.json @@ -878,16 +878,16 @@ "create-folder": { "title": "Le nom d'un dossier doit respecter les règles de nommage suivantes :\n Le nom du dossier doit comporter entre 3 et 63 caractères.\n Le nom du dossier doit commencer par une lettre ou un chiffre et ne peut contenir que des lettres, des chiffres et des traits d'union (-).\n Chaque trait d'union (-) doit être immédiatement précédé et suivi d'une lettre ou d'un chiffre ; les traits d'union consécutifs ne sont pas autorisés.\n Toutes les lettres d'un nom de dossier doivent être en minuscules" }, - "storefront-cache-reset": { + "cache-reset": { "title": "Réinitialisation du cache", "confirm-reset-message": "Êtes-vous sûr de vouloir réinitialiser le cache? Cette action effacera toutes les données mises en cache et peut affecter temporairement les performances du système. Veuillez confirmer pour continuer", - "reset-successfully-message": "Le cache de l'application frontale a été réinitialisé avec succès" + "reset-successfully-message": "Le cache a été réinitialisé avec succès" } }, "commands": { "login-on-behalf": "Se connecter au nom de", - "reset-storefront-cache": { - "title": "Réinitialiser le cache de l'application frontale", + "cache-reset": { + "title": "Réinitialiser le cache", "name": "Réinitialiser le cache" }, "restart-application-title": "Redémarrez l'application" diff --git a/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/it.VirtoCommerce.Platform.json b/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/it.VirtoCommerce.Platform.json index 66337a1619..7ecc147341 100644 --- a/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/it.VirtoCommerce.Platform.json +++ b/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/it.VirtoCommerce.Platform.json @@ -878,16 +878,16 @@ "create-folder": { "title": "Il nome di una cartella deve rispettare le seguenti regole di denominazione:\n Il nome della cartella deve essere compreso tra 3 e 63 caratteri.\n Il nome della cartella deve iniziare con una lettera o un numero e può contenere solo lettere, numeri e trattini (-).\n Ogni trattino (-) deve essere immediatamente preceduto e seguito da una lettera o un numero; non sono consentiti trattini consecutivi.\n Tutte le lettere nel nome di una cartella devono essere minuscole" }, - "storefront-cache-reset": { + "cache-reset": { "title": "Reset della cache", "confirm-reset-message": "Sei sicuro di voler resettare la cache? Questa azione cancellerà tutti i dati memorizzati nella cache e potrebbe influire temporaneamente sulle prestazioni del sistema. Conferma per procedere", - "reset-successfully-message": "La cache dell'applicazione frontend è stata resettata con successo" + "reset-successfully-message": "La cache è stata resettata con successo" } }, "commands": { "login-on-behalf": "Accedi per conto di", - "reset-storefront-cache": { - "title": "Reset della cache dell'applicazione frontend", + "cache-reset": { + "title": "Reset della cache", "name": "Reset della cache" }, "restart-application-title": "Riavvia l'applicazione" diff --git a/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/ja.VirtoCommerce.Platform.json b/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/ja.VirtoCommerce.Platform.json index 0b5f39f34d..6ecf094bc6 100644 --- a/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/ja.VirtoCommerce.Platform.json +++ b/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/ja.VirtoCommerce.Platform.json @@ -878,16 +878,16 @@ "create-folder": { "title": "フォルダ名は以下の命名規則に従う必要があります:\n フォルダ名は3文字以上63文字以下である必要があります。\n フォルダ名は文字または数字で始まり、文字、数字、ハイフン(-)のみを含むことができます。\n 各ハイフン(-)の前後には文字または数字が必要です。連続したハイフンは使用できません。\n フォルダ名のすべての文字は小文字である必要があります" }, - "storefront-cache-reset": { + "cache-reset": { "title": "キャッシュのリセット", "confirm-reset-message": "キャッシュをリセットしてもよろしいですか? この操作により、キャッシュされたすべてのデータが消去され、システムのパフォーマンスに一時的に影響する可能性があります。 続行するには確認してください", - "reset-successfully-message": "フロントエンドアプリケーションのキャッシュが正常にリセットされました" + "reset-successfully-message": "キャッシュが正常にリセットされました" } }, "commands": { "login-on-behalf": "代理ログイン", - "reset-storefront-cache": { - "title": "フロントエンドアプリケーションキャッシュをリセットする", + "cache-reset": { + "title": "キャッシュのリセット", "name": "キャッシュのリセット" }, "restart-application-title": "アプリケーションを再起動します" diff --git a/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/pl.VirtoCommerce.Platform.json b/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/pl.VirtoCommerce.Platform.json index 38189ecf82..8c48fc9e14 100644 --- a/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/pl.VirtoCommerce.Platform.json +++ b/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/pl.VirtoCommerce.Platform.json @@ -878,16 +878,16 @@ "create-folder": { "title": "Nazwa folderu musi być zgodna z następującymi zasadami nazewnictwa:\n Nazwa folderu musi mieć od 3 do 63 znaków.\n Nazwa folderu musi zaczynać się od litery lub cyfry i może zawierać tylko litery, cyfry i myślnik (-).\n Każdy myślnik (-) musi być bezpośrednio poprzedzony i następowany przez literę lub cyfrę; kolejne myślniki są niedozwolone.\n Wszystkie litery w nazwie folderu muszą być małe" }, - "storefront-cache-reset": { + "cache-reset": { "title": "Zresetuj pamięć podręczną", "confirm-reset-message": "Czy na pewno chcesz zresetować pamięć podręczną? Ta czynność spowoduje wyczyszczenie wszystkich buforowanych danych i może tymczasowo wpłynąć na wydajność systemu. Potwierdź, aby kontynuować", - "reset-successfully-message": "Pamięć podręczna aplikacji frontendowej została pomyślnie zresetowana" + "reset-successfully-message": "Pamięć podręczna została pomyślnie zresetowana" } }, "commands": { "login-on-behalf": "Zaloguj się w imieniu", - "reset-storefront-cache": { - "title": "Zresetuj pamięć podręczną aplikacji frontendowej", + "cache-reset": { + "title": "Zresetuj pamięć podręczną", "name": "Zresetuj pamięć podręczn" }, "restart-application-title": "Uruchom ponownie aplikację" diff --git a/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/pt.VirtoCommerce.Platform.json b/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/pt.VirtoCommerce.Platform.json index 950be648e9..f04e42928d 100644 --- a/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/pt.VirtoCommerce.Platform.json +++ b/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/pt.VirtoCommerce.Platform.json @@ -878,17 +878,17 @@ "create-folder": { "title": "O nome da pasta deve estar em conformidade com as seguintes regras de nomenclatura:\n O nome da pasta deve ter entre 3 e 63 caracteres.\n O nome da pasta deve começar com uma letra ou número e pode conter apenas letras, números e hífen (-).\n Cada hífen (-) deve ser imediatamente precedido e seguido por uma letra ou número; hífens consecutivos não são permitidos.\n Todas as letras no nome da pasta devem ser minúsculas" }, - "storefront-cache-reset": { + "cache-reset": { "title": "Cache redefinido", "confirm-reset-message": "Tem certeza de que deseja redefinir o cache? Esta ação limpará todos os dados armazenados em cache e poderá afetar temporariamente o desempenho do sistema. Confirme para prosseguir", - "reset-successfully-message": "O cache da aplicação frontend foi redefinido com sucess" + "reset-successfully-message": "O cache foi redefinido com sucess" } }, "commands": { "login-on-behalf": "Login em nome de", - "reset-storefront-cache": { - "title": "Redefinir o cache da aplicação frontend", - "name": "Redefinir cache" + "cache-reset": { + "title": "Redefinir o cache", + "name": "Redefinir o cache" }, "restart-application-title": "Reinicie a aplicação" } diff --git a/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/ru.VirtoCommerce.Platform.json b/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/ru.VirtoCommerce.Platform.json index 1e835038f7..c0e314823e 100644 --- a/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/ru.VirtoCommerce.Platform.json +++ b/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/ru.VirtoCommerce.Platform.json @@ -880,16 +880,16 @@ "create-folder": { "title": "Имя папки должно соответствовать следующим правилам именования:\n Имя папки должно быть длиной от 3 до 63 символов.\n Имя папки должно начинаться с буквы или цифры и может содержать только буквы, цифры и дефис (-).\n Каждый дефис (-) должен непосредственно предшествовать букве или цифре и следовать за ней; последовательные дефисы не допускаются.\n Все буквы в имени папки должны быть в нижнем регистре" }, - "storefront-cache-reset": { + "cache-reset": { "title": "Сброс кэша", "confirm-reset-message": "Вы действительно хотите сбросить кэш? Это действие очистит все закешированные данные и может временно повлиять на производительность системы. Пожалуйста, подтвердите свое решение для продолжения", - "reset-successfully-message": "Кэш фронтенд-приложения был успешно сброшен" + "reset-successfully-message": "Кэш был успешно сброшен" } }, "commands": { "login-on-behalf": "Войти от имени", - "reset-storefront-cache": { - "title": "Сбросить кэш фронтенд-приложения", + "cache-reset": { + "title": "Сбросить кэш", "name": "Сбросить кэш" }, "restart-application-title": "Перезапустить приложение" diff --git a/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/zh.VirtoCommerce.Platform.json b/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/zh.VirtoCommerce.Platform.json index 556b3a78ec..2322d305c1 100644 --- a/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/zh.VirtoCommerce.Platform.json +++ b/src/VirtoCommerce.Platform.Web/wwwroot/Localizations/zh.VirtoCommerce.Platform.json @@ -878,16 +878,16 @@ "create-folder": { "title": "文件夹名称必须符合以下命名规则:\n 文件夹名称长度必须在 3 到 63 个字符之间。\n 文件夹名称必须以字母或数字开头,只能包含字母、数字和连字符(-)。\n 每个连字符(-)的前后必须紧跟字母或数字;不允许连续的连字符。\n 文件夹名称中的所有字母必须是小写" }, - "storefront-cache-reset": { + "cache-reset": { "title": "缓存重置", "confirm-reset-message": "确定要重置缓存吗? 此操作将清除所有缓存的数据,并可能暂时影响系统性能。 确认继续", - "reset-successfully-message": "前端应用程序缓存已成功重置" + "reset-successfully-message": "缓存重置成功" } }, "commands": { "login-on-behalf": "代表登录", - "reset-storefront-cache": { - "title": "重置前端应用程序缓存", + "cache-reset": { + "title": "重置缓存", "name": "重置缓存" }, "restart-application-title": "重新启动应用程序" diff --git a/src/VirtoCommerce.Platform.Web/wwwroot/js/app/settings/settings.js b/src/VirtoCommerce.Platform.Web/wwwroot/js/app/settings/settings.js index 316229dd0d..b8939e7574 100644 --- a/src/VirtoCommerce.Platform.Web/wwwroot/js/app/settings/settings.js +++ b/src/VirtoCommerce.Platform.Web/wwwroot/js/app/settings/settings.js @@ -55,14 +55,14 @@ angular.module("platformWebApp") // Add 'Reset cache' command to settings blade var resetCacheCommand = { - name: 'platform.commands.reset-storefront-cache.name', - title: 'platform.commands.reset-storefront-cache.title', + name: 'platform.commands.cache-reset.name', + title: 'platform.commands.cache-reset.title', icon: 'fa fa-eraser', executeMethod: function (blade) { var confirmDialog = { id: "confirmCacheResetDialog", - title: "platform.dialogs.storefront-cache-reset.title", - message: "platform.dialogs.storefront-cache-reset.confirm-reset-message", + title: "platform.dialogs.cache-reset.title", + message: "platform.dialogs.cache-reset.confirm-reset-message", callback: function (confirm) { if (confirm) { blade.isLoading = true; @@ -70,8 +70,8 @@ angular.module("platformWebApp") blade.isLoading = false; var successDialog = { id: "successCacheResetDialog", - title: "platform.dialogs.storefront-cache-reset.title", - message: "platform.dialogs.storefront-cache-reset.reset-successfully-message", + title: "platform.dialogs.cache-reset.title", + message: "platform.dialogs.cache-reset.reset-successfully-message", }; dialogService.showSuccessDialog(successDialog); });