Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[_]: fix/empty trash description #1288

Merged
merged 1 commit into from
Sep 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/app/i18n/locales/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -1660,7 +1660,7 @@
"levelUpStorage": "Erhöhe deinen Speicherplatz und erhalte viele andere Vorteile",
"upgradeNow": "Jetzt upgraden",
"emptyTrash": "Papierkorb leeren",
"emptryTrashDescription": "Elemente im Papierkorb werden nach 15 Tagen endgültig gelöscht",
"emptyTrashDescription": "Objekte im Papierkorb werden dauerhaft gelöscht",
"plans": {
"title": "Tarife",
"current": "Aktuell",
Expand Down
2 changes: 1 addition & 1 deletion src/app/i18n/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -1718,7 +1718,7 @@
"levelUpStorage": "Level up your storage space and get many other benefits",
"upgradeNow": "Upgrade now",
"emptyTrash": "Empty trash",
"emptryTrashDescription": "Items in trash will be deleted permanently after 15 days",
"emptyTrashDescription": "Items in trash will be deleted permanently",
"plans": {
"title": "Plans",
"current": "Current",
Expand Down
2 changes: 1 addition & 1 deletion src/app/i18n/locales/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -1696,7 +1696,7 @@
"levelUpStorage": "Aumenta tu espacio de almacenamiento y obtén muchos otros beneficios",
"upgradeNow": "Mejorar ahora",
"emptyTrash": "Vaciar la papelera",
"emptryTrashDescription": "Los elementos en la papelera serán eliminados permanentemente después de 15 días",
"emptyTrashDescription": "Los elementos de la papelera se borrarán permanentemente",
"plans": {
"title": "Planes",
"current": "Actual",
Expand Down
2 changes: 1 addition & 1 deletion src/app/i18n/locales/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -1645,7 +1645,7 @@
"levelUpStorage": "Améliorez votre espace de stockage et bénéficiez de nombreux autres avantages",
"upgradeNow": "Mettre à niveau maintenant",
"emptyTrash": "Vider la corbeille",
"emptryTrashDescription": "Les éléments dans la corbeille seront supprimés définitivement après 15 jours",
"emptyTrashDescription": "Les éléments contenus dans la corbeille seront définitivement supprimés",
"plans": {
"title": "Plans",
"current": "Actuel",
Expand Down
2 changes: 1 addition & 1 deletion src/app/i18n/locales/it.json
Original file line number Diff line number Diff line change
Expand Up @@ -1705,7 +1705,7 @@
"levelUpStorage": "Aumenta il tuo spazio di archiviazione e ottieni molti altri vantaggi",
"upgradeNow": "Aggiorna ora",
"emptyTrash": "Svuota cestino",
"emptryTrashDescription": "Gli elementi nel cestino verranno eliminati definitivamente dopo 15 giorni",
"emptyTrashDescription": "Gli elementi nel cestino verranno eliminati in modo permanente",
"plans": {
"title": "Piani",
"current": "Corrente",
Expand Down
2 changes: 1 addition & 1 deletion src/app/i18n/locales/ru.json
Original file line number Diff line number Diff line change
Expand Up @@ -1685,7 +1685,7 @@
"levelUpStorage": "Увеличьте свое пространство хранения и получите множество других преимуществ",
"upgradeNow": "Обновить сейчас",
"emptyTrash": "Очистить корзину",
"emptryTrashDescription": "Элементы в корзине будут удалены навсегда через 15 дней",
"emptyTrashDescription": "Элементы в корзине будут удалены навсегда",
"plans": {
"title": "Тарифы",
"current": "Текущий",
Expand Down
2 changes: 1 addition & 1 deletion src/app/i18n/locales/tw.json
Original file line number Diff line number Diff line change
Expand Up @@ -1676,7 +1676,7 @@
"levelUpStorage": "提升您的存儲空間並獲得許多其他好處",
"upgradeNow": "立即升級",
"emptyTrash": "清空垃圾桶",
"emptryTrashDescription": "垃圾桶中的項目將在15天後永久刪除",
"emptyTrashDescription": "垃圾桶中的項目將被永久刪除",
"plans": {
"title": "計劃",
"current": "當前",
Expand Down
2 changes: 1 addition & 1 deletion src/app/i18n/locales/zh.json
Original file line number Diff line number Diff line change
Expand Up @@ -1718,7 +1718,7 @@
"levelUpStorage": "升级您的存储空间,并获得许多其他好处",
"upgradeNow": "立即升级",
"emptyTrash": "清空回收站",
"emptryTrashDescription": "回收站中的项目将在15天后被永久删除",
"emptyTrashDescription": "回收站中的项目将被永久删除",
"plans": {
"title": "计划",
"current": "当前",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ const AccountUsageContainer = ({
<div className="flex flex-col">
<p className="text-base font-medium text-gray-100">{translate('preferences.account.emptyTrash')}</p>
<p className="text-base font-normal text-gray-60">
{translate('preferences.account.emptryTrashDescription')}{' '}
{translate('preferences.account.emptyTrashDescription')}{' '}
</p>
<div className="mt-3">
<Button variant="secondary" onClick={openTrashDialog}>
Expand Down
Loading