mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-12-27 15:13:46 +00:00
fix: translations (#7694)
This commit is contained in:
parent
9e30b1816f
commit
462c822255
@ -203,7 +203,7 @@ class MobileViewPageMoreBottomSheet extends StatelessWidget {
|
||||
);
|
||||
showToastNotification(
|
||||
context,
|
||||
message: LocaleKeys.grid_url_copy.tr(),
|
||||
message: LocaleKeys.message_copy_success.tr(),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@ -185,7 +185,7 @@ class CopyButton extends StatelessWidget {
|
||||
if (context.mounted) {
|
||||
showToastNotification(
|
||||
context,
|
||||
message: LocaleKeys.grid_url_copiedNotification.tr(),
|
||||
message: LocaleKeys.message_copy_success.tr(),
|
||||
);
|
||||
}
|
||||
},
|
||||
|
||||
@ -377,7 +377,7 @@ class ChatAIMessagePopup extends StatelessWidget {
|
||||
if (context.mounted) {
|
||||
showToastNotification(
|
||||
context,
|
||||
message: LocaleKeys.grid_url_copiedNotification.tr(),
|
||||
message: LocaleKeys.message_copy_success.tr(),
|
||||
);
|
||||
}
|
||||
},
|
||||
|
||||
@ -203,7 +203,7 @@ class MobileURLEditor extends StatelessWidget {
|
||||
ClipboardData(text: textEditingController.text),
|
||||
);
|
||||
Fluttertoast.showToast(
|
||||
msg: LocaleKeys.grid_url_copiedNotification.tr(),
|
||||
msg: LocaleKeys.message_copy_success.tr(),
|
||||
gravity: ToastGravity.BOTTOM,
|
||||
);
|
||||
context.pop();
|
||||
|
||||
@ -175,7 +175,7 @@ class ExportTab extends StatelessWidget {
|
||||
);
|
||||
showToastNotification(
|
||||
context,
|
||||
message: LocaleKeys.grid_url_copiedNotification.tr(),
|
||||
message: LocaleKeys.message_copy_success.tr(),
|
||||
);
|
||||
},
|
||||
(error) => showToastNotification(context, message: error.msg),
|
||||
|
||||
@ -183,7 +183,7 @@ class _PublishedWidgetState extends State<_PublishedWidget> {
|
||||
|
||||
showToastNotification(
|
||||
context,
|
||||
message: LocaleKeys.grid_url_copy.tr(),
|
||||
message: LocaleKeys.message_copy_success.tr(),
|
||||
);
|
||||
},
|
||||
onSubmitted: (pathName) {
|
||||
|
||||
@ -118,7 +118,7 @@ class _ShareTabContent extends StatelessWidget {
|
||||
|
||||
showToastNotification(
|
||||
context,
|
||||
message: LocaleKeys.grid_url_copy.tr(),
|
||||
message: LocaleKeys.message_copy_success.tr(),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@ -54,7 +54,7 @@ class SettingsPageSitesEvent {
|
||||
getIt<ClipboardService>().setData(ClipboardServiceData(plainText: url));
|
||||
showToastNotification(
|
||||
context,
|
||||
message: LocaleKeys.grid_url_copy.tr(),
|
||||
message: LocaleKeys.message_copy_success.tr(),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@ -1672,8 +1672,7 @@
|
||||
"url": {
|
||||
"launch": "فتح في المتصفح",
|
||||
"copy": "إنسخ الرابط",
|
||||
"textFieldHint": "أدخل عنوان URL",
|
||||
"copiedNotification": "تمت نسخها إلى الحافظة!"
|
||||
"textFieldHint": "أدخل عنوان URL"
|
||||
},
|
||||
"relation": {
|
||||
"relatedDatabasePlaceLabel": "قاعدة البيانات ذات الصلة",
|
||||
|
||||
@ -1625,8 +1625,7 @@
|
||||
"url": {
|
||||
"launch": "Im Browser öffnen",
|
||||
"copy": "Webadresse kopieren",
|
||||
"textFieldHint": "Gebe eine URL ein",
|
||||
"copiedNotification": "In die Zwischenablage kopiert!"
|
||||
"textFieldHint": "Gebe eine URL ein"
|
||||
},
|
||||
"relation": {
|
||||
"relatedDatabasePlaceLabel": "Verwandte Datenbank",
|
||||
|
||||
@ -723,9 +723,8 @@
|
||||
},
|
||||
"url": {
|
||||
"launch": "Άνοιγμα συνδέσμου στο πρόγραμμα περιήγησης",
|
||||
"copy": "Copied link to clipboard",
|
||||
"textFieldHint": "Enter a URL",
|
||||
"copiedNotification": "Copied to clipboard!"
|
||||
"copy": "Copy link to clipboard",
|
||||
"textFieldHint": "Enter a URL"
|
||||
},
|
||||
"relation": {
|
||||
"relatedDatabasePlaceLabel": "Related Database",
|
||||
|
||||
@ -1647,9 +1647,8 @@
|
||||
},
|
||||
"url": {
|
||||
"launch": "Open link in browser",
|
||||
"copy": "Copied link to clipboard",
|
||||
"textFieldHint": "Enter a URL",
|
||||
"copiedNotification": "Copied to clipboard!"
|
||||
"copy": "Copy link to clipboard",
|
||||
"textFieldHint": "Enter a URL"
|
||||
},
|
||||
"relation": {
|
||||
"relatedDatabasePlaceLabel": "Related Database",
|
||||
@ -2273,7 +2272,7 @@
|
||||
},
|
||||
"message": {
|
||||
"copy": {
|
||||
"success": "Copied!",
|
||||
"success": "Copied to clipboard",
|
||||
"fail": "Unable to copy"
|
||||
}
|
||||
},
|
||||
|
||||
@ -866,8 +866,7 @@
|
||||
"url": {
|
||||
"launch": "Abrir en el navegador",
|
||||
"copy": "Copiar URL",
|
||||
"textFieldHint": "Introduce una URL",
|
||||
"copiedNotification": "¡Copiado al portapapeles!"
|
||||
"textFieldHint": "Introduce una URL"
|
||||
},
|
||||
"relation": {
|
||||
"relatedDatabasePlaceLabel": "Base de datos relacionada",
|
||||
|
||||
@ -1612,8 +1612,7 @@
|
||||
"url": {
|
||||
"launch": "Ouvrir dans le navigateur",
|
||||
"copy": "Copier l'URL",
|
||||
"textFieldHint": "Entrez une URL",
|
||||
"copiedNotification": "Copié dans le presse-papier!"
|
||||
"textFieldHint": "Entrez une URL"
|
||||
},
|
||||
"relation": {
|
||||
"relatedDatabasePlaceLabel": "Base de données associée",
|
||||
|
||||
@ -1243,8 +1243,7 @@
|
||||
"url": {
|
||||
"launch": "פתיחת קישור בדפדפן",
|
||||
"copy": "העתקת קישור ללוח הגזירים",
|
||||
"textFieldHint": "נא למלא כתובת",
|
||||
"copiedNotification": "הועתק ללוח הגזירים!"
|
||||
"textFieldHint": "נא למלא כתובת"
|
||||
},
|
||||
"relation": {
|
||||
"relatedDatabasePlaceLabel": "מסד נתונים קשור",
|
||||
|
||||
@ -1577,8 +1577,7 @@
|
||||
"url": {
|
||||
"launch": "リンクをブラウザで開く",
|
||||
"copy": "リンクをクリップボードにコピー",
|
||||
"textFieldHint": "URLを入力",
|
||||
"copiedNotification": "クリップボードにコピーされました!"
|
||||
"textFieldHint": "URLを入力"
|
||||
},
|
||||
"relation": {
|
||||
"relatedDatabasePlaceLabel": "関連データベース",
|
||||
|
||||
@ -1634,8 +1634,7 @@
|
||||
"url": {
|
||||
"launch": "브라우저에서 링크 열기",
|
||||
"copy": "링크를 클립보드에 복사",
|
||||
"textFieldHint": "URL 입력",
|
||||
"copiedNotification": "클립보드에 복사되었습니다!"
|
||||
"textFieldHint": "URL 입력"
|
||||
},
|
||||
"relation": {
|
||||
"relatedDatabasePlaceLabel": "관련 데이터베이스",
|
||||
|
||||
@ -1420,8 +1420,7 @@
|
||||
"url": {
|
||||
"launch": "Открыть в браузере",
|
||||
"copy": "Скопировать URL",
|
||||
"textFieldHint": "Введите URL-адрес",
|
||||
"copiedNotification": "Скопировано в буфер обмена!"
|
||||
"textFieldHint": "Введите URL-адрес"
|
||||
},
|
||||
"relation": {
|
||||
"relatedDatabasePlaceLabel": "Связанная база данных",
|
||||
|
||||
@ -1570,8 +1570,7 @@
|
||||
"url": {
|
||||
"launch": "เปิดในเบราว์เซอร์",
|
||||
"copy": "คัดลอก URL",
|
||||
"textFieldHint": "ป้อน URL",
|
||||
"copiedNotification": "คัดลอกไปยังคลิปบอร์ดแล้ว!"
|
||||
"textFieldHint": "ป้อน URL"
|
||||
},
|
||||
"relation": {
|
||||
"relatedDatabasePlaceLabel": "ฐานข้อมูลที่เกี่ยวข้อง",
|
||||
|
||||
@ -1608,8 +1608,7 @@
|
||||
"url": {
|
||||
"launch": "Bağlantıyı tarayıcıda aç",
|
||||
"copy": "Bağlantıyı panoya kopyala",
|
||||
"textFieldHint": "Bir URL girin",
|
||||
"copiedNotification": "Panoya kopyalandı!"
|
||||
"textFieldHint": "Bir URL girin"
|
||||
},
|
||||
"relation": {
|
||||
"relatedDatabasePlaceLabel": "İlişkili Veritabanı",
|
||||
|
||||
@ -1445,8 +1445,7 @@
|
||||
"url": {
|
||||
"launch": "Відкрити посилання в браузері",
|
||||
"copy": "Копіювати посилання в буфер обміну",
|
||||
"textFieldHint": "Введіть URL",
|
||||
"copiedNotification": "Скопійовано в буфер обміну!"
|
||||
"textFieldHint": "Введіть URL"
|
||||
},
|
||||
"relation": {
|
||||
"relatedDatabasePlaceLabel": "Пов'язана база даних",
|
||||
|
||||
@ -1439,8 +1439,7 @@
|
||||
"url": {
|
||||
"launch": "Mở liên kết trong trình duyệt",
|
||||
"copy": "Sao chép URL",
|
||||
"textFieldHint": "Nhập một URL",
|
||||
"copiedNotification": "Đã sao chép vào bảng tạm!"
|
||||
"textFieldHint": "Nhập một URL"
|
||||
},
|
||||
"relation": {
|
||||
"relatedDatabasePlaceLabel": "Cơ sở dữ liệu liên quan",
|
||||
|
||||
@ -1270,8 +1270,7 @@
|
||||
"url": {
|
||||
"launch": "在浏览器中打开链接",
|
||||
"copy": "将链接复制到剪贴板",
|
||||
"textFieldHint": "输入 URL",
|
||||
"copiedNotification": "已复制到剪贴板!"
|
||||
"textFieldHint": "输入 URL"
|
||||
},
|
||||
"relation": {
|
||||
"rowSearchTextFieldPlaceholder": "搜索"
|
||||
|
||||
@ -838,8 +838,7 @@
|
||||
"url": {
|
||||
"launch": "在瀏覽器中開啟",
|
||||
"copy": "複製網址",
|
||||
"textFieldHint": "輸入網址",
|
||||
"copiedNotification": "已複製到剪貼簿"
|
||||
"textFieldHint": "輸入網址"
|
||||
},
|
||||
"menuName": "網格",
|
||||
"referencedGridPrefix": "檢視",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user