mirror of
https://github.com/FossifyOrg/Notes.git
synced 2026-06-11 10:09:29 -04:00
Merge branch 'master' into weblate-fossify-notes
This commit is contained in:
140
app/schemas/org.fossify.notes.databases.NotesDatabase/4.json
Normal file
140
app/schemas/org.fossify.notes.databases.NotesDatabase/4.json
Normal file
@@ -0,0 +1,140 @@
|
||||
{
|
||||
"formatVersion": 1,
|
||||
"database": {
|
||||
"version": 4,
|
||||
"identityHash": "e470b6e1411ee6659417cf4dbe54f453",
|
||||
"entities": [
|
||||
{
|
||||
"tableName": "notes",
|
||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT, `title` TEXT NOT NULL, `value` TEXT NOT NULL, `type` INTEGER NOT NULL, `path` TEXT NOT NULL, `protection_type` INTEGER NOT NULL, `protection_hash` TEXT NOT NULL)",
|
||||
"fields": [
|
||||
{
|
||||
"fieldPath": "id",
|
||||
"columnName": "id",
|
||||
"affinity": "INTEGER",
|
||||
"notNull": false
|
||||
},
|
||||
{
|
||||
"fieldPath": "title",
|
||||
"columnName": "title",
|
||||
"affinity": "TEXT",
|
||||
"notNull": true
|
||||
},
|
||||
{
|
||||
"fieldPath": "value",
|
||||
"columnName": "value",
|
||||
"affinity": "TEXT",
|
||||
"notNull": true
|
||||
},
|
||||
{
|
||||
"fieldPath": "type",
|
||||
"columnName": "type",
|
||||
"affinity": "INTEGER",
|
||||
"notNull": true
|
||||
},
|
||||
{
|
||||
"fieldPath": "path",
|
||||
"columnName": "path",
|
||||
"affinity": "TEXT",
|
||||
"notNull": true
|
||||
},
|
||||
{
|
||||
"fieldPath": "protectionType",
|
||||
"columnName": "protection_type",
|
||||
"affinity": "INTEGER",
|
||||
"notNull": true
|
||||
},
|
||||
{
|
||||
"fieldPath": "protectionHash",
|
||||
"columnName": "protection_hash",
|
||||
"affinity": "TEXT",
|
||||
"notNull": true
|
||||
}
|
||||
],
|
||||
"primaryKey": {
|
||||
"autoGenerate": true,
|
||||
"columnNames": [
|
||||
"id"
|
||||
]
|
||||
},
|
||||
"indices": [
|
||||
{
|
||||
"name": "index_notes_id",
|
||||
"unique": true,
|
||||
"columnNames": [
|
||||
"id"
|
||||
],
|
||||
"orders": [],
|
||||
"createSql": "CREATE UNIQUE INDEX IF NOT EXISTS `index_notes_id` ON `${TABLE_NAME}` (`id`)"
|
||||
}
|
||||
],
|
||||
"foreignKeys": []
|
||||
},
|
||||
{
|
||||
"tableName": "widgets",
|
||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT, `widget_id` INTEGER NOT NULL, `note_id` INTEGER NOT NULL, `widget_bg_color` INTEGER NOT NULL, `widget_text_color` INTEGER NOT NULL, `widget_show_title` INTEGER NOT NULL)",
|
||||
"fields": [
|
||||
{
|
||||
"fieldPath": "id",
|
||||
"columnName": "id",
|
||||
"affinity": "INTEGER",
|
||||
"notNull": false
|
||||
},
|
||||
{
|
||||
"fieldPath": "widgetId",
|
||||
"columnName": "widget_id",
|
||||
"affinity": "INTEGER",
|
||||
"notNull": true
|
||||
},
|
||||
{
|
||||
"fieldPath": "noteId",
|
||||
"columnName": "note_id",
|
||||
"affinity": "INTEGER",
|
||||
"notNull": true
|
||||
},
|
||||
{
|
||||
"fieldPath": "widgetBgColor",
|
||||
"columnName": "widget_bg_color",
|
||||
"affinity": "INTEGER",
|
||||
"notNull": true
|
||||
},
|
||||
{
|
||||
"fieldPath": "widgetTextColor",
|
||||
"columnName": "widget_text_color",
|
||||
"affinity": "INTEGER",
|
||||
"notNull": true
|
||||
},
|
||||
{
|
||||
"fieldPath": "widgetShowTitle",
|
||||
"columnName": "widget_show_title",
|
||||
"affinity": "INTEGER",
|
||||
"notNull": true
|
||||
}
|
||||
],
|
||||
"primaryKey": {
|
||||
"autoGenerate": true,
|
||||
"columnNames": [
|
||||
"id"
|
||||
]
|
||||
},
|
||||
"indices": [
|
||||
{
|
||||
"name": "index_widgets_widget_id",
|
||||
"unique": true,
|
||||
"columnNames": [
|
||||
"widget_id"
|
||||
],
|
||||
"orders": [],
|
||||
"createSql": "CREATE UNIQUE INDEX IF NOT EXISTS `index_widgets_widget_id` ON `${TABLE_NAME}` (`widget_id`)"
|
||||
}
|
||||
],
|
||||
"foreignKeys": []
|
||||
}
|
||||
],
|
||||
"views": [],
|
||||
"setupQueries": [
|
||||
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
|
||||
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, 'e470b6e1411ee6659417cf4dbe54f453')"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,7 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_launcher_name">الملاحظات</string>
|
||||
<string name="widget_config">Thank you for using Fossify Notes.\nFor more apps from Fossify, please visit fossify.org.</string>
|
||||
<string name="cannot_share_empty_text">لا يمكن مشاركة نص فارغ</string>
|
||||
<string name="new_note">إضافة ملاحظة</string>
|
||||
<string name="no_title">الرجاء تسمية الملاحظة</string>
|
||||
@@ -19,7 +18,6 @@
|
||||
<string name="show_note_title">إظهار عنوان الملاحظة</string>
|
||||
<string name="new_note_type">نوع ملاحظة جديد:</string>
|
||||
<string name="text_note">ملاحظة نصية</string>
|
||||
<string name="lock_note">Lock note</string>
|
||||
<string name="unlock_note">إلغاء تأمين الملاحظة</string>
|
||||
<string name="unlock_notes">إلغاء تأمين الملاحظة</string>
|
||||
<string name="found_locked_notes_info">الملاحظات التالية مقفلة. يمكنك إما إلغاء قفلها واحدة تلو الأخرى أو تخطي تصديرها.</string>
|
||||
@@ -29,7 +27,6 @@
|
||||
<string name="new_text_note">ملاحظة نصية جديدة</string>
|
||||
<string name="new_checklist">قائمة مرجعية جديدة</string>
|
||||
<string name="cannot_load_over_internet">لا يمكن للتطبيق تحميل الملفات عبر الإنترنت</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">فتح الملف</string>
|
||||
<string name="export_as_file">تصدير كملف</string>
|
||||
<string name="file_too_large">ملف كبير جداً، الحد المسموح 1MB</string>
|
||||
@@ -42,7 +39,6 @@
|
||||
<string name="note_exported_successfully">تم تصدير الملاحظة \"%s\" بنجاح</string>
|
||||
<string name="only_export_file_content">تصدير فقط محتوى الملف الحالي
|
||||
\n(تغيير الملاحظة لن يؤثر على الملف)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">عرض حفظ رسائل النجاح</string>
|
||||
<string name="links_and_emails_clickable">جعل الروابط ورسائل البريد الإلكتروني قابلة للنقر</string>
|
||||
<string name="place_cursor_end">ضع المؤشر في نهاية الملاحظة</string>
|
||||
@@ -61,24 +57,15 @@
|
||||
<string name="use_incognito_mode">استخدام وضع التصفح المتخفي للوحات المفاتيح</string>
|
||||
<string name="move_done_checklist_items">نقل عناصر قائمة التحقق المنجزة إلى الأسفل</string>
|
||||
<string name="add_new_checklist_items_top">إضافة عناصر قائمة اختيار جديدة في الأعلى</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">قائمة تدقيق</string>
|
||||
<string name="checklists">قوائم</string>
|
||||
<string name="add_new_checklist_item">إضافة عنصر قائمة تدقيق جديد</string>
|
||||
<string name="add_new_checklist_items">إضافة عناصر قائمة تدقيق جديدة</string>
|
||||
<string name="checklist_is_empty">قائمة التدقيق فارغة</string>
|
||||
<string name="remove_done_items">إزالة العناصر التي تم إنجازها</string>
|
||||
<string name="add_to_the_top">Add to the top</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">مجلد الاستيراد</string>
|
||||
<string name="export_notes">تصدير الملاحظات</string>
|
||||
<string name="import_notes">Import notes</string>
|
||||
<string name="import_notes_pro">استيراد الملاحظات (Pro)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">كيف يمكنني تغيير لون القطع؟</string>
|
||||
<string name="faq_1_text">في حال كان لديك عنصر واجهة مستخدم نشط واحد فقط، يمكنك إما إعادة إنشائه، أو استخدام الزر في إعدادات التطبيق لتخصيصه. إذا كان لديك العديد من الحاجيات النشطة، لن يكون الزر الموجود في إعدادات التطبيق متاحا. بما أن التطبيق يدعم تخصيص الألوان لكل عنصر واجهة مستخدم ، سيكون عليك إعادة إنشاء القطعة التي تريد تخصيصها.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
@@ -1,7 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_launcher_name">Qeydlər</string>
|
||||
<string name="widget_config">Thank you for using Fossify Notes.\nFor more apps from Fossify, please visit fossify.org.</string>
|
||||
<string name="cannot_share_empty_text">Boş mətni paylaşmaq olmur</string>
|
||||
<string name="new_note">Yeni qeyd əlavə et</string>
|
||||
<string name="no_title">Qeydi adlandırın</string>
|
||||
@@ -15,21 +14,6 @@
|
||||
<string name="create_new_note">Yeni qeyd yarat</string>
|
||||
<string name="add_to_note">Qeydə əlavə et</string>
|
||||
<string name="unsaved_changes_warning">You have some unsaved changes. What do you want to do with them\?</string>
|
||||
<string name="note_shown_widget">Note shown in the widget:</string>
|
||||
<string name="show_note_title">Show note title</string>
|
||||
<string name="new_note_type">New note type:</string>
|
||||
<string name="text_note">Text note</string>
|
||||
<string name="lock_note">Lock note</string>
|
||||
<string name="unlock_note">Unlock note</string>
|
||||
<string name="unlock_notes">Unlock notes</string>
|
||||
<string name="found_locked_notes_info">The following notes are locked. You can either unlock them one by one or skip exporting them.</string>
|
||||
<string name="note_content_locked">The notes\' content is locked.</string>
|
||||
<string name="show_content">Show content</string>
|
||||
<string name="locking_warning">WARNING: If you forget the notes\' password, you won\'t be able to recover it or access the notes\' content anymore.</string>
|
||||
<string name="new_text_note">New text note</string>
|
||||
<string name="new_checklist">New checklist</string>
|
||||
<string name="cannot_load_over_internet">The app cannot load files over the internet</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">Faylı Aç</string>
|
||||
<string name="export_as_file">Fayl kimi çıxar</string>
|
||||
<string name="file_too_large">Fayl çox böyükdür, limit 1mb\"dır</string>
|
||||
@@ -42,14 +26,12 @@
|
||||
<string name="note_exported_successfully">\"%s\" qeydi uğurla çıxarıldı</string>
|
||||
<string name="only_export_file_content">Only export the current file content
|
||||
\n(changing the note will not affect the file)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">Uğurlu saxlama mesajını göstər</string>
|
||||
<string name="links_and_emails_clickable">Keçidləri və e-poçtları toxuna bilən et</string>
|
||||
<string name="place_cursor_end">Kursoru qeydin sonunda yerləşdir</string>
|
||||
<string name="monospaced_font">Tək aralıqlı şrift işlət</string>
|
||||
<string name="show_keyboard">Başlanğıcda klaviaturanı göstər</string>
|
||||
<string name="show_word_count">Söz sayını göstər</string>
|
||||
<string name="show_character_count">Show character count</string>
|
||||
<string name="alignment">Sıra</string>
|
||||
<string name="left">Sol</string>
|
||||
<string name="center">Mərkəz</string>
|
||||
@@ -58,27 +40,6 @@
|
||||
<string name="show_note_picker">Başlanğıcda qeyd götürəni göstər</string>
|
||||
<string name="autosave_notes">Qeydləri avtomatik saxla</string>
|
||||
<string name="enable_line_wrap">Cız sarğısını göstər</string>
|
||||
<string name="use_incognito_mode">Use Incognito mode of keyboards</string>
|
||||
<string name="move_done_checklist_items">Move done checklist items to the bottom</string>
|
||||
<string name="add_new_checklist_items_top">Add new checklist items at the top</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">Checklist</string>
|
||||
<string name="checklists">Checklists</string>
|
||||
<string name="add_new_checklist_item">Add a new checklist item</string>
|
||||
<string name="add_new_checklist_items">Add new checklist items</string>
|
||||
<string name="checklist_is_empty">The checklist is empty</string>
|
||||
<string name="remove_done_items">Remove done items</string>
|
||||
<string name="add_to_the_top">Add to the top</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">Qovluq daxil et</string>
|
||||
<string name="export_notes">Export notes</string>
|
||||
<string name="import_notes">Import notes</string>
|
||||
<string name="import_notes_pro">Import notes (Pro)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">How can I change the widgets color\?</string>
|
||||
<string name="faq_1_text">In case you have only 1 active widget, you can either recreate it, or use the button in the app settings for customizing it. If you have multiple active widgets, the button in the app settings will not be available. As the app supports color customization per-widget, you will have to recreate the widget that you want to customize.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
@@ -1,7 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_launcher_name">Нататкі</string>
|
||||
<string name="widget_config">Thank you for using Fossify Notes.\nFor more apps from Fossify, please visit fossify.org.</string>
|
||||
<string name="cannot_share_empty_text">Немагчыма абагуліць пусты тэкст</string>
|
||||
<string name="new_note">Дадаць новую нататку</string>
|
||||
<string name="no_title">Назавіце нататку</string>
|
||||
@@ -28,8 +27,6 @@
|
||||
<string name="locking_warning">ПАПЯРЭДЖАННЕ: Калі вы забудзеце пароль, вы больш не зможаце аднавіць яго альбо атрымаць доступ да змесціва нататак.</string>
|
||||
<string name="new_text_note">Новая тэкставая нататка</string>
|
||||
<string name="new_checklist">Новы кантрольны спіс</string>
|
||||
<string name="cannot_load_over_internet">The app cannot load files over the internet</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">Адкрыць файл</string>
|
||||
<string name="export_as_file">Экспарт у файл</string>
|
||||
<string name="file_too_large">Файл занадта вялікі, абмежаванне складае 1 МБ</string>
|
||||
@@ -42,7 +39,6 @@
|
||||
<string name="note_exported_successfully">Нататка \"%s\" паспяхова экспартавана</string>
|
||||
<string name="only_export_file_content">Экспартаваць толькі бягучае змесціва файла
|
||||
\n(змена нататкі не паўплывае на файл)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">Паказаць паведамленні аб паспяховым захаванні</string>
|
||||
<string name="links_and_emails_clickable">Рабіць спасылкі і адрасы электроннай пошты націскальнымі</string>
|
||||
<string name="place_cursor_end">Змяшчаць курсор у канец нататкі</string>
|
||||
@@ -61,24 +57,16 @@
|
||||
<string name="use_incognito_mode">Выкарыстоўваць рэжым інкогніта для клавіятуры</string>
|
||||
<string name="move_done_checklist_items">Перамяшчаць выкананыя пункты ў канец кантрольнага спіса</string>
|
||||
<string name="add_new_checklist_items_top">Дадаваць новыя пункты ў пачатак кантрольнага спіса</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">Кантрольны спіс</string>
|
||||
<string name="checklists">Кантрольныя спісы</string>
|
||||
<string name="add_new_checklist_item">Дадаць пункт у кантрольны спіс</string>
|
||||
<string name="add_new_checklist_items">Дадаць пункты ў кантрольны спіс</string>
|
||||
<string name="checklist_is_empty">Кантрольны спіс пусты</string>
|
||||
<string name="remove_done_items">Выдаліць выкананыя пункты</string>
|
||||
<string name="add_to_the_top">Add to the top</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">Імпартаваць папку</string>
|
||||
<string name="export_notes">Экспартаваць нататкі</string>
|
||||
<string name="import_notes">Імпартаваць нататкі</string>
|
||||
<string name="import_notes_pro">Імпартаваць нататкі (Pro)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">Як змяніць колер віджэта\?</string>
|
||||
<string name="faq_1_text">Калі ў вас ёсць толькі 1 Актыўны віджэт, вы можаце альбо ўзнавіць яго зноўку, альбо выкарыстоўваць кнопку ў наладах прыкладання для яго Налады. Калі ў вас некалькі актыўных віджэтаў, кнопка ў наладах прыкладання будзе недаступная. Паколькі прыкладанне падтрымлівае наладу колеру для кожнага фішкі, вам прыйдзецца ўзнавіць віджэт, які вы хочаце наладзіць.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
@@ -1,7 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_launcher_name">Бележки</string>
|
||||
<string name="widget_config">Thank you for using Fossify Notes.\nFor more apps from Fossify, please visit fossify.org.</string>
|
||||
<string name="cannot_share_empty_text">Не може да се споделя празен текст</string>
|
||||
<string name="new_note">Добави нова бележка</string>
|
||||
<string name="no_title">Моля, наречете бележката си</string>
|
||||
@@ -29,7 +28,6 @@
|
||||
<string name="new_text_note">Нова текстова бележка</string>
|
||||
<string name="new_checklist">Нов контролен списък</string>
|
||||
<string name="cannot_load_over_internet">Приложението не може да зарежда файлове през интернет</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">Отвори файл</string>
|
||||
<string name="export_as_file">Експортиране като файл</string>
|
||||
<string name="file_too_large">Файлът е твърде голям, ограничението е 1MB</string>
|
||||
@@ -42,7 +40,6 @@
|
||||
<string name="note_exported_successfully">Забележка: \"%s\" експортира успешно</string>
|
||||
<string name="only_export_file_content">Експортирайте само текущото съдържание на файла
|
||||
\n(промяната на бележката няма да се отрази на файла)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">Показване на съобщения за успешно записване</string>
|
||||
<string name="links_and_emails_clickable">Направете връзките и имейлите кликаеми</string>
|
||||
<string name="place_cursor_end">Поставете курсора до края на бележката</string>
|
||||
@@ -61,24 +58,16 @@
|
||||
<string name="use_incognito_mode">Използване на режим \"Инкогнито\" на клавиатурите</string>
|
||||
<string name="move_done_checklist_items">Преместване на готовите елементи от контролния списък в долната част</string>
|
||||
<string name="add_new_checklist_items_top">Добавяне на нови елементи от контролния списък в горната част</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">Контролен списък</string>
|
||||
<string name="checklists">Контролни списъци</string>
|
||||
<string name="add_new_checklist_item">Добавяне на нов елемент от контролния списък</string>
|
||||
<string name="add_new_checklist_items">Добавяне на нови елементи към контролен списък</string>
|
||||
<string name="checklist_is_empty">Контролният списък е празен</string>
|
||||
<string name="remove_done_items">Премахване на готови елементи</string>
|
||||
<string name="add_to_the_top">Add to the top</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">Папка за импортиране</string>
|
||||
<string name="export_notes">Експортиране на бележките</string>
|
||||
<string name="import_notes">Бележки за внос</string>
|
||||
<string name="import_notes_pro">Бележки за внос (Pro)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">Как мога да променя цвета на приспособлението\?</string>
|
||||
<string name="faq_1_text">В случай че имате само 1 активна джаджа, можете да я създадете отново или да използвате бутона в настройките на приложението за персонализирането ѝ. Ако имате няколко активни уиджета, бутонът в настройките на приложението няма да бъде достъпен. Тъй като приложението поддържа персонализиране на цвета за всяка джаджа, ще трябва да пресъздадете джаджата, която искате да персонализирате.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
@@ -1,7 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_launcher_name">Notes</string>
|
||||
<string name="widget_config">Thank you for using Fossify Notes.\nFor more apps from Fossify, please visit fossify.org.</string>
|
||||
<string name="cannot_share_empty_text">No es pot compartir un text buit</string>
|
||||
<string name="new_note">Afegeix una nota nova</string>
|
||||
<string name="no_title">Si us plau, anomeneu la vostra nota</string>
|
||||
@@ -29,7 +27,6 @@
|
||||
<string name="new_text_note">Nota de text nova</string>
|
||||
<string name="new_checklist">Llista de comprovació nova</string>
|
||||
<string name="cannot_load_over_internet">L\'aplicació no pot carregar fitxers per Internet</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">Obre un fitxer</string>
|
||||
<string name="export_as_file">Exporta com a fitxer</string>
|
||||
<string name="file_too_large">El fitxer és massa gran, el límit és d\'1 MB</string>
|
||||
@@ -42,7 +39,6 @@
|
||||
<string name="note_exported_successfully">La nota «%s» s\'ha exportat correctament</string>
|
||||
<string name="only_export_file_content">Exporta només el contingut del fitxer actual
|
||||
\n(canviar la nota no afectarà el fitxer)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">Mostra els missatges de desament correcte</string>
|
||||
<string name="links_and_emails_clickable">Fes que els enllaços i correus electrònics s\'hi pugui fer clic</string>
|
||||
<string name="place_cursor_end">Col·loca el cursor al final de la nota</string>
|
||||
@@ -61,24 +57,16 @@
|
||||
<string name="use_incognito_mode">Utilitza el mode d\'incògnit dels teclats</string>
|
||||
<string name="move_done_checklist_items">Mou els elements fets de la llista de comprovació a la part inferior</string>
|
||||
<string name="add_new_checklist_items_top">Afegeix els elements nous de la llista de comprovació a la part superior</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">Llista de comprovació</string>
|
||||
<string name="checklists">Llistes de comprovació</string>
|
||||
<string name="add_new_checklist_item">Afegeix un element nou de la llista de comprovació</string>
|
||||
<string name="add_new_checklist_items">Afegeix elements nous de la llista de comprovació</string>
|
||||
<string name="checklist_is_empty">La llista de comprovació és buida</string>
|
||||
<string name="remove_done_items">Elimina els elements fets</string>
|
||||
<string name="add_to_the_top">Add to the top</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">Importa una carpeta</string>
|
||||
<string name="export_notes">Exporta notes</string>
|
||||
<string name="import_notes">Importa notes</string>
|
||||
<string name="import_notes_pro">Importa notes (Pro)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">Com puc canviar el color dels ginys\?</string>
|
||||
<string name="faq_1_text">En cas que només tingueu 1 giny actiu, podeu tornar-lo a crear o utilitzar el botó de configuració de l\'aplicació per personalitzar-lo. Si teniu diversos ginys actius, el botó de configuració de l\'aplicació no estarà disponible. Com que l\'aplicació admet la personalització del color per giny, haureu de tornar a crear el giny que vulgueu personalitzar.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
@@ -1,7 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_launcher_name">Poznámky</string>
|
||||
<string name="widget_config">Thank you for using Fossify Notes.\nFor more apps from Fossify, please visit fossify.org.</string>
|
||||
<string name="cannot_share_empty_text">Nelze sdílet prázdný text</string>
|
||||
<string name="new_note">Přidat novou poznámku</string>
|
||||
<string name="no_title">Prosím, pojmenujte poznámku</string>
|
||||
@@ -29,7 +28,6 @@
|
||||
<string name="new_text_note">Nová textová poznámka</string>
|
||||
<string name="new_checklist">Nový seznam položek</string>
|
||||
<string name="cannot_load_over_internet">Tato aplikace nemůže načítat soubory přes internet</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">Otevřít soubor</string>
|
||||
<string name="export_as_file">Exportovat jako soubor</string>
|
||||
<string name="file_too_large">Soubor je příliš velký, limit je 1MB</string>
|
||||
@@ -42,7 +40,6 @@
|
||||
<string name="note_exported_successfully">Poznámka „%s“ byla úspěšně exportována</string>
|
||||
<string name="only_export_file_content">Pouze exportovat současný obsah souboru
|
||||
\n(úprava poznámky nebude mít vliv na soubor)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">Zobrazit zprávu o úspěšném uložení poznámky</string>
|
||||
<string name="links_and_emails_clickable">Dělat odkazy a e-maily kliknutelnými</string>
|
||||
<string name="place_cursor_end">Umístit kurzor na konec poznámky</string>
|
||||
@@ -61,24 +58,16 @@
|
||||
<string name="use_incognito_mode">Použít „inkognito mód“ klávesnic</string>
|
||||
<string name="move_done_checklist_items">Přesunout splněné položky seznamu dospodu</string>
|
||||
<string name="add_new_checklist_items_top">Přidávat nové položky seznamu nahoru</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">Seznam položek</string>
|
||||
<string name="checklists">Seznamy položek</string>
|
||||
<string name="add_new_checklist_item">Přidat do seznamu novou položku</string>
|
||||
<string name="add_new_checklist_items">Přidat do seznamu nové položky</string>
|
||||
<string name="checklist_is_empty">Seznam položek je prázdný</string>
|
||||
<string name="remove_done_items">Odstranit splněné položky seznamu</string>
|
||||
<string name="add_to_the_top">Add to the top</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">Importovat složku</string>
|
||||
<string name="export_notes">Exportovat poznámky</string>
|
||||
<string name="import_notes">Importovat poznámky</string>
|
||||
<string name="import_notes_pro">Importovat poznámky (Pro)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">Jak mohu změnit barvu widgetů\?</string>
|
||||
<string name="faq_1_text">V případě, že máte pouze 1 aktivní widget, můžete jej buď znovu vytvořit, nebo použít tlačítko v nastavení aplikace na změnu barvy. Pokud máte widgetů víc, tlačítko v nastavení aplikace zmizí. Protože aplikace podporuje různé barvy pro každý widget, budete muset znovu vytvořit ten widget, jehož barvy chcete změnit.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
@@ -1,7 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_launcher_name">Nodiadau</string>
|
||||
<string name="widget_config">Thank you for using Fossify Notes.\nFor more apps from Fossify, please visit fossify.org.</string>
|
||||
<string name="cannot_share_empty_text">Methu rhannu testun gwag</string>
|
||||
<string name="new_note">Ychwanegu nodyn newydd</string>
|
||||
<string name="no_title">Rho enw i dy nodyn</string>
|
||||
@@ -16,20 +15,8 @@
|
||||
<string name="add_to_note">Ychwanegu at nodyn</string>
|
||||
<string name="unsaved_changes_warning">Mae gennyt rai newidiadau heb eu cadw. Beth wyt ti am wneud gyda nhw\?</string>
|
||||
<string name="note_shown_widget">Nodyn a ddangosir yn y teclyn:</string>
|
||||
<string name="show_note_title">Show note title</string>
|
||||
<string name="new_note_type">Math y nodyn newydd:</string>
|
||||
<string name="text_note">Nodyn testun</string>
|
||||
<string name="lock_note">Lock note</string>
|
||||
<string name="unlock_note">Unlock note</string>
|
||||
<string name="unlock_notes">Unlock notes</string>
|
||||
<string name="found_locked_notes_info">The following notes are locked. You can either unlock them one by one or skip exporting them.</string>
|
||||
<string name="note_content_locked">The notes\' content is locked.</string>
|
||||
<string name="show_content">Show content</string>
|
||||
<string name="locking_warning">WARNING: If you forget the notes\' password, you won\'t be able to recover it or access the notes\' content anymore.</string>
|
||||
<string name="new_text_note">New text note</string>
|
||||
<string name="new_checklist">New checklist</string>
|
||||
<string name="cannot_load_over_internet">The app cannot load files over the internet</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">Agor ffeil</string>
|
||||
<string name="export_as_file">Allforio fel ffeil</string>
|
||||
<string name="file_too_large">Ffeil yn rhy fawr. Ni all fod yn fwy na 1MB</string>
|
||||
@@ -42,14 +29,12 @@
|
||||
<string name="note_exported_successfully">Allforiwyd nodyn \"%s\" yn llwyddiannus</string>
|
||||
<string name="only_export_file_content">Allforio cynnwys y ffeil cyfredol yn unig
|
||||
\n(ni fydd newid y nodyn yn effeithio ar y ffeil)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">Dangos negeseuon yn cadarnhau cadw\'n llwyddiannus</string>
|
||||
<string name="links_and_emails_clickable">Gwneud dolenni a chyfeiriadau ebost yn glicadwy</string>
|
||||
<string name="place_cursor_end">Gosod y pwyntydd ar ddiwedd y nodyn</string>
|
||||
<string name="monospaced_font">Defnyddio ffont monofwlch</string>
|
||||
<string name="show_keyboard">Dangos y bysellfwrdd wrth ddechrau</string>
|
||||
<string name="show_word_count">Dangos cyfrif geiriau</string>
|
||||
<string name="show_character_count">Show character count</string>
|
||||
<string name="alignment">Aliniad</string>
|
||||
<string name="left">Chwith</string>
|
||||
<string name="center">Canol</string>
|
||||
@@ -59,26 +44,10 @@
|
||||
<string name="autosave_notes">Awto-gadw nodiadau</string>
|
||||
<string name="enable_line_wrap">Galluogi amlapio llinellau</string>
|
||||
<string name="use_incognito_mode">Defnyddio modd cyfrinachol bysellfyrddau</string>
|
||||
<string name="move_done_checklist_items">Move done checklist items to the bottom</string>
|
||||
<string name="add_new_checklist_items_top">Add new checklist items at the top</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">Rhestr wirio</string>
|
||||
<string name="checklists">Checklists</string>
|
||||
<string name="add_new_checklist_item">Ychwanegu eitem newydd at restr wirio</string>
|
||||
<string name="add_new_checklist_items">Ychwanegu eitemau newydd at restr wirio</string>
|
||||
<string name="checklist_is_empty">Mae\'r rhestr wirio yn wag</string>
|
||||
<string name="remove_done_items">Remove done items</string>
|
||||
<string name="add_to_the_top">Add to the top</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">Mewnforio ffolder</string>
|
||||
<string name="export_notes">Export notes</string>
|
||||
<string name="import_notes">Import notes</string>
|
||||
<string name="import_notes_pro">Import notes (Pro)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">How can I change the widgets color\?</string>
|
||||
<string name="faq_1_text">In case you have only 1 active widget, you can either recreate it, or use the button in the app settings for customizing it. If you have multiple active widgets, the button in the app settings will not be available. As the app supports color customization per-widget, you will have to recreate the widget that you want to customize.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
@@ -1,7 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_launcher_name">Noter</string>
|
||||
<string name="widget_config">Thank you for using Fossify Notes.\nFor more apps from Fossify, please visit fossify.org.</string>
|
||||
<string name="cannot_share_empty_text">Kan ikke dele tom tekst</string>
|
||||
<string name="new_note">Tilføj en ny note</string>
|
||||
<string name="no_title">Navngiv din note</string>
|
||||
@@ -28,8 +27,6 @@
|
||||
<string name="locking_warning">ADVARSEL: Hvis du glemmer noternes adgangskode, kan du ikke gendanne den eller få adgang til noternes indhold længere.</string>
|
||||
<string name="new_text_note">Ny tekstnote</string>
|
||||
<string name="new_checklist">Ny tjekliste</string>
|
||||
<string name="cannot_load_over_internet">The app cannot load files over the internet</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">Åbn fil</string>
|
||||
<string name="export_as_file">Eksporter som fil</string>
|
||||
<string name="file_too_large">Filen er for stor, den må højst fylde 1MB</string>
|
||||
@@ -42,7 +39,6 @@
|
||||
<string name="note_exported_successfully">Noten \"%s\" er eksporteret</string>
|
||||
<string name="only_export_file_content">Eksporter kun filens indhold
|
||||
\n(ændring af noten påvirker ikke filen</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">Vis en meddelelse når en fil er gemt</string>
|
||||
<string name="links_and_emails_clickable">Gør links og mailadresser klikbare</string>
|
||||
<string name="place_cursor_end">Placer markøren i slutningen af noten</string>
|
||||
@@ -61,7 +57,6 @@
|
||||
<string name="use_incognito_mode">Anvend inkognito-tilstand til tastatur</string>
|
||||
<string name="move_done_checklist_items">Flyt udførte tjeklistepunkter til bunden</string>
|
||||
<string name="add_new_checklist_items_top">Tilføj nye tjeklistepunkter øverst</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">Tjekliste</string>
|
||||
<string name="checklists">Tjeklister</string>
|
||||
<string name="add_new_checklist_item">Føj et nyt punkt til tjeklisten</string>
|
||||
@@ -69,16 +64,10 @@
|
||||
<string name="checklist_is_empty">Tjeklisten er tom</string>
|
||||
<string name="remove_done_items">Fjern udførte elementer</string>
|
||||
<string name="add_to_the_top">Føj til toppen</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">Importer mappe</string>
|
||||
<string name="export_notes">Eksporter alle noter</string>
|
||||
<string name="import_notes">Importer noter</string>
|
||||
<string name="import_notes_pro">Importer noter (Pro)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">Hvordan kan jeg ændre widget\'ens farve\?</string>
|
||||
<string name="faq_1_text">Hvis du kun har en aktiv widget, kan du enten genskabe den eller bruge knappen i appindstillingerne til at tilpasse den. Hvis du har flere aktive widgets, er knappen i appindstillingerne ikke tilgængelig. Da appen understøtter farvetilpasning pr. widget, skal du genskabe den widget, som du vil tilpasse.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
@@ -30,7 +30,6 @@
|
||||
<string name="new_text_note">Neue Textnotiz</string>
|
||||
<string name="new_checklist">Neue Checkliste</string>
|
||||
<string name="cannot_load_over_internet">Die App kann keine Dateien über das Internet laden</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">Datei öffnen</string>
|
||||
<string name="export_as_file">Als Datei exportieren</string>
|
||||
<string name="file_too_large">Die Datei ist zu groß, die Grenze liegt bei 1 MB</string>
|
||||
@@ -43,7 +42,6 @@
|
||||
<string name="note_exported_successfully">Notiz „%s“ erfolgreich exportiert</string>
|
||||
<string name="only_export_file_content">Nur den aktuellen Dateiinhalt exportieren
|
||||
\n(Das Verändern der Notiz wird die Datei nicht beeinflussen)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">Bei erfolgreichem Speichern Benachrichtigung anzeigen</string>
|
||||
<string name="links_and_emails_clickable">Links und E-Mail-Adressen anklickbar</string>
|
||||
<string name="place_cursor_end">Cursor an das Ende der Notiz setzen</string>
|
||||
@@ -62,7 +60,6 @@
|
||||
<string name="use_incognito_mode">Inkognitomodus von Tastaturen verwenden</string>
|
||||
<string name="move_done_checklist_items">Erledigte Checklistenpunkte ans Ende verschieben</string>
|
||||
<string name="add_new_checklist_items_top">Neue Checklistenpunkte am Anfang hinzufügen</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">Checkliste</string>
|
||||
<string name="checklists">Checklisten</string>
|
||||
<string name="add_new_checklist_item">Einen neuen Checklistenpunkt hinzufügen</string>
|
||||
@@ -70,16 +67,10 @@
|
||||
<string name="checklist_is_empty">Die Checkliste ist leer</string>
|
||||
<string name="remove_done_items">Erledigte Punkte entfernen</string>
|
||||
<string name="add_to_the_top">Zum Anfang hinzufügen</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">Ordner importieren</string>
|
||||
<string name="export_notes">Notizen exportieren</string>
|
||||
<string name="import_notes">Notizen importieren</string>
|
||||
<string name="import_notes_pro">Notizen importieren (Pro)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">Wie kann ich die Farbe der Widgets ändern\?</string>
|
||||
<string name="faq_1_text">Wenn nur ein Widget aktiv ist, kann die Farbe über die Einstellungen unter dem Punkt Widgets angepasst werden, ansonsten muss es neu erstellt werden.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
@@ -1,7 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_launcher_name">Σημείωση</string>
|
||||
<string name="widget_config">Thank you for using Fossify Notes.\nFor more apps from Fossify, please visit fossify.org.</string>
|
||||
<string name="cannot_share_empty_text">Αδύνατη η κοινή χρήση κενού κειμένου</string>
|
||||
<string name="new_note">Προσθήκη νέας σημείωσης</string>
|
||||
<string name="no_title">Δώστε όνομα στη σημείωσή σας</string>
|
||||
@@ -29,7 +28,6 @@
|
||||
<string name="new_text_note">Νέα σημείωση κειμένου</string>
|
||||
<string name="new_checklist">Νέα λίστα ελέγχου</string>
|
||||
<string name="cannot_load_over_internet">Η εφαρμογή δεν μπορεί να φορτώσει αρχεία μέσω διαδικτύου</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">Άνοιγμα αρχείου</string>
|
||||
<string name="export_as_file">Εξαγωγή ως αρχείο</string>
|
||||
<string name="file_too_large">Το αρχείο είναι πολύ μεγάλο, το όριο είναι 1MB</string>
|
||||
@@ -42,7 +40,6 @@
|
||||
<string name="note_exported_successfully">Η εξαγωγή \"%s\" ολοκληρώθηκε με επιτυχία</string>
|
||||
<string name="only_export_file_content">Εξαγωγή μόνο του περιεχομένου του τρέχοντος αρχείου
|
||||
\n(η αλλαγή της σημείωσης δεν θα επηρεάσει το αρχείο)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">Εμφάνιση μηνυμάτων επιτυχούς αποθήκευσης</string>
|
||||
<string name="links_and_emails_clickable">Δυνατότητα επιλογής συνδέσμων και email</string>
|
||||
<string name="place_cursor_end">Τοποθέτηση δρομέα στο τέλος της σημείωσης</string>
|
||||
@@ -61,7 +58,6 @@
|
||||
<string name="use_incognito_mode">Χρήση λειτουργίας πληκτ/γιου Incognito</string>
|
||||
<string name="move_done_checklist_items">Μετακίνηση ανεπιτυχών λίστας ελέγχου στην κορυφή</string>
|
||||
<string name="add_new_checklist_items_top">Προσθήκη νέων στοιχείων λίστας ελέγχου στην κορυφή</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">Λίστα ελέγχου</string>
|
||||
<string name="checklists">Λίστες ελέγχου</string>
|
||||
<string name="add_new_checklist_item">Προσθήκη νέου στοιχείου λίστας ελέγχου</string>
|
||||
@@ -69,16 +65,10 @@
|
||||
<string name="checklist_is_empty">Η λίστα ελέγχου είναι κενή</string>
|
||||
<string name="remove_done_items">Κατάργηση ολοκληρωμένων στοιχείων</string>
|
||||
<string name="add_to_the_top">Προσθήκη στην κορυφή</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">Εισαγωγή φακέλου</string>
|
||||
<string name="export_notes">Εξαγωγή όλων των σημειώσεων</string>
|
||||
<string name="import_notes">Εισαγωγή σημειώσεων</string>
|
||||
<string name="import_notes_pro">Εισαγωγή σημειώσεων (Pro)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">Πώς μπορώ να αλλάξω το χρώμα των γραφικών στοιχείων;</string>
|
||||
<string name="faq_1_text">Σε περίπτωση που έχετε μόνο 1 ενεργό Γραφικό στοιχείο, μπορείτε να το δημιουργήσετε εκ νέου ή να χρησιμοποιήσετε το κουμπί στις ρυθμίσεις της εφαρμογής για να το προσαρμόσετε. Αν έχετε πολλά ενεργά , το κουμπί στις ρυθμίσεις της εφαρμογής δεν θα είναι διαθέσιμο. Καθώς η εφαρμογή υποστηρίζει προσαρμογή χρώματος ανά Γραφικό στοιχείο, θα πρέπει να το δημιουργήσετε ξανά αυτό που θέλετε να προσαρμόσετε.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
@@ -1,11 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_launcher_name">Notoj</string>
|
||||
<string name="widget_config">Thank you for using Fossify Notes.\nFor more apps from Fossify, please visit fossify.org.</string>
|
||||
<string name="cannot_share_empty_text">Cannot share empty text</string>
|
||||
<string name="new_note">Krei novan noton</string>
|
||||
<string name="no_title">Please name your note</string>
|
||||
<string name="title_taken">A note with that title already exists</string>
|
||||
<string name="open_note">Malfermi noton</string>
|
||||
<string name="delete_note">Forviŝi noton</string>
|
||||
<string name="delete_note_prompt_message">Ĉu vi certe volas forviŝi la noton «%s»\?</string>
|
||||
@@ -13,72 +9,24 @@
|
||||
<string name="rename_note">Ŝanĝi la nomon de noto</string>
|
||||
<string name="general_note">Ĝenerala noto</string>
|
||||
<string name="create_new_note">Krei novan noton</string>
|
||||
<string name="add_to_note">Add to note</string>
|
||||
<string name="unsaved_changes_warning">You have some unsaved changes. What do you want to do with them\?</string>
|
||||
<string name="note_shown_widget">Note shown in the widget:</string>
|
||||
<string name="show_note_title">Montri titolo de noto</string>
|
||||
<string name="new_note_type">Speco de nova noto:</string>
|
||||
<string name="text_note">Teksta noto</string>
|
||||
<string name="lock_note">Ŝlosi noton</string>
|
||||
<string name="unlock_note">Malŝlosi noton</string>
|
||||
<string name="unlock_notes">Unlock notes</string>
|
||||
<string name="found_locked_notes_info">The following notes are locked. You can either unlock them one by one or skip exporting them.</string>
|
||||
<string name="note_content_locked">The notes\' content is locked.</string>
|
||||
<string name="show_content">Montri enhavon</string>
|
||||
<string name="locking_warning">WARNING: If you forget the notes\' password, you won\'t be able to recover it or access the notes\' content anymore.</string>
|
||||
<string name="new_text_note">New text note</string>
|
||||
<string name="new_checklist">New checklist</string>
|
||||
<string name="cannot_load_over_internet">The app cannot load files over the internet</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">Malfermi dosieron</string>
|
||||
<string name="export_as_file">Export as file</string>
|
||||
<string name="file_too_large">File too large, the limit is 1MB</string>
|
||||
<string name="only_import_file_content">Only import the file content
|
||||
\n(changing the file will not affect the note)</string>
|
||||
<string name="update_file_at_note">Update the file itself at updating the note
|
||||
\n(note gets deleted if file gets deleted, or path changes)</string>
|
||||
<string name="delete_file_itself">Also delete file \"%s\"</string>
|
||||
<string name="note_saved_successfully">Note \"%s\" saved successfully</string>
|
||||
<string name="note_exported_successfully">Note \"%s\" exported successfully</string>
|
||||
<string name="only_export_file_content">Only export the current file content
|
||||
\n(changing the note will not affect the file)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">Display save success messages</string>
|
||||
<string name="links_and_emails_clickable">Make links and emails clickable</string>
|
||||
<string name="place_cursor_end">Place cursor to the end of note</string>
|
||||
<string name="monospaced_font">Use monospaced font</string>
|
||||
<string name="show_keyboard">Show keyboard on startup</string>
|
||||
<string name="show_word_count">Montri nombron de vortoj</string>
|
||||
<string name="show_character_count">Montri nombron de skribsignoj</string>
|
||||
<string name="alignment">Alignment</string>
|
||||
<string name="left">Maldekstro</string>
|
||||
<string name="center">Centro</string>
|
||||
<string name="right">Dekstro</string>
|
||||
<string name="widget_note">Note used in widget</string>
|
||||
<string name="show_note_picker">Show a note picker on startup</string>
|
||||
<string name="autosave_notes">Autosave notes</string>
|
||||
<string name="enable_line_wrap">Enable line wrap</string>
|
||||
<string name="use_incognito_mode">Use Incognito mode of keyboards</string>
|
||||
<string name="move_done_checklist_items">Move done checklist items to the bottom</string>
|
||||
<string name="add_new_checklist_items_top">Add new checklist items at the top</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">Checklist</string>
|
||||
<string name="checklists">Checklists</string>
|
||||
<string name="add_new_checklist_item">Add a new checklist item</string>
|
||||
<string name="add_new_checklist_items">Add new checklist items</string>
|
||||
<string name="checklist_is_empty">The checklist is empty</string>
|
||||
<string name="remove_done_items">Remove done items</string>
|
||||
<string name="add_to_the_top">Add to the top</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">Import folder</string>
|
||||
<string name="export_notes">Export notes</string>
|
||||
<string name="import_notes">Import notes</string>
|
||||
<string name="import_notes_pro">Import notes (Pro)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">How can I change the widgets color\?</string>
|
||||
<string name="faq_1_text">In case you have only 1 active widget, you can either recreate it, or use the button in the app settings for customizing it. If you have multiple active widgets, the button in the app settings will not be available. As the app supports color customization per-widget, you will have to recreate the widget that you want to customize.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
@@ -1,7 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_launcher_name">Notas</string>
|
||||
<string name="widget_config">Thank you for using Fossify Notes.\nFor more apps from Fossify, please visit fossify.org.</string>
|
||||
<string name="cannot_share_empty_text">No se puede compartir una nota vacía</string>
|
||||
<string name="new_note">Añadir una nueva nota</string>
|
||||
<string name="no_title">Por favor, asigne un nombre a la nota</string>
|
||||
@@ -29,7 +28,6 @@
|
||||
<string name="new_text_note">Nueva nota de texto</string>
|
||||
<string name="new_checklist">Nueva lista de tareas</string>
|
||||
<string name="cannot_load_over_internet">La aplicación no puede cargar archivos a través de Internet</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">Abrir archivo</string>
|
||||
<string name="export_as_file">Exportar como archivo</string>
|
||||
<string name="file_too_large">Archivo demasiado grande, el límite es 1MB</string>
|
||||
@@ -42,7 +40,6 @@
|
||||
<string name="note_exported_successfully">Nota \"%s\" exportada con éxito</string>
|
||||
<string name="only_export_file_content">Solo exportar el contenido del archivo actual
|
||||
\n(Modificar la nota no afectará el archivo)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">Mostrar mensajes de guardado con éxito</string>
|
||||
<string name="links_and_emails_clickable">Mostrar enlaces y direcciones de correo como seleccionables</string>
|
||||
<string name="place_cursor_end">Colocar el cursor al final de la nota</string>
|
||||
@@ -61,24 +58,15 @@
|
||||
<string name="use_incognito_mode">Usar modo incógnito de los teclados</string>
|
||||
<string name="move_done_checklist_items">Mover ítems completados al final de la lista</string>
|
||||
<string name="add_new_checklist_items_top">Añade nuevos elementos a la parte superior de la lista de control</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">Lista</string>
|
||||
<string name="checklists">Listas de control</string>
|
||||
<string name="add_new_checklist_item">Añadir un nuevo ítem a la lista</string>
|
||||
<string name="add_new_checklist_items">Añadir nuevos ítems a la lista</string>
|
||||
<string name="checklist_is_empty">La lista está vacía</string>
|
||||
<string name="remove_done_items">Borrar ítems completados</string>
|
||||
<string name="add_to_the_top">Add to the top</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">Importar carpeta</string>
|
||||
<string name="export_notes">Exportar las notas</string>
|
||||
<string name="import_notes">Import notes</string>
|
||||
<string name="import_notes_pro">Importar notas (Pro)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">¿Cómo puedo cambiar los colores del widget\?</string>
|
||||
<string name="faq_1_text">En caso de que solo tengas un widget activo, Puedes volverlo a crear, o usar el botón en los ajustes de la aplicación para personalziarlo. Si tienes múltiples widgets activos, el botón en los ajustes de la aplicación no estará disponible. Ya que la aplicación soporta personalización de color por widget, tendrás que volver a crear el widget tque quieres personalizar.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
@@ -1,7 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_launcher_name">Märkmik</string>
|
||||
<string name="widget_config">Thank you for using Fossify Notes.\nFor more apps from Fossify, please visit fossify.org.</string>
|
||||
<string name="cannot_share_empty_text">Tühja sisu ei saa jagada</string>
|
||||
<string name="new_note">Lisa uus märge</string>
|
||||
<string name="no_title">Palun pane oma märkele nimi</string>
|
||||
@@ -29,7 +28,6 @@
|
||||
<string name="new_text_note">Uus tekstimärge</string>
|
||||
<string name="new_checklist">Uus tööde loend</string>
|
||||
<string name="cannot_load_over_internet">See rakendus ei saa laadida faile internetist</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">Ava fail</string>
|
||||
<string name="export_as_file">Ekspordi failina</string>
|
||||
<string name="file_too_large">Faili suurus ületab lubatud 1MB piiri</string>
|
||||
@@ -42,7 +40,6 @@
|
||||
<string name="note_exported_successfully">„%s“ märkme eksportimine õnnestus</string>
|
||||
<string name="only_export_file_content">Ekspordi vaid praeguse faili sisu
|
||||
\n(märkme muutmine ei mõjuta faili)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">Näita teateid salvestamise õnnestumise kohta</string>
|
||||
<string name="links_and_emails_clickable">Tee lingid ja e-posti aadressid klikatavaks</string>
|
||||
<string name="place_cursor_end">Aseta kursor märkme lõppu</string>
|
||||
@@ -61,7 +58,6 @@
|
||||
<string name="use_incognito_mode">Kasuta klaviatuuride inkognito-režiimi</string>
|
||||
<string name="move_done_checklist_items">Tööde loendis liiguta täidetud ülesanded loendi lõppu</string>
|
||||
<string name="add_new_checklist_items_top">Lisa uued kirjed tööde loendi algusesse</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">Tööde loend</string>
|
||||
<string name="checklists">Tööde loendid</string>
|
||||
<string name="add_new_checklist_item">Lisa tööde loendisse uus kirje</string>
|
||||
@@ -69,16 +65,10 @@
|
||||
<string name="checklist_is_empty">Tööde loend on tühi</string>
|
||||
<string name="remove_done_items">Kustuta tehtuks märgitud kirjed</string>
|
||||
<string name="add_to_the_top">Lisa ülaossa</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">Impordi kaust</string>
|
||||
<string name="export_notes">Ekspordi märkmed</string>
|
||||
<string name="import_notes">Impordi märkmed</string>
|
||||
<string name="import_notes_pro">Impordi märkmed (Pro)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">Kuidas ma saan muuta vidinate värvi\?</string>
|
||||
<string name="faq_1_text">Kui sa kasutad vaid üht vidinat, siis kas saad ta uuesti luua või kasutada rakenduse seadistusi värvide kohandamiseks. Kui sul on pidevas kasutuses mitu vidinat, siis rakenduste seadistuste nupp ei toimi. Kuna rakendus võimaldab eri vidinatele määrata erinevaid värve, siis sa pead muudetava vidina uuesti looma.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
@@ -1,7 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_launcher_name">یادداشت</string>
|
||||
<string name="widget_config">Thank you for using Fossify Notes.\nFor more apps from Fossify, please visit fossify.org.</string>
|
||||
<string name="cannot_share_empty_text">نمیتوان متن خالی را اشتراک گذاشت</string>
|
||||
<string name="new_note">افزودن یادداشت جدید</string>
|
||||
<string name="no_title">لطفا نام یادداشت خود را بنویسید</string>
|
||||
@@ -21,15 +20,9 @@
|
||||
<string name="text_note">یادداشت متنی</string>
|
||||
<string name="lock_note">قفل کردن یادداشت</string>
|
||||
<string name="unlock_note">باز کردن قفل یادداشت</string>
|
||||
<string name="unlock_notes">Unlock notes</string>
|
||||
<string name="found_locked_notes_info">The following notes are locked. You can either unlock them one by one or skip exporting them.</string>
|
||||
<string name="note_content_locked">محتویات یادداشت، قفل است</string>
|
||||
<string name="show_content">نمایش محتویات</string>
|
||||
<string name="locking_warning">هشدار: اگر گذرواژهٔ یادداشت را فراموش کنید، دیگر قادر به بازیابی آن یا دسترسی به محتویات یادداشت نیستید.</string>
|
||||
<string name="new_text_note">New text note</string>
|
||||
<string name="new_checklist">New checklist</string>
|
||||
<string name="cannot_load_over_internet">The app cannot load files over the internet</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">بازکردن پرونده</string>
|
||||
<string name="export_as_file">برونریزی به عنوان پرونده</string>
|
||||
<string name="file_too_large">پرونده بسیار بزرگ است، محدودیت ۱ مگابایت است</string>
|
||||
@@ -42,7 +35,6 @@
|
||||
<string name="note_exported_successfully">یادداشت \"%s\" با موفقیت برونریزی شد</string>
|
||||
<string name="only_export_file_content">فقط محتویات پروندهٔ فعلی برونریزی شد
|
||||
\n(تغییر دادن یادداشت تاثیری بر پرونده نخواهد گذاشت)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">نمایش پیام ذخیره موفق</string>
|
||||
<string name="links_and_emails_clickable">قابل کلیک کردن پیوندها و ایمیلها</string>
|
||||
<string name="place_cursor_end">قرار دادن مکاننما در انتهای یادداشت</string>
|
||||
@@ -60,25 +52,12 @@
|
||||
<string name="enable_line_wrap">فعال کردن پیچیدن خط</string>
|
||||
<string name="use_incognito_mode">استفاده از حالت ناشناس کیبوردها</string>
|
||||
<string name="move_done_checklist_items">جابهجایی موارد انجام شده فهرست نشاندار به پایین</string>
|
||||
<string name="add_new_checklist_items_top">Add new checklist items at the top</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">فهرست نشاندار</string>
|
||||
<string name="checklists">Checklists</string>
|
||||
<string name="add_new_checklist_item">افزودن یک مورد به فهرست نشاندار</string>
|
||||
<string name="add_new_checklist_items">افزودن موارد به فهرست نشاندار</string>
|
||||
<string name="checklist_is_empty">فهرست نشاندار خالی است</string>
|
||||
<string name="remove_done_items">پاک کردن موارد انجام شده</string>
|
||||
<string name="add_to_the_top">Add to the top</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">درونریزی پوشه</string>
|
||||
<string name="export_notes">Export notes</string>
|
||||
<string name="import_notes">Import notes</string>
|
||||
<string name="import_notes_pro">Import notes (Pro)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">چگونه میتوانم رنگ ابزارکها را تغییر دهم؟</string>
|
||||
<string name="faq_1_text">در این مثال شما فقط یک ابزارک فعال دارید، شما همچنین میتوانید آن را دوباره بسازید، یا از دکمه درون تنظیمات آن را سفارشیسازی کنید. اگر شما چندین ابزارک فعال دارید، دکمه درون تنظیمات در دسترس نخواهد بود. همچنان برنامه از سفارشیسازی رنگ برای هر ابزارک پشتیبانی میکند، شما خواهید توانست با ساخت دوبارهٔ ابزارک آن را سفارشیسازی کنید.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
@@ -1,7 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_launcher_name">Muistiinpanot</string>
|
||||
<string name="widget_config">Thank you for using Fossify Notes.\nFor more apps from Fossify, please visit fossify.org.</string>
|
||||
<string name="cannot_share_empty_text">Tyhjää tekstiä ei voi jakaa</string>
|
||||
<string name="new_note">Lisää uusi muistiinpano</string>
|
||||
<string name="no_title">Nimeä muistiinpanosi</string>
|
||||
@@ -21,15 +20,11 @@
|
||||
<string name="text_note">Tekstimuistiinpano</string>
|
||||
<string name="lock_note">Lukitse huomautus</string>
|
||||
<string name="unlock_note">Avaa muistiinpanon lukitus</string>
|
||||
<string name="unlock_notes">Unlock notes</string>
|
||||
<string name="found_locked_notes_info">The following notes are locked. You can either unlock them one by one or skip exporting them.</string>
|
||||
<string name="note_content_locked">Muistiinpanon sisältö on lukittu.</string>
|
||||
<string name="show_content">Näytä sisältö</string>
|
||||
<string name="locking_warning">VAROITUS: Jos unohdat muistiinpanon salasanan, sitä ei ole mahdollista palauttaa etkä pääse enää käsiksi muistiinpanoon.</string>
|
||||
<string name="new_text_note">Uusi tekstimuistiinpano</string>
|
||||
<string name="new_checklist">Uusi tarkistuslista</string>
|
||||
<string name="cannot_load_over_internet">The app cannot load files over the internet</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">Avaa tiedosto</string>
|
||||
<string name="export_as_file">Vie tiedostona</string>
|
||||
<string name="file_too_large">Tiedosto on liian suuri, raja on 1 Mt</string>
|
||||
@@ -42,7 +37,6 @@
|
||||
<string name="note_exported_successfully">Muistiinpano \"%s\" vietiin onnistuneesti</string>
|
||||
<string name="only_export_file_content">Vie vain nykyinen tiedostosisältö
|
||||
\n (muistiinpanon muuttaminen ei vaikuta tiedostoon)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">Näytä tallennus onnistunut viestit</string>
|
||||
<string name="links_and_emails_clickable">Tee linkit ja sähköpostit klikattavaksi</string>
|
||||
<string name="place_cursor_end">Aseta kohdistin muistiinpanon loppuun</string>
|
||||
@@ -61,24 +55,16 @@
|
||||
<string name="use_incognito_mode">Käytä näppäimistöjen Incognito-tilaa</string>
|
||||
<string name="move_done_checklist_items">Siirrä tekemättömät kohdat muistilistasta ylimmäksi</string>
|
||||
<string name="add_new_checklist_items_top">Lisää uusia merkattavia tehtäviä alkuun</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">Muistilista</string>
|
||||
<string name="checklists">Merkattavat listat</string>
|
||||
<string name="add_new_checklist_item">Lisää uusi kohta muistilistaan</string>
|
||||
<string name="add_new_checklist_items">Lisää uusia kohtia muistilistaan</string>
|
||||
<string name="checklist_is_empty">Muistilista on tyhjä</string>
|
||||
<string name="remove_done_items">Poista tehdyt kohdat</string>
|
||||
<string name="add_to_the_top">Add to the top</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">Tuo kansio</string>
|
||||
<string name="export_notes">Vie muistiinpanoja</string>
|
||||
<string name="import_notes">Tuo muistiinpanoja</string>
|
||||
<string name="import_notes_pro">Tuo muistiinpanoja (Pro)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">Miten vaihdan pienoissovelluksen väriä\?</string>
|
||||
<string name="faq_1_text">Jos sinulla on vain yksi aktiivinen pienoissovellus, voit joko luoda sen uudelleen tai mukauttaa sitä sovelluksen asetukset-painikkeella. Jos sinulla on useita aktiivisia pienoissovelluksia, sovelluksessa oleva asetukset-painike ei ole käytettävissä. Koska sovellus tukee värien mukauttamista pienoissovellusta kohti, sinun on luotava uudelleen pienoissovellus, jonka haluat muokata.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
@@ -1,6 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_launcher_name">Notes</string>
|
||||
<string name="widget_config">Merci d\'utiliser Fossify Notes.
|
||||
\nPour plus d\'applications de Fossify, veuillez visiter fossify.org.</string>
|
||||
<string name="cannot_share_empty_text">Impossible de partager un texte vide</string>
|
||||
@@ -30,7 +29,6 @@
|
||||
<string name="new_text_note">Nouvelle note textuelle</string>
|
||||
<string name="new_checklist">Nouvelle liste de contrôle</string>
|
||||
<string name="cannot_load_over_internet">L\'application ne peut pas charger de fichiers depuis internet</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">Ouvrir le fichier</string>
|
||||
<string name="export_as_file">Exporter dans un fichier</string>
|
||||
<string name="file_too_large">Fichier trop volumineux, la limite est de 1 Mo</string>
|
||||
@@ -43,7 +41,6 @@
|
||||
<string name="note_exported_successfully">La note « %s » a été exportée avec succès</string>
|
||||
<string name="only_export_file_content">Exporter seulement le contenu du fichier
|
||||
\n(changer le fichier n\'affectera pas la note)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">Afficher les messages de succès de sauvegarde</string>
|
||||
<string name="links_and_emails_clickable">Rendre les liens et les courriels cliquables</string>
|
||||
<string name="place_cursor_end">Placez le curseur à la fin de la note</string>
|
||||
@@ -62,7 +59,6 @@
|
||||
<string name="use_incognito_mode">Utiliser le mode incognito du claviers</string>
|
||||
<string name="move_done_checklist_items">Déplacer les éléments de liste de contrôle inachevés en-bas</string>
|
||||
<string name="add_new_checklist_items_top">Ajouter un élément de liste de contrôle en-haut</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">Liste de contrôle</string>
|
||||
<string name="checklists">Listes de contrôle</string>
|
||||
<string name="add_new_checklist_item">Ajouter un nouvel élément</string>
|
||||
@@ -70,16 +66,10 @@
|
||||
<string name="checklist_is_empty">La liste de contrôle est vide</string>
|
||||
<string name="remove_done_items">Supprimer les éléments cochés</string>
|
||||
<string name="add_to_the_top">Ajouter en haut de la liste</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">Importer depuis un dossier</string>
|
||||
<string name="export_notes">Exporter les notes</string>
|
||||
<string name="import_notes">Importer des notes</string>
|
||||
<string name="import_notes_pro">Importer des notes (Pro)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">Comment puis-je changer la couleur des widgets \?</string>
|
||||
<string name="faq_1_text">Si vous avez seulement un widget actif, vous pouvez soit le recréer, soit utiliser le bouton dans les paramètres pour le personnaliser. Si vous avez plusieurs widgets actifs, le bouton dans les paramètres ne sera pas disponible. Comme l\'application supporte la personnalisation de la couleur par widget, vous devrez recréer le widget que vous voulez personnaliser.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
@@ -1,7 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_launcher_name">Notas</string>
|
||||
<string name="widget_config">Thank you for using Fossify Notes.\nFor more apps from Fossify, please visit fossify.org.</string>
|
||||
<string name="cannot_share_empty_text">Non pode compartir un texto baleiro</string>
|
||||
<string name="new_note">Engadir unha nova nota</string>
|
||||
<string name="no_title">Déalle nome á nota</string>
|
||||
@@ -19,7 +18,6 @@
|
||||
<string name="show_note_title">Mostralo título da nota</string>
|
||||
<string name="new_note_type">Novo tipo de nota:</string>
|
||||
<string name="text_note">Nota de texto</string>
|
||||
<string name="lock_note">Lock note</string>
|
||||
<string name="unlock_note">Desbloqueala nota</string>
|
||||
<string name="unlock_notes">Desbloquear as notas</string>
|
||||
<string name="found_locked_notes_info">As seguintes notas atopanse bloqueadas. Podes desbloquealas unha por unha ou non exportalas.</string>
|
||||
@@ -28,8 +26,6 @@
|
||||
<string name="locking_warning">PERIGO: Se esqueces o contrasinal das notas, xa non poderás recuperalo nin acceder ao contido das notas.</string>
|
||||
<string name="new_text_note">Nova nota de texto</string>
|
||||
<string name="new_checklist">Nova lista de verificación</string>
|
||||
<string name="cannot_load_over_internet">The app cannot load files over the internet</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">Abrir ficheiro</string>
|
||||
<string name="export_as_file">Exportar como ficheiro</string>
|
||||
<string name="file_too_large">O ficheiro é demasiado grande, o límite é de 1 MB</string>
|
||||
@@ -42,7 +38,6 @@
|
||||
<string name="note_exported_successfully">A nota \"%s\" exportouse correctamente</string>
|
||||
<string name="only_export_file_content">Só exportar o contido do ficheiro actual
|
||||
\n(se cambias a nota, non afectará ao ficheiro)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">Mostra mensaxe de gardado correcto</string>
|
||||
<string name="links_and_emails_clickable">Fai que ligazóns e correo-e sexan premibles</string>
|
||||
<string name="place_cursor_end">Coloca o cursor ao final da nota</string>
|
||||
@@ -61,24 +56,15 @@
|
||||
<string name="use_incognito_mode">Usar o modo incógnito dos teclados</string>
|
||||
<string name="move_done_checklist_items">Mover os elementos dunha lista de verificación non rematada a arriba</string>
|
||||
<string name="add_new_checklist_items_top">Engade novos elementos da lista de verificación na parte superior</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">Lista de verificación</string>
|
||||
<string name="checklists">Listas de verificación</string>
|
||||
<string name="add_new_checklist_item">Engadir un elemento a unha nova lista de verificación</string>
|
||||
<string name="add_new_checklist_items">Engadir elementos a unha nova lista de verificación</string>
|
||||
<string name="checklist_is_empty">A lista de verificación está baleira</string>
|
||||
<string name="remove_done_items">Elimina os elementos feitos</string>
|
||||
<string name="add_to_the_top">Add to the top</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">Importar cartafoles</string>
|
||||
<string name="export_notes">Exportar notas</string>
|
||||
<string name="import_notes">Import notes</string>
|
||||
<string name="import_notes_pro">Importar notas (Pro)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">Como podo cambiala cor dos widgets\?</string>
|
||||
<string name="faq_1_text">No caso de que teñas só un widget activo, podes crealo de novo ou usar o botón nos axustes do app para personalizalo.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
@@ -1,7 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_launcher_name">Bilješke</string>
|
||||
<string name="widget_config">Thank you for using Fossify Notes.\nFor more apps from Fossify, please visit fossify.org.</string>
|
||||
<string name="cannot_share_empty_text">Nije moguće dijeliti prazan tekst</string>
|
||||
<string name="new_note">Dodaj novu bilješku</string>
|
||||
<string name="no_title">Zadaj ime za tvoju bilješku</string>
|
||||
@@ -29,7 +28,6 @@
|
||||
<string name="new_text_note">Nova tekstualna bilješka</string>
|
||||
<string name="new_checklist">Novi popis zadataka</string>
|
||||
<string name="cannot_load_over_internet">Aplikacija ne može učitati datoteke putem interneta</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">Otvori datoteku</string>
|
||||
<string name="export_as_file">Izvezi kao datoteku</string>
|
||||
<string name="file_too_large">Datoteka je prevelika, granica je 1 MB</string>
|
||||
@@ -42,7 +40,6 @@
|
||||
<string name="note_exported_successfully">Bilješka „%s” uspješno izvezena</string>
|
||||
<string name="only_export_file_content">Izvezi samo aktualni sadržaj datoteke
|
||||
\n(mijenjanje bilješke neće utjecati na datoteku)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">Prikaži poruke uspješnog spremanja</string>
|
||||
<string name="links_and_emails_clickable">Omogući pritiskanje poveznica i e-mail adresa</string>
|
||||
<string name="place_cursor_end">Postavi pokazivač na kraj bilješke</string>
|
||||
@@ -61,24 +58,16 @@
|
||||
<string name="use_incognito_mode">Koristi anonimni način tipkovnica</string>
|
||||
<string name="move_done_checklist_items">Premjesti gotove stavke popisa na kraj</string>
|
||||
<string name="add_new_checklist_items_top">Dodaj nove stavke na vrh popisa</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">Popis zadataka</string>
|
||||
<string name="checklists">Popisi zadataka</string>
|
||||
<string name="add_new_checklist_item">Dodaj novu stavku u popis zadataka</string>
|
||||
<string name="add_new_checklist_items">Dodaj novu stavku u popis zadataka</string>
|
||||
<string name="checklist_is_empty">Popis zadataka je prazan</string>
|
||||
<string name="remove_done_items">Ukloni gotove stavke</string>
|
||||
<string name="add_to_the_top">Add to the top</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">Uvezi mapu</string>
|
||||
<string name="export_notes">Izvezi bilješke</string>
|
||||
<string name="import_notes">Uvezi bilješke</string>
|
||||
<string name="import_notes_pro">Uvezi bilješke (Pro)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">Kako mogu promijeniti boju widgeta\?</string>
|
||||
<string name="faq_1_text">U slučaju da imaš samo jedan aktivan widget, možeš ga ponovno izraditi ili upotrijebiti gumb u postavkama aplikacije za njegovu prilagođavanje. Ako imaš više aktivnih widgeta, gumb u postavkama aplikacije neće biti dostupan. Budući da aplikacija podržava prilagođavanje boja po widgetu, morat ćeš ponovo izraditi widget koji želiš prilagoditi.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
@@ -1,7 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_launcher_name">Jegyzetek</string>
|
||||
<string name="widget_config">Thank you for using Fossify Notes.\nFor more apps from Fossify, please visit fossify.org.</string>
|
||||
<string name="cannot_share_empty_text">Üres szöveget nem lehet megosztani</string>
|
||||
<string name="new_note">Új jegyzet hozzáadása</string>
|
||||
<string name="no_title">Adjon nevet a jegyzetnek</string>
|
||||
@@ -21,15 +20,11 @@
|
||||
<string name="text_note">Szöveges jegyzet</string>
|
||||
<string name="lock_note">Jegyzet zárolása</string>
|
||||
<string name="unlock_note">Jegyzet feloldása</string>
|
||||
<string name="unlock_notes">Unlock notes</string>
|
||||
<string name="found_locked_notes_info">The following notes are locked. You can either unlock them one by one or skip exporting them.</string>
|
||||
<string name="note_content_locked">A jegyzet tartalma zárolva van.</string>
|
||||
<string name="show_content">Tartalom megjelenítése</string>
|
||||
<string name="locking_warning">FIGYELMEZTETÉS: Ha elfelejti a jegyzetek jelszavát, akkor többé nem fogja tudni helyreállítani vagy elérni a jegyzetek tartalmát.</string>
|
||||
<string name="new_text_note">Új szöveges jegyzet</string>
|
||||
<string name="new_checklist">Új ellenőrzőlista</string>
|
||||
<string name="cannot_load_over_internet">The app cannot load files over the internet</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">Fájl megnyitása</string>
|
||||
<string name="export_as_file">Exportálás fájlként</string>
|
||||
<string name="file_too_large">A fájl túl nagy, legfeljebb 1 MB-os lehet</string>
|
||||
@@ -42,7 +37,6 @@
|
||||
<string name="note_exported_successfully">A(z) „%s” jegyzet sikeresen exportálva</string>
|
||||
<string name="only_export_file_content">Csak a jelenlegi fájltartalom exportálása
|
||||
\n(a jegyzet módosítása nem változtat a fájlon)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">Sikeres mentési üzenetek megjelenítése</string>
|
||||
<string name="links_and_emails_clickable">Hivatkozások és e-mail-címek kattinthatóvá tétele</string>
|
||||
<string name="place_cursor_end">Kurzor a jegyzet végére helyezése</string>
|
||||
@@ -61,24 +55,16 @@
|
||||
<string name="use_incognito_mode">A billentyűzetek inkognitó módjának használata</string>
|
||||
<string name="move_done_checklist_items">Kész ellenőrzőlista-elemek alulra helyezése</string>
|
||||
<string name="add_new_checklist_items_top">Új ellenőrzőlista-elemek felülre helyezése</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">Ellenőrzőlista</string>
|
||||
<string name="checklists">Ellenőrzőlisták</string>
|
||||
<string name="add_new_checklist_item">Új ellenőrzőlista-elem hozzáadása</string>
|
||||
<string name="add_new_checklist_items">Új ellenőrzőlista-elemek hozzáadása</string>
|
||||
<string name="checklist_is_empty">Az ellenőrzőlista üres</string>
|
||||
<string name="remove_done_items">Kész elemek eltávolítása</string>
|
||||
<string name="add_to_the_top">Add to the top</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">Mappa importálása</string>
|
||||
<string name="export_notes">Jegyzetek exportálása</string>
|
||||
<string name="import_notes">Jegyzetek importálása</string>
|
||||
<string name="import_notes_pro">Jegyzetek importálása (Pro)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">Hogyan módosíthatom a modulok színét\?</string>
|
||||
<string name="faq_1_text">Ha csak 1 aktív modulja van, akkor vagy újra létrehozhatja, vagy használja az alkalmazásbeállításokban lévő gombot, hogy testreszabja. Ha több modulja van, akkor az alkalmazásbeállításokban nem lesz elérhető a gomb. Mivel az alkalmazás támogatja szín modulonkénti testreszabását, azért a módosítandó modult újra létre kell hoznia.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
@@ -1,7 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_launcher_name">Catatan</string>
|
||||
<string name="widget_config">Thank you for using Fossify Notes.\nFor more apps from Fossify, please visit fossify.org.</string>
|
||||
<string name="cannot_share_empty_text">Tidak bisa membagikan teks kosong</string>
|
||||
<string name="new_note">Tambah catatan baru</string>
|
||||
<string name="no_title">Beri nama catatan anda</string>
|
||||
@@ -19,7 +18,6 @@
|
||||
<string name="show_note_title">Tampilkan judul catatan</string>
|
||||
<string name="new_note_type">Tipe catatan baru:</string>
|
||||
<string name="text_note">Catatan teks</string>
|
||||
<string name="lock_note">Lock note</string>
|
||||
<string name="unlock_note">Buka kunci kota</string>
|
||||
<string name="unlock_notes">Buka kunci catatan</string>
|
||||
<string name="found_locked_notes_info">Catatan ini terkunci. Kamu dapat membukanya satu per satu atau mengabaikannya.</string>
|
||||
@@ -29,7 +27,6 @@
|
||||
<string name="new_text_note">Catatan teks baru</string>
|
||||
<string name="new_checklist">Daftar periksa baru</string>
|
||||
<string name="cannot_load_over_internet">Aplikasi tidak dapat membuka berkas dari internet</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">Buka berkas</string>
|
||||
<string name="export_as_file">Ekspor sebagai berkas</string>
|
||||
<string name="file_too_large">Berkas terlalu besar, batasnya adalah 1MB</string>
|
||||
@@ -42,7 +39,6 @@
|
||||
<string name="note_exported_successfully">Catatan \"%s\" berhasil diekspor</string>
|
||||
<string name="only_export_file_content">Hanya ekspor konten berkas ini
|
||||
\n(mengubah catatan tidak akan berdampak pada berkas)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">Tampilkan pesan jika berhasil disimpan</string>
|
||||
<string name="links_and_emails_clickable">Buat tautan dan email bisa diklik</string>
|
||||
<string name="place_cursor_end">Taruh kursor di akhir catatan</string>
|
||||
@@ -61,24 +57,15 @@
|
||||
<string name="use_incognito_mode">Gunakan mode papan ketik incognito</string>
|
||||
<string name="move_done_checklist_items">Pindah checklist yang belum selesai ke urutan atas</string>
|
||||
<string name="add_new_checklist_items_top">Tambahkan item daftar periksa baru pada atas</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">Daftar periksa</string>
|
||||
<string name="checklists">Daftar periksa</string>
|
||||
<string name="add_new_checklist_item">Tambah item checklist baru</string>
|
||||
<string name="add_new_checklist_items">Tambah item checklist baru</string>
|
||||
<string name="checklist_is_empty">Checklist kosong</string>
|
||||
<string name="remove_done_items">Hapus item yang sudah</string>
|
||||
<string name="add_to_the_top">Add to the top</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">Impor folder</string>
|
||||
<string name="export_notes">Ekspor nota</string>
|
||||
<string name="import_notes">Import notes</string>
|
||||
<string name="import_notes_pro">Impor catatan (Pro)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">Bagaimana cara mengubah warna widget\?</string>
|
||||
<string name="faq_1_text">Jika anda hanya memiliki 1 widget aktif, anda bisa menambahkan ulang, atau gunakan tombol di dalam pengaturan aplikasi untuk mengubahnya. Jika anda memiliki banyak widget aktif, tombol di dalam pengaturan aplikasi tidak akan tersedia. Karena aplikasi mendukung penyesuaian warna per-widget, anda harus menghapus dan menambahkan ulang widget yang ingin anda ubah warnanya.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
@@ -20,7 +20,6 @@
|
||||
<string name="show_note_title">Mostra il titolo della nota</string>
|
||||
<string name="new_note_type">Nuovo tipo di nota:</string>
|
||||
<string name="text_note">Nota di testo</string>
|
||||
<string name="lock_note">Lock note</string>
|
||||
<string name="unlock_note">Sblocca la nota</string>
|
||||
<string name="unlock_notes">Sblocca note</string>
|
||||
<string name="found_locked_notes_info">Le seguenti note sono bloccate. È possibile sbloccarle una per una o saltare l\'esportazione.</string>
|
||||
@@ -30,7 +29,6 @@
|
||||
<string name="new_text_note">Nuova nota di testo</string>
|
||||
<string name="new_checklist">Nuova lista di controllo</string>
|
||||
<string name="cannot_load_over_internet">L\'applicazione non riesce a caricare i file su Internet</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">Apri file</string>
|
||||
<string name="export_as_file">Esporta come file</string>
|
||||
<string name="file_too_large">File troppo grande, il limite è 1 MB</string>
|
||||
@@ -43,7 +41,6 @@
|
||||
<string name="note_exported_successfully">Nota «%s» esportato con successo</string>
|
||||
<string name="only_export_file_content">Esporta solamente il contenuto attuale del file
|
||||
\n(modificando la nota non influenzerà il file)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">Mostra i messaggi di salvataggio riusciti</string>
|
||||
<string name="links_and_emails_clickable">Rendi i collegamenti e le e-mail cliccabili</string>
|
||||
<string name="place_cursor_end">Posiziona il cursore alla fine della nota</string>
|
||||
@@ -62,24 +59,16 @@
|
||||
<string name="use_incognito_mode">Usa la modalità incognito per le tastiere</string>
|
||||
<string name="move_done_checklist_items">Sposta gli elementi non spuntati in cima</string>
|
||||
<string name="add_new_checklist_items_top">Aggiungi nuove voci della lista di controllo in alto</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">Scaletta</string>
|
||||
<string name="checklists">Liste di controllo</string>
|
||||
<string name="add_new_checklist_item">Aggiungi un nuovo elemento</string>
|
||||
<string name="add_new_checklist_items">Aggiungi nuovi elementi</string>
|
||||
<string name="checklist_is_empty">La scaletta è vuota</string>
|
||||
<string name="remove_done_items">Rimuovi gli elementi finiti</string>
|
||||
<string name="add_to_the_top">Add to the top</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">Importa cartella</string>
|
||||
<string name="export_notes">Esporta note</string>
|
||||
<string name="import_notes">Importa note</string>
|
||||
<string name="import_notes_pro">Importa note (Pro)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">Come posso cambiare il colore dei widget\?</string>
|
||||
<string name="faq_1_text">Se hai un solo widget attivo, puoi ricrearlo oppure usare il pulsante nelle impostazioni dell\'app per personalizzaro. Se hai più di un widget, il pulsante nelle impostazioni dell\'app non sarà disponibile. Dato che l\'app supporta la personalizzazione dei colori per ogni widget, dovrai ricreare il widget che vuoi personalizzare.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
@@ -1,7 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_launcher_name">הערות</string>
|
||||
<string name="widget_config">Thank you for using Fossify Notes.\nFor more apps from Fossify, please visit fossify.org.</string>
|
||||
<string name="cannot_share_empty_text">לא ניתן לשתף טקסט ריק</string>
|
||||
<string name="new_note">הוסף הערה חדשה</string>
|
||||
<string name="no_title">נא לתת שם להערה שלך</string>
|
||||
@@ -21,16 +20,11 @@
|
||||
<string name="text_note">פתק טקסט</string>
|
||||
<string name="lock_note">נעל פתק</string>
|
||||
<string name="unlock_note">בטל נעילת פתק</string>
|
||||
<string name="unlock_notes">Unlock notes</string>
|
||||
<string name="found_locked_notes_info">The following notes are locked. You can either unlock them one by one or skip exporting them.</string>
|
||||
<string name="note_content_locked">תוכן הפתקים נעול.</string>
|
||||
<string name="show_content">הראה תוכן</string>
|
||||
<string name="locking_warning">אזהרה: אם תשכח את הסיסמה של הפתקים, לא תוכל לשחזר אותה או לגשת לתוכן הפתקים יותר.</string>
|
||||
<string name="new_text_note">פתק טקסט חדש</string>
|
||||
<string name="new_checklist">רשימת בדיקה חדשה</string>
|
||||
<string name="cannot_load_over_internet">The app cannot load files over the internet</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">Open file</string>
|
||||
<string name="export_as_file">ייצא כקובץ</string>
|
||||
<string name="file_too_large">הקובץ גדול מדי, המגבלה היא 1MB</string>
|
||||
<string name="only_import_file_content">ייבא רק את תוכן הקובץ
|
||||
@@ -42,7 +36,6 @@
|
||||
<string name="note_exported_successfully">הפתק \"%s\" יוצא בהצלחה</string>
|
||||
<string name="only_export_file_content">ייצא רק את תוכן הקובץ הנוכחי
|
||||
\n (שינוי ההערה לא ישפיע על הקובץ)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">הצג הודעות נשמר בהצלחה</string>
|
||||
<string name="links_and_emails_clickable">הפוך קישורים ומיילים לניתנים ללחיצה</string>
|
||||
<string name="place_cursor_end">מקם את הסמן לסוף הפתק</string>
|
||||
@@ -61,24 +54,16 @@
|
||||
<string name="use_incognito_mode">השתמש במצב גלישה בסתר של מקלדות</string>
|
||||
<string name="move_done_checklist_items">העבר את פריטי רשימת הבדיקה שבוצעו לתחתית</string>
|
||||
<string name="add_new_checklist_items_top">הוסף פריטים חדשים ברשימת הבדיקה בראש</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">רשימת תיוג</string>
|
||||
<string name="checklists">רשימות תיוגים</string>
|
||||
<string name="add_new_checklist_item">הוסף פריט רשימת תיוג חדש</string>
|
||||
<string name="add_new_checklist_items">הוסף פריטי רשימת בדיקה חדשים</string>
|
||||
<string name="checklist_is_empty">רשימת התיוגים ריקה</string>
|
||||
<string name="remove_done_items">הסר פריטים שבוצעו</string>
|
||||
<string name="add_to_the_top">Add to the top</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">ייבא תקיות</string>
|
||||
<string name="export_notes">ייצא את כל הפתקים</string>
|
||||
<string name="import_notes">ייבא פתקים</string>
|
||||
<string name="import_notes_pro">ייבא פתקים (Pro)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">כיצד אוכל לשנות את צבע הווידג\'טים\?</string>
|
||||
<string name="faq_1_text">במקרה שיש לך רק ווידג\'ט פעיל אחד, תוכל ליצור אותו מחדש או להשתמש בכפתור בהגדרות האפליקציה כדי להתאים אותו. אם יש לך מספר ווידג\'טים פעילים, הכפתור בהגדרות האפליקציה לא יהיה זמין. מכיוון שהאפליקציה תומכת בהתאמה אישית של צבע לכל ווידג\'ט, תצטרך ליצור מחדש את הווידג\'ט שברצונך להתאים אישית.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
@@ -1,7 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_launcher_name">メモ</string>
|
||||
<string name="widget_config">Thank you for using Fossify Notes.\nFor more apps from Fossify, please visit fossify.org.</string>
|
||||
<string name="cannot_share_empty_text">空のテキストは共有できません</string>
|
||||
<string name="new_note">新しいメモを追加</string>
|
||||
<string name="no_title">メモに名前をつけてください</string>
|
||||
@@ -21,15 +20,11 @@
|
||||
<string name="text_note">テキストメモ</string>
|
||||
<string name="lock_note">メモをロック</string>
|
||||
<string name="unlock_note">メモのロックを解除</string>
|
||||
<string name="unlock_notes">Unlock notes</string>
|
||||
<string name="found_locked_notes_info">The following notes are locked. You can either unlock them one by one or skip exporting them.</string>
|
||||
<string name="note_content_locked">メモの内容がロックされています。</string>
|
||||
<string name="show_content">内容を表示</string>
|
||||
<string name="locking_warning">警告:メモのパスワードを忘れた場合、そのパスワードを復元したり、メモの内容にアクセスしたりすることはできなくなります。</string>
|
||||
<string name="new_text_note">新しいテキストメモ</string>
|
||||
<string name="new_checklist">新しいチェックリスト</string>
|
||||
<string name="cannot_load_over_internet">The app cannot load files over the internet</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">ファイルを開く</string>
|
||||
<string name="export_as_file">ファイルとしてエクスポート</string>
|
||||
<string name="file_too_large">ファイルが大きすぎます (最大:1MBまで)</string>
|
||||
@@ -42,7 +37,6 @@
|
||||
<string name="note_exported_successfully">メモ \"%s\" は正常にエクスポートされました</string>
|
||||
<string name="only_export_file_content">現在のファイルの内容のみエクスポートする
|
||||
\n(メモを編集してもファイルには影響しません)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">正常保存時にメッセージを表示する</string>
|
||||
<string name="links_and_emails_clickable">URLとメールアドレスのリンクを有効にする</string>
|
||||
<string name="place_cursor_end">メモの最後にカーソルを移動する</string>
|
||||
@@ -61,7 +55,6 @@
|
||||
<string name="use_incognito_mode">キーボードのシークレットモードを使用する</string>
|
||||
<string name="move_done_checklist_items">チェックリストの未完了リストを上に移動</string>
|
||||
<string name="add_new_checklist_items_top">新しいチェックリスト項目を上部に追加</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">チェックリスト</string>
|
||||
<string name="checklists">チェックリスト</string>
|
||||
<string name="add_new_checklist_item">新しいチェックリスト項目を追加</string>
|
||||
@@ -69,16 +62,10 @@
|
||||
<string name="checklist_is_empty">チェックリストが空です</string>
|
||||
<string name="remove_done_items">完了した項目を削除</string>
|
||||
<string name="add_to_the_top">上部に追加</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">フォルダからインポート</string>
|
||||
<string name="export_notes">メモをすべてエクスポート</string>
|
||||
<string name="import_notes">メモをインポート</string>
|
||||
<string name="import_notes_pro">メモをインポート (Pro)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">ウィジェットの色はどうやって変更出来ますか?</string>
|
||||
<string name="faq_1_text">アクティブなウィジェットが一つしかない場合、ウィジェットを再作成するか、アプリ設定内のボタンを押してカスタマイズ出来ます。アクティブなウィジェットが複数ある場合、アプリ設定内のボタンは使用出来ません。アプリはウィジェットごとの色のカスタマイズをサポートしているので、カスタマイズしたいウィジェットは再作成する必要があります。</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
@@ -1,7 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_launcher_name">Užrašai</string>
|
||||
<string name="widget_config">Thank you for using Fossify Notes.\nFor more apps from Fossify, please visit fossify.org.</string>
|
||||
<string name="cannot_share_empty_text">Negalima dalintis tuščiu įrašu</string>
|
||||
<string name="new_note">Pridėti naują įrašą</string>
|
||||
<string name="no_title">Įrašo pavadinimas</string>
|
||||
@@ -16,20 +15,10 @@
|
||||
<string name="add_to_note">Papildyti įrašą</string>
|
||||
<string name="unsaved_changes_warning">Turite neišsaugotų pakeitimų. Ką norite su jais daryti\?</string>
|
||||
<string name="note_shown_widget">Užrašas rodomas skydelyje:</string>
|
||||
<string name="show_note_title">Show note title</string>
|
||||
<string name="new_note_type">Naujo užrašo tipas:</string>
|
||||
<string name="text_note">Tekstinis užrašas</string>
|
||||
<string name="lock_note">Lock note</string>
|
||||
<string name="unlock_note">Unlock note</string>
|
||||
<string name="unlock_notes">Unlock notes</string>
|
||||
<string name="found_locked_notes_info">The following notes are locked. You can either unlock them one by one or skip exporting them.</string>
|
||||
<string name="note_content_locked">Pastabų turinys yra užrakintas.</string>
|
||||
<string name="show_content">Show content</string>
|
||||
<string name="locking_warning">ĮSPĖJIMAS: jei pamiršite užrašų slaptažodį, nebegalėsite jo atkurti ar pasiekti užrašų turinio.</string>
|
||||
<string name="new_text_note">New text note</string>
|
||||
<string name="new_checklist">New checklist</string>
|
||||
<string name="cannot_load_over_internet">The app cannot load files over the internet</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">Atverti bylą</string>
|
||||
<string name="export_as_file">Kurti kopiją</string>
|
||||
<string name="file_too_large">Failas per didelis, didžiausias leistinas dydis yra 1MB</string>
|
||||
@@ -42,14 +31,12 @@
|
||||
<string name="note_exported_successfully">Pastaba \"%s sėkmingai eksportuota</string>
|
||||
<string name="only_export_file_content">Only export the current file content
|
||||
\n(changing the note will not affect the file)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">Rodyti sėkmingo išsaugojimo pranešimus</string>
|
||||
<string name="links_and_emails_clickable">Veiksnios nuorodos ir elektroninio pašto adresai</string>
|
||||
<string name="place_cursor_end">Perkelti žymeklį į įrašo pabaigą</string>
|
||||
<string name="monospaced_font">Pakeisti šrifto stilių</string>
|
||||
<string name="show_keyboard">Rodyti klaviatūrą paleidžiant</string>
|
||||
<string name="show_word_count">Rodyti žodžių skaičių</string>
|
||||
<string name="show_character_count">Show character count</string>
|
||||
<string name="alignment">Įtrauka</string>
|
||||
<string name="left">Kairėje</string>
|
||||
<string name="center">Centre</string>
|
||||
@@ -58,27 +45,10 @@
|
||||
<string name="show_note_picker">Rodyti užrašų parinkiklį pajungus programėlę</string>
|
||||
<string name="autosave_notes">Automatiškai išsaugoti užrašus</string>
|
||||
<string name="enable_line_wrap">naudoti eilutės perkėlimą</string>
|
||||
<string name="use_incognito_mode">Use Incognito mode of keyboards</string>
|
||||
<string name="move_done_checklist_items">Move done checklist items to the bottom</string>
|
||||
<string name="add_new_checklist_items_top">Add new checklist items at the top</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">Kontrolinis sąrašas</string>
|
||||
<string name="checklists">Checklists</string>
|
||||
<string name="add_new_checklist_item">Pridėti naują kontrolinio sąrašo objektą</string>
|
||||
<string name="add_new_checklist_items">Pridėti naujus kontrolinio sąrašo objektus</string>
|
||||
<string name="checklist_is_empty">Kontrolinis sąršas tuščias</string>
|
||||
<string name="remove_done_items">Remove done items</string>
|
||||
<string name="add_to_the_top">Add to the top</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">Importuoti aplanką</string>
|
||||
<string name="export_notes">Export notes</string>
|
||||
<string name="import_notes">Import notes</string>
|
||||
<string name="import_notes_pro">Import notes (Pro)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">Kaip pakeisti valdiklių spalvą\?</string>
|
||||
<string name="faq_1_text">In case you have only 1 active widget, you can either recreate it, or use the button in the app settings for customizing it. If you have multiple active widgets, the button in the app settings will not be available. As the app supports color customization per-widget, you will have to recreate the widget that you want to customize.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
@@ -1,84 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_launcher_name">Notes</string>
|
||||
<string name="widget_config">Thank you for using Fossify Notes.\nFor more apps from Fossify, please visit fossify.org.</string>
|
||||
<string name="cannot_share_empty_text">Cannot share empty text</string>
|
||||
<string name="new_note">Add a new note</string>
|
||||
<string name="no_title">Please name your note</string>
|
||||
<string name="title_taken">A note with that title already exists</string>
|
||||
<string name="open_note">Open note</string>
|
||||
<string name="delete_note">Delete note</string>
|
||||
<string name="delete_note_prompt_message">Are you sure you want to delete note \"%s\"\?</string>
|
||||
<string name="pick_a_note">Pick a note</string>
|
||||
<string name="rename_note">Rename note</string>
|
||||
<string name="general_note">General note</string>
|
||||
<string name="create_new_note">Create a new note</string>
|
||||
<string name="add_to_note">Add to note</string>
|
||||
<string name="unsaved_changes_warning">You have some unsaved changes. What do you want to do with them\?</string>
|
||||
<string name="note_shown_widget">Note shown in the widget:</string>
|
||||
<string name="show_note_title">Show note title</string>
|
||||
<string name="new_note_type">New note type:</string>
|
||||
<string name="text_note">Text note</string>
|
||||
<string name="lock_note">Lock note</string>
|
||||
<string name="unlock_note">Unlock note</string>
|
||||
<string name="unlock_notes">Unlock notes</string>
|
||||
<string name="found_locked_notes_info">The following notes are locked. You can either unlock them one by one or skip exporting them.</string>
|
||||
<string name="note_content_locked">The notes\' content is locked.</string>
|
||||
<string name="show_content">Show content</string>
|
||||
<string name="locking_warning">WARNING: If you forget the notes\' password, you won\'t be able to recover it or access the notes\' content anymore.</string>
|
||||
<string name="new_text_note">New text note</string>
|
||||
<string name="new_checklist">New checklist</string>
|
||||
<string name="cannot_load_over_internet">The app cannot load files over the internet</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">Open file</string>
|
||||
<string name="export_as_file">Export as file</string>
|
||||
<string name="file_too_large">File too large, the limit is 1MB</string>
|
||||
<string name="only_import_file_content">Only import the file content
|
||||
\n(changing the file will not affect the note)</string>
|
||||
<string name="update_file_at_note">Update the file itself at updating the note
|
||||
\n(note gets deleted if file gets deleted, or path changes)</string>
|
||||
<string name="delete_file_itself">Also delete file \"%s\"</string>
|
||||
<string name="note_saved_successfully">Note \"%s\" saved successfully</string>
|
||||
<string name="note_exported_successfully">Note \"%s\" exported successfully</string>
|
||||
<string name="only_export_file_content">Only export the current file content
|
||||
\n(changing the note will not affect the file)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">Display save success messages</string>
|
||||
<string name="links_and_emails_clickable">Make links and emails clickable</string>
|
||||
<string name="place_cursor_end">Place cursor to the end of note</string>
|
||||
<string name="monospaced_font">Use monospaced font</string>
|
||||
<string name="show_keyboard">Show keyboard on startup</string>
|
||||
<string name="show_word_count">Show word count</string>
|
||||
<string name="show_character_count">Show character count</string>
|
||||
<string name="alignment">Alignment</string>
|
||||
<string name="left">Left</string>
|
||||
<string name="center">Center</string>
|
||||
<string name="right">Right</string>
|
||||
<string name="widget_note">Note used in widget</string>
|
||||
<string name="show_note_picker">Show a note picker on startup</string>
|
||||
<string name="autosave_notes">Autosave notes</string>
|
||||
<string name="enable_line_wrap">Enable line wrap</string>
|
||||
<string name="use_incognito_mode">Use Incognito mode of keyboards</string>
|
||||
<string name="move_done_checklist_items">Move done checklist items to the bottom</string>
|
||||
<string name="add_new_checklist_items_top">Add new checklist items at the top</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">Checklist</string>
|
||||
<string name="checklists">Checklists</string>
|
||||
<string name="add_new_checklist_item">Add a new checklist item</string>
|
||||
<string name="add_new_checklist_items">Add new checklist items</string>
|
||||
<string name="checklist_is_empty">The checklist is empty</string>
|
||||
<string name="remove_done_items">Remove done items</string>
|
||||
<string name="add_to_the_top">Add to the top</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">Import folder</string>
|
||||
<string name="export_notes">Export notes</string>
|
||||
<string name="import_notes">Import notes</string>
|
||||
<string name="import_notes_pro">Import notes (Pro)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">How can I change the widgets color\?</string>
|
||||
<string name="faq_1_text">In case you have only 1 active widget, you can either recreate it, or use the button in the app settings for customizing it. If you have multiple active widgets, the button in the app settings will not be available. As the app supports color customization per-widget, you will have to recreate the widget that you want to customize.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
@@ -1,7 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_launcher_name">မှတ်စုများ</string>
|
||||
<string name="widget_config">Thank you for using Fossify Notes.\nFor more apps from Fossify, please visit fossify.org.</string>
|
||||
<string name="cannot_share_empty_text">မှတ်စုအလွတ်ကို မမျှဝေနိုင်ပါ</string>
|
||||
<string name="new_note">မှတ်စုအသစ်</string>
|
||||
<string name="no_title">ကျေးဇူးပြု၍မှတ်စုအသစ်ခေါင်းစဥ် ပေးပါ</string>
|
||||
@@ -29,20 +28,15 @@
|
||||
<string name="new_text_note">စာသားမှတ်စုအသစ်</string>
|
||||
<string name="new_checklist">အမှတ်ခြစ်စာရင်း အသစ်</string>
|
||||
<string name="cannot_load_over_internet">အက်ပ်သည် အင်တာနက်ပေါ်ရှိဖိုင်မျာကို မရယူနိုင်ပါ</string>
|
||||
|
||||
<!-- File notes -->
|
||||
<string name="open_file">ဖိုင်
|
||||
ဖွင့်</string>
|
||||
<string name="export_as_file">ဖိုင်အဖြစ်ထုတ်မည်</string>
|
||||
<string name="file_too_large">ဖိုင်ဆိုဒ်ကြီးလွန်းသည်။၁ အမ်ဘီ အထိသာကန့်သတ်ထားသည်။</string>
|
||||
<string name="only_import_file_content">ဖိုင်ကိုသာ သွင်းပါ\n(ဖိုင်ပြောင်းလဲခြင်းသည် မှတ်စုများကိုသက်ရောက်မည်မဟုတ်ပါ)</string>
|
||||
<string name="update_file_at_note">မှတ်စုကို ပြောင်းလဲခြင်းဖြင့် ဖိုင်လည်းပြောင်းလဲပါမည်\n(ဖိုင်လမ်းကြောင်းပြောင်းသွားသောအခါ ဒါမှမဟုတ် ဖိုင်ဖျက်သောအခါ မှတ်စုများလည်းပျက်သွားပါမည်)</string>
|
||||
<string name="delete_file_itself">Also delete file \"%s\"</string>
|
||||
<string name="note_saved_successfully">မှတ်စုကို \"%s\" အောင်မြင်စွာသိမ်းဆည်းပြီး</string>
|
||||
<string name="note_exported_successfully">မှတ်စုကို \"%s\" အောင်မြင်စွာထုတ်ပြီး</string>
|
||||
<string name="only_export_file_content">လက်ရှိဖိုင်ပါအကြောင်းအရာကိုသာ ထုတ်ပါ\n(မှတ်စုကိုပြောင်းလဲခြင်းသည်ဖိုင်ကိုမသက်ရောက်နိုင်ပါ)</string>
|
||||
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">အောင်မြင်စွာ သိမ်းဆည်းပြီးကြောင်း ကိုပြပါ</string>
|
||||
<string name="links_and_emails_clickable">လင့်များ နှင့် အီးမေးလ်း များကိုနှိပ်နိုင်အောင်လုပ်ပါ</string>
|
||||
<string name="place_cursor_end">စာရိုက်မှတ်ကို မှတ်စုအဆုံးတွင်နေရာချပါ</string>
|
||||
@@ -57,12 +51,9 @@
|
||||
<string name="widget_note">ဝစ်ဂျစ်တ်တွင်ပြထားသောမှတ်စု</string>
|
||||
<string name="show_note_picker">အက်ပ်စဖွင့်သောအခါ မှတ်စုရွေးရန်ပြပါ</string>
|
||||
<string name="autosave_notes">မှတ်စုများ အလိုအလျောက်သိမ်းဆည်းခြင်း</string>
|
||||
<string name="enable_line_wrap">Enable line wrap</string>
|
||||
<string name="use_incognito_mode">လုံခြုံသော ကီးဘုတ်လုပ်ဆောင်ချက်ကိုသုံးမည်</string>
|
||||
<string name="move_done_checklist_items">အမှန်ခြစ်ပြီးသောစာရင်းများကိုအောက်သို့ရွှေ့ပါ</string>
|
||||
<string name="add_new_checklist_items_top">အမှန်ခြစ် စာရင်းအသစ်များကို အပေါ်မှာ ထည့်ပါ</string>
|
||||
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">အမှန်ခြစ် စာရင်း</string>
|
||||
<string name="checklists">အမှန်ခြစ် စာရင်းများ</string>
|
||||
<string name="add_new_checklist_item">အမှန်ခြစ် စာရင်းအသစ်</string>
|
||||
@@ -70,18 +61,10 @@
|
||||
<string name="checklist_is_empty">အမှန်ခြစ် စာရင်း မှာဘာမှမရှိပါ</string>
|
||||
<string name="remove_done_items">ပြီးသွားသောအရာများကို ဖယ်ရှားပါ</string>
|
||||
<string name="add_to_the_top">အပေါ်ဆုံးကို ပို့ပါ</string>
|
||||
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">ဖိုဒါကို သွင်းမည်</string>
|
||||
<string name="export_notes">မှတ်စုများကိုထုတ်မည်</string>
|
||||
<string name="import_notes">မှတ်စုများကို သွင်းမည်</string>
|
||||
<string name="import_notes_pro">မှတ်စုများကို သွင်းမည်(ပရိုဗားရှင်း)</string>
|
||||
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">ဝစ်ဂျစ်တ်အရောင်ဘယ်လို ချိန်းနိုင်မလဲ</string>
|
||||
<string name="faq_1_text">သင့်မှာ ဝစ်ဂျစ်တ်တစ်ခုတည်းသာ ဖန်တီးထားလျှင် အသစ်ပြန်ဖန်တီးတာဖြစ်စေ အက်ပ်ဆက်တင်ထဲကနေဖြစ်စေ ပြောင်းလဲနိုင်ပါတယ်။သင်မှာဝစ်ဂျစ်တ် အများအပြားရှိရင်တော့ အက်ပ်ဆက်တင်ထဲ ကနေပြောင်းလဲလို့မရနိုင်ပါ။သင်ပြောင်းလဲလိုတဲ့ ဝစ်ဂျစ်တ်တစ်ခုချင်းစီကို ပြန်ဖန်တီးဖို့လိုပါတယ်။</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
@@ -1,7 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_launcher_name">Notater</string>
|
||||
<string name="widget_config">Thank you for using Fossify Notes.\nFor more apps from Fossify, please visit fossify.org.</string>
|
||||
<string name="cannot_share_empty_text">Kan ikke dele tom tekst</string>
|
||||
<string name="new_note">Legg til nytt notat</string>
|
||||
<string name="no_title">Gi ditt notat et navn</string>
|
||||
@@ -21,15 +20,11 @@
|
||||
<string name="text_note">Tekstnotat</string>
|
||||
<string name="lock_note">Lås notat</string>
|
||||
<string name="unlock_note">Lås opp notat</string>
|
||||
<string name="unlock_notes">Unlock notes</string>
|
||||
<string name="found_locked_notes_info">The following notes are locked. You can either unlock them one by one or skip exporting them.</string>
|
||||
<string name="note_content_locked">Notatinnholdet er låst.</string>
|
||||
<string name="show_content">Vis innhold</string>
|
||||
<string name="locking_warning">ADVARSEL: Hvis du glemmer passordet til notatene, kan du ikke gjenopprette det eller få tilgang til notatenes innhold lenger.</string>
|
||||
<string name="new_text_note">Ny tekstnotat</string>
|
||||
<string name="new_checklist">Ny sjekkliste</string>
|
||||
<string name="cannot_load_over_internet">The app cannot load files over the internet</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">Åpne fil</string>
|
||||
<string name="export_as_file">Eksporter som fil</string>
|
||||
<string name="file_too_large">Filen er er større enn grensen på 1 MB</string>
|
||||
@@ -42,7 +37,6 @@
|
||||
<string name="note_exported_successfully">Notat «%s»-eksporteres</string>
|
||||
<string name="only_export_file_content">Eksporter bare gjeldende filinnhold
|
||||
\n(hvis du endrer notatet, påvirkes ikke filen)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">Vis meldinger om vellykket lagring</string>
|
||||
<string name="links_and_emails_clickable">Gjør lenker og e-poster klikkbare</string>
|
||||
<string name="place_cursor_end">Plasser pekeren på slutten av notatet</string>
|
||||
@@ -61,24 +55,16 @@
|
||||
<string name="use_incognito_mode">Bruke inkognitomodus på tastaturer</string>
|
||||
<string name="move_done_checklist_items">Flytt utførte sjekklisteelementer til bunnen</string>
|
||||
<string name="add_new_checklist_items_top">Legg til nye sjekklisteelementer på toppen</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">Sjekkliste</string>
|
||||
<string name="checklists">Sjekklister</string>
|
||||
<string name="add_new_checklist_item">Legg til nytt sjekklisteelement</string>
|
||||
<string name="add_new_checklist_items">Legg til nye sjekklisteelementer</string>
|
||||
<string name="checklist_is_empty">Sjekklisten er tom</string>
|
||||
<string name="remove_done_items">Fjern utførte elementer</string>
|
||||
<string name="add_to_the_top">Add to the top</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">Importer mappe</string>
|
||||
<string name="export_notes">Eksportere alle notater</string>
|
||||
<string name="import_notes">Importere notater</string>
|
||||
<string name="import_notes_pro">Importere notater (Pro)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">Hvordan endrer jeg widgetfargen\?</string>
|
||||
<string name="faq_1_text">Hvis du bare har ett aktivt kontrollprogram, kan du enten opprette det på nytt eller bruke knappen i appinnstillingene for å tilpasse den. Hvis du har flere aktive kontrollprogrammer, vil ikke knappen i appinnstillingene være tilgjengelig. Siden appen støtter fargetilpasning per kontrollprogram, må du opprette kontrollprogrammet du vil tilpasse, på nytt.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
@@ -1,7 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_launcher_name">Notities</string>
|
||||
<string name="widget_config">Thank you for using Fossify Notes.\nFor more apps from Fossify, please visit fossify.org.</string>
|
||||
<string name="cannot_share_empty_text">Kan geen lege notitie delen</string>
|
||||
<string name="new_note">Nieuwe notitie</string>
|
||||
<string name="no_title">Geef de notitie een naam</string>
|
||||
@@ -29,7 +28,6 @@
|
||||
<string name="new_text_note">Nieuwe notitie</string>
|
||||
<string name="new_checklist">Nieuwe lijst</string>
|
||||
<string name="cannot_load_over_internet">Deze app kan geen bestanden laden via het internet</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">Bestand openen</string>
|
||||
<string name="export_as_file">Als bestand exporteren</string>
|
||||
<string name="file_too_large">Bestand is te groot: limiet is 1MB</string>
|
||||
@@ -42,7 +40,6 @@
|
||||
<string name="note_exported_successfully">Notitie \"%s\" geëxporteerd</string>
|
||||
<string name="only_export_file_content">Alleen de huidige bestandsinhoud exporteren
|
||||
\n(wijzigingen in de notitie zullen niet in het bestand doorgevoerd worden)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">Bevestigingen tonen</string>
|
||||
<string name="links_and_emails_clickable">Links en e-mailadressen aanklikbaar maken</string>
|
||||
<string name="place_cursor_end">Cursor aan het einde van de notitie plaatsen</string>
|
||||
@@ -61,7 +58,6 @@
|
||||
<string name="use_incognito_mode">Incognito-modus van toetsenbord gebruiken</string>
|
||||
<string name="move_done_checklist_items">Afgewerkte items naar onderen verplaatsen</string>
|
||||
<string name="add_new_checklist_items_top">Nieuwe items boven aan de lijst toevoegen</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">Lijst</string>
|
||||
<string name="checklists">Lijsten</string>
|
||||
<string name="add_new_checklist_item">Item toevoegen</string>
|
||||
@@ -69,16 +65,10 @@
|
||||
<string name="checklist_is_empty">De lijst is leeg</string>
|
||||
<string name="remove_done_items">Afgeronde items wissen</string>
|
||||
<string name="add_to_the_top">Bovenaan toevoegen</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">Map importeren</string>
|
||||
<string name="export_notes">Notities exporteren</string>
|
||||
<string name="import_notes">Notities importeren</string>
|
||||
<string name="import_notes_pro">Notities importeren (Pro)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">Hoe verander ik de kleuren van de widgets\?</string>
|
||||
<string name="faq_1_text">Gebruik de optie in de instellingen van de app om de kleuren aan te passen, of maak de widget opnieuw aan. Indien er meerdere widgets van deze app actief zijn, zal deze optie niet beschikbaar zijn. De kleuren zijn dan alleen aan te passen door de widget opnieuw aan te maken.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
@@ -1,7 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_launcher_name">نوٹ</string>
|
||||
<string name="widget_config">Thank you for using Fossify Notes.\nFor more apps from Fossify, please visit fossify.org.</string>
|
||||
<string name="cannot_share_empty_text">کوئی لکھت نہیں، سانجھی نہیں کیتی جا سکدی</string>
|
||||
<string name="new_note">نواں نوٹ پایو</string>
|
||||
<string name="no_title">نوٹ دا ناں پایو</string>
|
||||
@@ -21,15 +20,11 @@
|
||||
<string name="text_note">لکھت دا نوٹ</string>
|
||||
<string name="lock_note">نوٹ تالؕا مارنا</string>
|
||||
<string name="unlock_note">نوٹ اُگھیڑو</string>
|
||||
<string name="unlock_notes">Unlock notes</string>
|
||||
<string name="found_locked_notes_info">The following notes are locked. You can either unlock them one by one or skip exporting them.</string>
|
||||
<string name="note_content_locked">ایس نوٹ دی سمگاری تالؕا مارنی اے</string>
|
||||
<string name="show_content">سمگری ویکھو</string>
|
||||
<string name="locking_warning">چیتاونی: جےتسی نوٹ دا پاسورڈ بھُل جاندے او، تاں فیر نوٹ دی سمگری لبھ نہیں سکدیاں۔</string>
|
||||
<string name="new_text_note">نواں لکھت دا نوٹ بݨاؤ</string>
|
||||
<string name="new_checklist">نویں چیکلِسٹ بݨاؤ</string>
|
||||
<string name="cannot_load_over_internet">The app cannot load files over the internet</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">فائل کھُلھو</string>
|
||||
<string name="export_as_file">فائل ایکسپورٹ کرو</string>
|
||||
<string name="file_too_large">فائل بہت وڈی اے، سیمہ ۱ میگابائیٹ اے</string>
|
||||
@@ -39,7 +34,6 @@
|
||||
<string name="note_saved_successfully">نوٹ «%s» سامبھیا گیا</string>
|
||||
<string name="note_exported_successfully">نوٹ «%s» ایکسپورٹ کیتا گیا</string>
|
||||
<string name="only_export_file_content">صرف ایس فائل دا سمگری ہی ایمپورٹ کرو (جے نوٹ بدلیا گیا فائل نوں بدلیا نہیں ہووےگا)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">سامبھݨ دے سنہے ویکھو</string>
|
||||
<string name="links_and_emails_clickable">کڑیاں تے ایمیل کھُلھݨ چالو کرو</string>
|
||||
<string name="place_cursor_end">کرسر نوں نوٹ دے انت وچ رکھو</string>
|
||||
@@ -58,20 +52,15 @@
|
||||
<string name="use_incognito_mode">کیبورڈاں لئی اینکوگنیٹو سیٹنگ ورتو</string>
|
||||
<string name="move_done_checklist_items">چیکلِسٹ دے پورن حصے نوں ہیٹھاں لے جاؤ</string>
|
||||
<string name="add_new_checklist_items_top">سکھر تے چیکلِسٹ دے نویں حصے پایو</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">چیکلسٹ</string>
|
||||
<string name="checklists">چیکلسٹاں</string>
|
||||
<string name="add_new_checklist_item">چیکلِسٹ وچ نواں حصہ پایو</string>
|
||||
<string name="add_new_checklist_items">چیکلِسٹ وچ نویں حصے پایو</string>
|
||||
<string name="checklist_is_empty">چیکلِسٹ وچ نوٹ کوئی نہیں</string>
|
||||
<string name="remove_done_items">کیٹیاں ائیٹماں نوں ہٹاؤ</string>
|
||||
<string name="add_to_the_top">Add to the top</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">فولڈر ایمپورٹ کرو</string>
|
||||
<string name="export_notes">سارے نوٹ ایکسپورٹ کرو</string>
|
||||
<string name="import_notes">نوٹ ایمپورٹ کرو</string>
|
||||
<string name="import_notes_pro">نوٹ ایمپورٹ کرو (فیز ورژن)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">میں وِجٹ دا رنگ کیویں بدل سکدا ہاں؟</string>
|
||||
<string name="faq_1_text">In case you have only 1 active widget, you can either recreate it, or use the button in the app settings for customizing it. If you have multiple active widgets, the button in the app settings will not be available. As the app supports color customization per-widget, you will have to recreate the widget that you want to customize.</string>
|
||||
</resources>
|
||||
</resources>
|
||||
@@ -30,7 +30,6 @@
|
||||
<string name="new_text_note">Nowa notatka tekstowa</string>
|
||||
<string name="new_checklist">Nowa lista kontrolna</string>
|
||||
<string name="cannot_load_over_internet">Aplikacja nie może załadować plików przez Internet</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">Otwórz plik</string>
|
||||
<string name="export_as_file">Eksportuj jako plik</string>
|
||||
<string name="file_too_large">Plik za duży, limit to 1 MB</string>
|
||||
@@ -43,7 +42,6 @@
|
||||
<string name="note_exported_successfully">Notatka „%s” została wyeksportowana</string>
|
||||
<string name="only_export_file_content">Wyeksportuj tylko bieżącą zawartość pliku
|
||||
\n(zmiana notatki nie wpłynie na plik)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">Wyświetlaj informacje o pomyślnym zapisie</string>
|
||||
<string name="links_and_emails_clickable">Przetwarzaj linki i adresy e-mail do klikalnej formy</string>
|
||||
<string name="place_cursor_end">Umieszczaj kursor na końcu notatki</string>
|
||||
@@ -62,7 +60,6 @@
|
||||
<string name="use_incognito_mode">Używaj trybu incognito klawiatury</string>
|
||||
<string name="move_done_checklist_items">Przesuwaj na dół wykonane elementy listy kontrolnej</string>
|
||||
<string name="add_new_checklist_items_top">Dodawaj na górze nowe elementy listy kontrolnej</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">Lista kontrolna</string>
|
||||
<string name="checklists">Listy kontrolne</string>
|
||||
<string name="add_new_checklist_item">Dodaj nowy element listy kontrolnej</string>
|
||||
@@ -70,16 +67,10 @@
|
||||
<string name="checklist_is_empty">Lista kontrolna jest pusta</string>
|
||||
<string name="remove_done_items">Usuń wykonane elementy</string>
|
||||
<string name="add_to_the_top">Dodaj na górze</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">Importuj folder</string>
|
||||
<string name="export_notes">Eksportuj notatki</string>
|
||||
<string name="import_notes">Importuj notatki</string>
|
||||
<string name="import_notes_pro">Importuj notatki (Pro)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">Jak mogę zmienić kolor widżetów\?</string>
|
||||
<string name="faq_1_text">Jeśli masz tylko 1 aktywny widżet, możesz go odtworzyć lub użyć przycisku w ustawieniach aplikacji, aby go dostosować. Jeśli masz wiele aktywnych widżetów, przycisk w ustawieniach aplikacji nie będzie dostępny. Ponieważ aplikacja obsługuje dostosowywanie kolorów dla poszczególnych widżetów, konieczne będzie ponowne utworzenie widżetu, który chcesz dostosować.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
@@ -1,7 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_launcher_name">Notas</string>
|
||||
<string name="widget_config">Thank you for using Fossify Notes.\nFor more apps from Fossify, please visit fossify.org.</string>
|
||||
<string name="cannot_share_empty_text">Não é possível compartilhar textos vazios</string>
|
||||
<string name="new_note">Adicionar uma nota</string>
|
||||
<string name="no_title">Por favor, dê um nome à sua nota</string>
|
||||
@@ -29,7 +28,6 @@
|
||||
<string name="new_text_note">Nova nota de texto</string>
|
||||
<string name="new_checklist">Nova lista</string>
|
||||
<string name="cannot_load_over_internet">O aplicativo não pode carregar arquivos pela Internet</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">Abrir arquivo</string>
|
||||
<string name="export_as_file">Exportar como arquivo</string>
|
||||
<string name="file_too_large">Arquivo muito grande, o limite é 1 MB</string>
|
||||
@@ -42,7 +40,6 @@
|
||||
<string name="note_exported_successfully">Nota \"%s\" exportada com sucesso</string>
|
||||
<string name="only_export_file_content">Exportar apenas o conteúdo atual do arquivo
|
||||
\n(alterar a nota não afetará o arquivo)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">Mostrar mensagens de gravação com sucesso</string>
|
||||
<string name="links_and_emails_clickable">Ativar clique em ligações e endereços de e-mail</string>
|
||||
<string name="place_cursor_end">Coloque o cursor no final da nota</string>
|
||||
@@ -61,24 +58,15 @@
|
||||
<string name="use_incognito_mode">Usar o teclado no modo de Navegação Anônima</string>
|
||||
<string name="move_done_checklist_items">Mover itens completos da lista de verificação para o final</string>
|
||||
<string name="add_new_checklist_items_top">Adicionar novos itens da lista de verificação na parte superior</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">Lista de verificação</string>
|
||||
<string name="checklists">Listas de verificação</string>
|
||||
<string name="add_new_checklist_item">Adicionar novo item à lista de verificação</string>
|
||||
<string name="add_new_checklist_items">Adicionar novos itens à lista de verificação</string>
|
||||
<string name="checklist_is_empty">A lista de verificação está vazia</string>
|
||||
<string name="remove_done_items">Remover itens concluídos</string>
|
||||
<string name="add_to_the_top">Add to the top</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">Importar pasta</string>
|
||||
<string name="export_notes">Exportar notas</string>
|
||||
<string name="import_notes">Import notes</string>
|
||||
<string name="import_notes_pro">Importar notas (Pro)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">Como mudar a cor dos widgets\?</string>
|
||||
<string name="faq_1_text">Caso você possua apenas 1 widget ativo, você poderá recriá-lo, ou usar o botão nas configurações do aplicativo para personalizá-lo. Caso você possua vários widgets ativos, o botão nas configurações do aplicativo não estará disponível. Como o aplicativo suporta personalização de cores por widget, você terá que recriar o widget que deseja personalizar.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
@@ -1,7 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_launcher_name">Notas</string>
|
||||
<string name="widget_config">Thank you for using Fossify Notes.\nFor more apps from Fossify, please visit fossify.org.</string>
|
||||
<string name="cannot_share_empty_text">Não pode partilhar texto vazio</string>
|
||||
<string name="new_note">Adicionar uma nota</string>
|
||||
<string name="no_title">Introduza o nome da nota</string>
|
||||
@@ -29,7 +28,6 @@
|
||||
<string name="new_text_note">Nova nota de texto</string>
|
||||
<string name="new_checklist">Nova lista</string>
|
||||
<string name="cannot_load_over_internet">A aplicação não consegue carregar ficheiros da internet</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">Abrir ficheiro</string>
|
||||
<string name="export_as_file">Exportar como ficheiro</string>
|
||||
<string name="file_too_large">Ficheiro demasiado grande, o limite é 1 MB</string>
|
||||
@@ -42,7 +40,6 @@
|
||||
<string name="note_exported_successfully">Nota \"%s\" exportada com sucesso</string>
|
||||
<string name="only_export_file_content">Exportar apenas o conteúdo do ficheiro atual
|
||||
\n(a alteração da nota não afeta o ficheiro)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">Mostrar mensagem de gravação com sucesso</string>
|
||||
<string name="links_and_emails_clickable">Ativar toque em ligações e endereços de e-mail</string>
|
||||
<string name="place_cursor_end">Colocar cursor no final da nota</string>
|
||||
@@ -61,24 +58,16 @@
|
||||
<string name="use_incognito_mode">Utilizar modo incógnito no teclado</string>
|
||||
<string name="move_done_checklist_items">Mover itens não concluídos para o fundo da lista de verificação</string>
|
||||
<string name="add_new_checklist_items_top">Adicionar novos itens ao topo da lista de verificação</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">Lista de verificação</string>
|
||||
<string name="checklists">Listas de verificação</string>
|
||||
<string name="add_new_checklist_item">Adicionar item à lista de verificação</string>
|
||||
<string name="add_new_checklist_items">Adicionar itens à lista de verificação</string>
|
||||
<string name="checklist_is_empty">A lista está vazia</string>
|
||||
<string name="remove_done_items">Remover itens concluídos</string>
|
||||
<string name="add_to_the_top">Add to the top</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">Importar pasta</string>
|
||||
<string name="export_notes">Exportar notas</string>
|
||||
<string name="import_notes">Importar notas</string>
|
||||
<string name="import_notes_pro">Importar notas (Pro)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">Posso alterar a cor do widget\?</string>
|
||||
<string name="faq_1_text">Se apenas tiver um widget ativo, pode recriar ou utilizar o botão nas definições para o personalizar. Se tiver vários widgets, este botão não estará disponível. Como cada um dos widgets pode ser personalizado, terá que os recriar sempre que os quiser personalizar.</string>
|
||||
<!--
|
||||
Não encontrou todas as cadeias a traduzir? Existem mais algumas em:
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
@@ -1,7 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_launcher_name">Notițe</string>
|
||||
<string name="widget_config">Thank you for using Fossify Notes.\nFor more apps from Fossify, please visit fossify.org.</string>
|
||||
<string name="cannot_share_empty_text">Nu se poate distribui text gol</string>
|
||||
<string name="new_note">Adăugați o nouă notă</string>
|
||||
<string name="no_title">Vă rugăm să denumiți notița dumneavoastră</string>
|
||||
@@ -21,15 +20,11 @@
|
||||
<string name="text_note">Notiță text</string>
|
||||
<string name="lock_note">Blocaţi notița</string>
|
||||
<string name="unlock_note">Deblocaţi notița</string>
|
||||
<string name="unlock_notes">Unlock notes</string>
|
||||
<string name="found_locked_notes_info">The following notes are locked. You can either unlock them one by one or skip exporting them.</string>
|
||||
<string name="note_content_locked">Conținutul notiței este blocat.</string>
|
||||
<string name="show_content">Afișați conținutul</string>
|
||||
<string name="locking_warning">ATENȚIE: Dacă uitați parola notițelor, nu o veți mai putea recupera și nici nu veți mai putea accesa conținutul notițele.</string>
|
||||
<string name="new_text_note">Noua notița de text</string>
|
||||
<string name="new_checklist">O nouă listă de verificare</string>
|
||||
<string name="cannot_load_over_internet">The app cannot load files over the internet</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">Deschideți fișierul</string>
|
||||
<string name="export_as_file">Exportați ca fișier</string>
|
||||
<string name="file_too_large">Fișier prea mare, limita este de 1MB</string>
|
||||
@@ -42,7 +37,6 @@
|
||||
<string name="note_exported_successfully">Notița \"%s\" a fost exportată cu succes</string>
|
||||
<string name="only_export_file_content">Exportați numai conținutul curent al fișierului
|
||||
\n(modificarea notiței nu va afecta fișierul)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">Afișaţi mesajele de salvare cu succes</string>
|
||||
<string name="links_and_emails_clickable">Faceți link-urile și e-mailurile accesibile</string>
|
||||
<string name="place_cursor_end">Așezați cursorul la sfârșitul notiței</string>
|
||||
@@ -61,24 +55,16 @@
|
||||
<string name="use_incognito_mode">Utilizați modul Incognito al tastaturilor</string>
|
||||
<string name="move_done_checklist_items">Mutați elementele realizate din lista de verificare în partea de jos</string>
|
||||
<string name="add_new_checklist_items_top">Adăugați noi elemente ale listei de verificare în partea de sus</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">Listă de verificare</string>
|
||||
<string name="checklists">Liste de verificare</string>
|
||||
<string name="add_new_checklist_item">Adăugați un nou element în lista de verificare</string>
|
||||
<string name="add_new_checklist_items">Adăugați noi elemente în lista de verificare</string>
|
||||
<string name="checklist_is_empty">Lista de verificare este goală</string>
|
||||
<string name="remove_done_items">Elimină elementele realizate</string>
|
||||
<string name="add_to_the_top">Add to the top</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">Importare dosar</string>
|
||||
<string name="export_notes">Exportați toate notițele</string>
|
||||
<string name="import_notes">Importaţi notițele</string>
|
||||
<string name="import_notes_pro">Importaţi note (Pro)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">Cum pot schimba culoarea widget-urilor\?</string>
|
||||
<string name="faq_1_text">În cazul în care aveți doar un singur widget activ, îl puteți fie recrea, fie puteți utiliza butonul din setările aplicației pentru a-l personaliza. În cazul în care aveți mai multe widgeturi active, butonul din setările aplicației nu va fi disponibil. Deoarece aplicația acceptă personalizarea culorilor pentru fiecare widget în parte, va trebui să recreați widgetul pe care doriți să îl personalizați.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
@@ -1,7 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_launcher_name">Заметки</string>
|
||||
<string name="widget_config">Thank you for using Fossify Notes.\nFor more apps from Fossify, please visit fossify.org.</string>
|
||||
<string name="cannot_share_empty_text">Нельзя поделиться пустым текстом</string>
|
||||
<string name="new_note">Добавить новую заметку</string>
|
||||
<string name="no_title">Пожалуйста, назовите заметку</string>
|
||||
@@ -29,7 +28,6 @@
|
||||
<string name="new_text_note">Новая заметка</string>
|
||||
<string name="new_checklist">Новый список</string>
|
||||
<string name="cannot_load_over_internet">Приложение не может загружать файлы через интернет</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">Открыть файл</string>
|
||||
<string name="export_as_file">Экспортировать в файл</string>
|
||||
<string name="file_too_large">Файл слишком большой, лимит 1 МБ</string>
|
||||
@@ -42,7 +40,6 @@
|
||||
<string name="note_exported_successfully">Заметка \"%s\" экспортирована</string>
|
||||
<string name="only_export_file_content">Экспортировать только текущее содержимое файла
|
||||
\n(изменение заметки не затронет файл)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">Уведомлять об успешном сохранении файла</string>
|
||||
<string name="links_and_emails_clickable">Активные ссылки и адреса электронной почты</string>
|
||||
<string name="place_cursor_end">Помещать курсор в конец заметки</string>
|
||||
@@ -61,7 +58,6 @@
|
||||
<string name="use_incognito_mode">Использовать режим инкогнито для клавиатур</string>
|
||||
<string name="move_done_checklist_items">Перемещать выполненные позиции в конец списка</string>
|
||||
<string name="add_new_checklist_items_top">Добавлять новые позиции в начало списка</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">Список</string>
|
||||
<string name="checklists">Списки</string>
|
||||
<string name="add_new_checklist_item">Добавить позицию в список</string>
|
||||
@@ -69,16 +65,10 @@
|
||||
<string name="checklist_is_empty">Список пуст</string>
|
||||
<string name="remove_done_items">Удалить выполненные позиции</string>
|
||||
<string name="add_to_the_top">Добавить в начало</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">Импортировать папку</string>
|
||||
<string name="export_notes">Экспортировать заметки</string>
|
||||
<string name="import_notes">Импортировать заметки</string>
|
||||
<string name="import_notes_pro">Импортировать заметки (Pro)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">Как я могу изменить цвет виджета\?</string>
|
||||
<string name="faq_1_text">Если у вас только 1 активный виджет, вы можете либо пересоздать его, либо использовать кнопку в настройках приложения. Если у вас несколько активных виджетов, кнопка в настройках будет недоступна. Поскольку приложение поддерживает настройку цвета для каждого виджета, вам придётся пересоздать виджет, который вы хотите настроить.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
@@ -1,86 +1,3 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_launcher_name">Notes</string>
|
||||
<string name="widget_config">Thank you for using Fossify Notes.\nFor more apps from Fossify, please visit fossify.org.</string>
|
||||
<string name="cannot_share_empty_text">Cannot share empty text</string>
|
||||
<string name="new_note">Add a new note</string>
|
||||
<string name="no_title">Please name your note</string>
|
||||
<string name="title_taken">A note with that title already exists</string>
|
||||
<string name="open_note">Open note</string>
|
||||
<string name="delete_note">Delete note</string>
|
||||
<string name="delete_note_prompt_message">Are you sure you want to delete note \"%s\"?</string>
|
||||
<string name="pick_a_note">Pick a note</string>
|
||||
<string name="rename_note">Rename note</string>
|
||||
<string name="general_note">General note</string>
|
||||
<string name="create_new_note">Create a new note</string>
|
||||
<string name="add_to_note">Add to note</string>
|
||||
<string name="unsaved_changes_warning">You have some unsaved changes. What do you want to do with them?</string>
|
||||
<string name="note_shown_widget">Note shown in the widget:</string>
|
||||
<string name="show_note_title">Show note title</string>
|
||||
<string name="new_note_type">New note type:</string>
|
||||
<string name="text_note">Text note</string>
|
||||
<string name="lock_note">Lock note</string>
|
||||
<string name="unlock_note">Unlock note</string>
|
||||
<string name="unlock_notes">Unlock notes</string>
|
||||
<string name="found_locked_notes_info">The following notes are locked. You can either unlock them one by one or skip exporting them.</string>
|
||||
<string name="note_content_locked">The notes\' content is locked.</string>
|
||||
<string name="show_content">Show content</string>
|
||||
<string name="locking_warning">WARNING: If you forget the notes\' password, you won\'t be able to recover it or access the notes\' content anymore.</string>
|
||||
<string name="new_text_note">New text note</string>
|
||||
<string name="new_checklist">New checklist</string>
|
||||
<string name="cannot_load_over_internet">The app cannot load files over the internet</string>
|
||||
|
||||
<!-- File notes -->
|
||||
<string name="open_file">Open file</string>
|
||||
<string name="export_as_file">Export as file</string>
|
||||
<string name="file_too_large">File too large, the limit is 1MB</string>
|
||||
<string name="only_import_file_content">Only import the file content\n(changing the file will not affect the note)</string>
|
||||
<string name="update_file_at_note">Update the file itself at updating the note\n(note gets deleted if file gets deleted, or path changes)</string>
|
||||
<string name="delete_file_itself">Also delete file \"%s\"</string>
|
||||
<string name="note_saved_successfully">Note \"%s\" saved successfully</string>
|
||||
<string name="note_exported_successfully">Note \"%s\" exported successfully</string>
|
||||
<string name="only_export_file_content">Only export the current file content\n(changing the note will not affect the file)</string>
|
||||
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">Display save success messages</string>
|
||||
<string name="links_and_emails_clickable">Make links and emails clickable</string>
|
||||
<string name="place_cursor_end">Place cursor to the end of note</string>
|
||||
<string name="monospaced_font">Use monospaced font</string>
|
||||
<string name="show_keyboard">Show keyboard on startup</string>
|
||||
<string name="show_word_count">Show word count</string>
|
||||
<string name="show_character_count">Show character count</string>
|
||||
<string name="alignment">Alignment</string>
|
||||
<string name="left">Left</string>
|
||||
<string name="center">Center</string>
|
||||
<string name="right">Right</string>
|
||||
<string name="widget_note">Note used in widget</string>
|
||||
<string name="show_note_picker">Show a note picker on startup</string>
|
||||
<string name="autosave_notes">Autosave notes</string>
|
||||
<string name="enable_line_wrap">Enable line wrap</string>
|
||||
<string name="use_incognito_mode">Use Incognito mode of keyboards</string>
|
||||
<string name="move_done_checklist_items">Move done checklist items to the bottom</string>
|
||||
<string name="add_new_checklist_items_top">Add new checklist items at the top</string>
|
||||
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">Checklist</string>
|
||||
<string name="checklists">Checklists</string>
|
||||
<string name="add_new_checklist_item">Add a new checklist item</string>
|
||||
<string name="add_new_checklist_items">Add new checklist items</string>
|
||||
<string name="checklist_is_empty">The checklist is empty</string>
|
||||
<string name="remove_done_items">Remove done items</string>
|
||||
<string name="add_to_the_top">Add to the top</string>
|
||||
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">Import folder</string>
|
||||
<string name="export_notes">Export notes</string>
|
||||
<string name="import_notes">Import notes</string>
|
||||
<string name="import_notes_pro">Import notes (Pro)</string>
|
||||
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">How can I change the widgets color?</string>
|
||||
<string name="faq_1_text">In case you have only 1 active widget, you can either recreate it, or use the button in the app settings for customizing it. If you have multiple active widgets, the button in the app settings will not be available. As the app supports color customization per-widget, you will have to recreate the widget that you want to customize.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
@@ -1,7 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_launcher_name">Poznámky</string>
|
||||
<string name="widget_config">Thank you for using Fossify Notes.\nFor more apps from Fossify, please visit fossify.org.</string>
|
||||
<string name="cannot_share_empty_text">Nedá sa zdieľať prázdny text</string>
|
||||
<string name="new_note">Pridať novú poznámku</string>
|
||||
<string name="no_title">Prosím pomenujte poznámku</string>
|
||||
@@ -29,7 +28,6 @@
|
||||
<string name="new_text_note">Nová textová poznámka</string>
|
||||
<string name="new_checklist">Nový zoznam položiek</string>
|
||||
<string name="cannot_load_over_internet">Apka nevie načítať súbory cez internet</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">Otvoriť súbor</string>
|
||||
<string name="export_as_file">Exportovať ako súbor</string>
|
||||
<string name="file_too_large">Súbor je príliš veľký, maximálny limit je 1MB</string>
|
||||
@@ -42,7 +40,6 @@
|
||||
<string name="note_exported_successfully">Poznámka \"%s\" bola úspešne exportovaná</string>
|
||||
<string name="only_export_file_content">Iba exportovať súčasný obsah súboru
|
||||
\n(úprava poznámky nebude mať vplyv na súbor)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">Zobraziť správu o úspešnom uložení poznámky</string>
|
||||
<string name="links_and_emails_clickable">Spraviť odkazy a emaily klikateľnými</string>
|
||||
<string name="place_cursor_end">Umiestniť kurzor na koniec poznámky</string>
|
||||
@@ -61,7 +58,6 @@
|
||||
<string name="use_incognito_mode">Použiť Inkognito mód klávesníc</string>
|
||||
<string name="move_done_checklist_items">Presunúť splnené položky zo zoznamu položiek na spodok</string>
|
||||
<string name="add_new_checklist_items_top">Pridávať nové položky do zoznamov na vrch</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">Zoznam položiek</string>
|
||||
<string name="checklists">Zoznamy položiek</string>
|
||||
<string name="add_new_checklist_item">Pridať do zoznamu novú položku</string>
|
||||
@@ -69,16 +65,10 @@
|
||||
<string name="checklist_is_empty">Zoznam položiek je prázdny</string>
|
||||
<string name="remove_done_items">Odstrániť splnené položky</string>
|
||||
<string name="add_to_the_top">Pridať na vrch</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">Importovať priečinok</string>
|
||||
<string name="export_notes">Exportovať poznámky</string>
|
||||
<string name="import_notes">Importovať poznámky</string>
|
||||
<string name="import_notes_pro">Importovať poznámky (Pro)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">Ako viem zmeniť farby widgetu\?</string>
|
||||
<string name="faq_1_text">V prípade, že máte iba 1 aktívny widget, ho môžete buď znova vytvoriť, alebo použiť tlačidlo v nastaveniach apky na zmenu farby. Ak máte widgetov viacero, tlačidlo v nastaveniach apky zmizne. Keďže apka podporuje rôzne farby pre každý widget, budete musieť znovu vytvoriť ten widget, ktorého farby chcete zmeniť.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
@@ -1,7 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_launcher_name">Opombe</string>
|
||||
<string name="widget_config">Thank you for using Fossify Notes.\nFor more apps from Fossify, please visit fossify.org.</string>
|
||||
<string name="cannot_share_empty_text">Prazno besedilo ni deljivo</string>
|
||||
<string name="new_note">Novo opombo dodajte</string>
|
||||
<string name="no_title">Poimenujte vašo opombo</string>
|
||||
@@ -21,15 +20,11 @@
|
||||
<string name="text_note">Opomba k besedilu</string>
|
||||
<string name="lock_note">Opomba glede zaklepanja</string>
|
||||
<string name="unlock_note">Opomba o odklepanju</string>
|
||||
<string name="unlock_notes">Unlock notes</string>
|
||||
<string name="found_locked_notes_info">The following notes are locked. You can either unlock them one by one or skip exporting them.</string>
|
||||
<string name="note_content_locked">Zaklenjena vsebina opomb.</string>
|
||||
<string name="show_content">Prikaži vsebino</string>
|
||||
<string name="locking_warning">OPOZORILO: Če pozabite geslo za opombe, ga ne bo moč več obnoviti in dostopati do njihove vsebine.</string>
|
||||
<string name="new_text_note">Nova opomba k besedilu</string>
|
||||
<string name="new_checklist">Nov seznam za preverjanje</string>
|
||||
<string name="cannot_load_over_internet">The app cannot load files over the internet</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">Odprite datoteko</string>
|
||||
<string name="export_as_file">Izvozite kot datoteko</string>
|
||||
<string name="file_too_large">Prevelika datoteka, omejitev je 1MB</string>
|
||||
@@ -39,7 +34,6 @@
|
||||
<string name="note_saved_successfully">Opomba \"%s\" uspešno shranjena</string>
|
||||
<string name="note_exported_successfully">Opomba \"%s\" uspešno izvožena</string>
|
||||
<string name="only_export_file_content">Izvozite le trenutno vsebino datoteke\n(sprememba opombe ne vpliva na datoteko)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">Pokažite sporočila o uspešnem shranjevanju</string>
|
||||
<string name="links_and_emails_clickable">Poskrbite, da je moč klikniti povezave in e-poštna sporočila</string>
|
||||
<string name="place_cursor_end">Kazalec postavite na koncu opomb</string>
|
||||
@@ -58,20 +52,16 @@
|
||||
<string name="use_incognito_mode">Uporabite način inkognito na tipkovnicah</string>
|
||||
<string name="move_done_checklist_items">Na dno premaknite postavke kontrolnega seznama</string>
|
||||
<string name="add_new_checklist_items_top">Dodajte nove elemente kontrolnega seznama na vrh</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">Preverjanje</string>
|
||||
<string name="checklists">Preverjanje seznamov</string>
|
||||
<string name="add_new_checklist_item">Dodajte novo zadevo na seznam</string>
|
||||
<string name="add_new_checklist_items">Dodajte nove zadeve na seznam</string>
|
||||
<string name="checklist_is_empty">Seznam kontrolni je prazen</string>
|
||||
<string name="remove_done_items">Odstranite opravljene elemente</string>
|
||||
<string name="add_to_the_top">Add to the top</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">Uvozite datoteko</string>
|
||||
<string name="export_notes">Izvozite opombe</string>
|
||||
<string name="import_notes">Uvozite opombe</string>
|
||||
<string name="import_notes_pro">Uvozite opombe (Pro)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">Kako lahko spremenim barvo pripomočkov\?</string>
|
||||
<string name="faq_1_text">V primeru le enega aktivnega pripomočka, ga ponovno ustvarite ali uporabite gumb v nastavitvah aplikacije za njegovo prilagoditev. Če imate več aktivnih gradnikov, gumb v nastavitvah aplikacije ne bo na voljo. Ker aplikacija podpira prilagajanje barv za posamezen pripomoček, ga boste morali ponovno ustvariti, v primeru prilagoditve.</string>
|
||||
</resources>
|
||||
</resources>
|
||||
@@ -1,7 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_launcher_name">Напомене</string>
|
||||
<string name="widget_config">Thank you for using Fossify Notes.\nFor more apps from Fossify, please visit fossify.org.</string>
|
||||
<string name="cannot_share_empty_text">Не можете да делите празан текст</string>
|
||||
<string name="new_note">Додајте нову белешку</string>
|
||||
<string name="no_title">Молимо да наведете своју белешку</string>
|
||||
@@ -21,15 +20,11 @@
|
||||
<string name="text_note">Текст напомене</string>
|
||||
<string name="lock_note">Закључај белешку</string>
|
||||
<string name="unlock_note">Откључај белешку</string>
|
||||
<string name="unlock_notes">Unlock notes</string>
|
||||
<string name="found_locked_notes_info">The following notes are locked. You can either unlock them one by one or skip exporting them.</string>
|
||||
<string name="note_content_locked">Садржај белешки је закључан.</string>
|
||||
<string name="show_content">Прикажи садржај</string>
|
||||
<string name="locking_warning">УПОЗОРЕЊЕ: Ако заборавите лозинку за белешке, више нећете моћи да је повратите нити да приступите садржају белешки.</string>
|
||||
<string name="new_text_note">Нова текстуална белешка</string>
|
||||
<string name="new_checklist">Нова контролна листа</string>
|
||||
<string name="cannot_load_over_internet">The app cannot load files over the internet</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">Отворена датотека</string>
|
||||
<string name="export_as_file">Извези као датотеку</string>
|
||||
<string name="file_too_large">Датотека је превелика, ограничење је 1 МБ</string>
|
||||
@@ -39,7 +34,6 @@
|
||||
<string name="note_saved_successfully">Белешке \"%s\" су успешно сачуване</string>
|
||||
<string name="note_exported_successfully">Белешке \"%s\" успешно извезено</string>
|
||||
<string name="only_export_file_content">Извезите само тренутни садржај датотеке\n(промена белешке неће утицати на датотеку)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">Прикажите поруке о успеху чувања</string>
|
||||
<string name="links_and_emails_clickable">Учините линкове и е-поруке на које се може кликнути</string>
|
||||
<string name="place_cursor_end">Поставите курсор на крај белешке</string>
|
||||
@@ -58,20 +52,16 @@
|
||||
<string name="use_incognito_mode">Користите анонимни режим тастатура</string>
|
||||
<string name="move_done_checklist_items">Померите готове ставке контролне листе на дно</string>
|
||||
<string name="add_new_checklist_items_top">Додајте нове ставке контролне листе на врх</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">Контролна листа</string>
|
||||
<string name="checklists">Контролне листе</string>
|
||||
<string name="add_new_checklist_item">Додајте нову ставку контролне листе</string>
|
||||
<string name="add_new_checklist_items">Додајте нове ставке контролне листе</string>
|
||||
<string name="checklist_is_empty">Контролна листа је празна</string>
|
||||
<string name="remove_done_items">Уклоните готове ставке</string>
|
||||
<string name="add_to_the_top">Add to the top</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">Увоз фолдера</string>
|
||||
<string name="export_notes">Извези све белешке</string>
|
||||
<string name="import_notes">Увезите белешке</string>
|
||||
<string name="import_notes_pro">Увезите белешке (Про)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">Како могу да променим боју виџета\?</string>
|
||||
<string name="faq_1_text">У случају да имате само 1 активан виџет, можете га поново креирати или користити дугме у подешавањима апликације да бисте га прилагодили. Ако имате више активних виџета, дугме у подешавањима апликације неће бити доступно. Пошто апликација подржава прилагођавање боја по виџету, мораћете поново да креирате виџет који желите да прилагодите.</string>
|
||||
</resources>
|
||||
</resources>
|
||||
@@ -1,7 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_launcher_name">Anteckningar</string>
|
||||
<string name="widget_config">Thank you for using Fossify Notes.\nFor more apps from Fossify, please visit fossify.org.</string>
|
||||
<string name="cannot_share_empty_text">Det går inte att dela en tom anteckning</string>
|
||||
<string name="new_note">Ny anteckning</string>
|
||||
<string name="no_title">Namnge din anteckning</string>
|
||||
@@ -29,7 +28,6 @@
|
||||
<string name="new_text_note">Ny textanteckning</string>
|
||||
<string name="new_checklist">Ny checklista</string>
|
||||
<string name="cannot_load_over_internet">Appen kan inte läsa in filer på internet</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">Öppna fil</string>
|
||||
<string name="export_as_file">Exportera</string>
|
||||
<string name="file_too_large">Filen är för stor, gränsen är 1MB</string>
|
||||
@@ -42,7 +40,6 @@
|
||||
<string name="note_exported_successfully">Anteckningen \"%s\" har exporterats</string>
|
||||
<string name="only_export_file_content">Exportera endast det aktuella filinnehållet
|
||||
\n(att ändra anteckningen påverkar inte filen)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">Visa ett meddelande när en anteckning har sparats</string>
|
||||
<string name="links_and_emails_clickable">Gör länkar och e-postadresser tryckbara</string>
|
||||
<string name="place_cursor_end">Placera markören vid slutet av anteckningen</string>
|
||||
@@ -61,7 +58,6 @@
|
||||
<string name="use_incognito_mode">Använd tangentbordets inkognitoläge</string>
|
||||
<string name="move_done_checklist_items">Flytta slutförda checklisteobjekt längst ned</string>
|
||||
<string name="add_new_checklist_items_top">Lägg till nya checklisteobjekt överst</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">Checklista</string>
|
||||
<string name="checklists">Checklistor</string>
|
||||
<string name="add_new_checklist_item">Lägg till ett nytt checklisteobjekt</string>
|
||||
@@ -69,16 +65,10 @@
|
||||
<string name="checklist_is_empty">Checklistan är tom</string>
|
||||
<string name="remove_done_items">Ta bort slutförda</string>
|
||||
<string name="add_to_the_top">Lägg till överst</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">Importera mapp</string>
|
||||
<string name="export_notes">Exportera anteckningar</string>
|
||||
<string name="import_notes">Importera</string>
|
||||
<string name="import_notes_pro">Importera (Pro)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">Hur ändrar jag färgen på widgetarna\?</string>
|
||||
<string name="faq_1_text">Om du bara har 1 aktiv widget kan du antingen återskapa den eller använda knappen i appinställningarna för att anpassa den. Om du har flera aktiva widgetar är knappen i appinställningarna inte tillgänglig. Eftersom appen stöder färganpassning per widget måste du återskapa den widget som du vill anpassa.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
@@ -1,7 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_launcher_name">โน้ต</string>
|
||||
<string name="widget_config">Thank you for using Fossify Notes.\nFor more apps from Fossify, please visit fossify.org.</string>
|
||||
<string name="cannot_share_empty_text">ไม่สามารถแชร์ข้อความที่ว่างเปล่าได้</string>
|
||||
<string name="new_note">เพิ่มโน็ตใหม่</string>
|
||||
<string name="no_title">โปรดตั้งชื่อโน็ตของคุณ</string>
|
||||
@@ -21,15 +20,11 @@
|
||||
<string name="text_note">โน็ตข้อความ</string>
|
||||
<string name="lock_note">ล็อกโน็ต</string>
|
||||
<string name="unlock_note">ปลดล็อกโน็ต</string>
|
||||
<string name="unlock_notes">Unlock notes</string>
|
||||
<string name="found_locked_notes_info">The following notes are locked. You can either unlock them one by one or skip exporting them.</string>
|
||||
<string name="note_content_locked">ข้อมูลในโน็ตถูกล็อก</string>
|
||||
<string name="show_content">แสดงข้อมูล</string>
|
||||
<string name="locking_warning">คำเตือน: ถ้าคุณลืมรหัสผ่านของโน็ต คุณจะไม่สามารถกู้คืนหรือเข้าถึงโน็ตตัวนั้นได้อีกต่อไป</string>
|
||||
<string name="new_text_note">เพิ่มโน็ตข้อความใหม่</string>
|
||||
<string name="new_checklist">เพิ่มรายการตรวจสอบใหม่</string>
|
||||
<string name="cannot_load_over_internet">The app cannot load files over the internet</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">เปิดไฟล์</string>
|
||||
<string name="export_as_file">ส่งออกเป็นไฟล์</string>
|
||||
<string name="file_too_large">ไฟล์ใหญ่เกิน จำกัดอยู่ 1 เมกะไบต์</string>
|
||||
@@ -42,7 +37,6 @@
|
||||
<string name="note_exported_successfully">โน็ต \"%s\" ส่งออกสำเร็จ</string>
|
||||
<string name="only_export_file_content">เอาข้อมูลในไฟล์ส่งออกเท่านั้น
|
||||
\n(เปลี่ยนโน็ตจะไม่ส่งผลกับไฟล์)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">แสดงข้อความให้เห็นว่าบันทึกเรียบร้อย</string>
|
||||
<string name="links_and_emails_clickable">ทำให้ลิงค์หรืออีเมล์กดเข้าได้</string>
|
||||
<string name="place_cursor_end">เอาเคอร์เซอร์ไว้ที่ท้ายสุดของโน็ต</string>
|
||||
@@ -61,24 +55,16 @@
|
||||
<string name="use_incognito_mode">ใช้คีย์บอร์ดในโหมดไม่ระบุตัวตน</string>
|
||||
<string name="move_done_checklist_items">ย้ายรายการตรวจสอบที่เรียบร้อยไปไว้ด้านล่าง</string>
|
||||
<string name="add_new_checklist_items_top">เพิ่มรายการตรวจสอบใหม่ไว้ด้านบน</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">รายการตรวจสอบ</string>
|
||||
<string name="checklists">รายการตรวจสอบ</string>
|
||||
<string name="add_new_checklist_item">เพิ่มรายการตรวจสอบใหม่</string>
|
||||
<string name="add_new_checklist_items">เพิ่มรายการตรวจสอบใหม่</string>
|
||||
<string name="checklist_is_empty">รายการตรวจนั้นว่างเปล่า</string>
|
||||
<string name="remove_done_items">ลบของที่เรียบร้อยแล้ว</string>
|
||||
<string name="add_to_the_top">Add to the top</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">เอาโฟลเดอร์เข้า</string>
|
||||
<string name="export_notes">ส่งออกโน็ตทุกตัว</string>
|
||||
<string name="import_notes">นำเข้าโน็ตทุกตัว</string>
|
||||
<string name="import_notes_pro">นำเข้าโน็ต (โปร)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">เปลี่ยนสีวิดเจ็ตอย่างไร\?</string>
|
||||
<string name="faq_1_text">ในกรณีที่คุณมีวิดเจ็ตตัวเดียว คุณสามารถสร้างใหม่ได้ หรือ ใช้ปุ่มในการตั้งค่าของแอปเพื่อตกแต่งมัน ถ้าคุณมีวิดเจ็ตหลายตัว ปุ่มในการตั้งค่าของแอปจะไม่มีอยู่ เพราะว่าแอปสนับสนุนการตกแต่งสีในแต่ละวิดเจ็ต คุณจะต้องสร้างวิดเจ็ตที่ต้องการใหม่เพื่อตกแต่ง</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
@@ -30,7 +30,6 @@
|
||||
<string name="new_text_note">Yeni metin notu</string>
|
||||
<string name="new_checklist">Yeni yapılacak listesi</string>
|
||||
<string name="cannot_load_over_internet">Uygulama internet üzerinden dosya yükleyemiyor</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">Dosya aç</string>
|
||||
<string name="export_as_file">Dosya olarak aktar</string>
|
||||
<string name="file_too_large">Dosya çok büyük, sınır 1MB</string>
|
||||
@@ -43,7 +42,6 @@
|
||||
<string name="note_exported_successfully">\"%s\" notu başarıyla dışa aktarıldı</string>
|
||||
<string name="only_export_file_content">Yalnızca geçerli dosya içeriğini dışa aktar
|
||||
\n(notu değiştirmek dosyayı etkilemez)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">Başarıyla kaydedildi mesajlarını görüntüle</string>
|
||||
<string name="links_and_emails_clickable">Bağlantıları ve e-postaları tıklanabilir yap</string>
|
||||
<string name="place_cursor_end">İmleci notun sonuna getir</string>
|
||||
@@ -62,7 +60,6 @@
|
||||
<string name="use_incognito_mode">Klavyelerin Gizli modunu kullan</string>
|
||||
<string name="move_done_checklist_items">Tamamlanan yapılacak listesi ögelerini en alta taşı</string>
|
||||
<string name="add_new_checklist_items_top">Yeni yapılacak listesi ögelerini en üste taşı</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">Yapılacak listesi</string>
|
||||
<string name="checklists">Yapılacak listeleri</string>
|
||||
<string name="add_new_checklist_item">Yeni bir yapılacak listesi ögesi ekle</string>
|
||||
@@ -70,16 +67,10 @@
|
||||
<string name="checklist_is_empty">Yapılacak listesi boş</string>
|
||||
<string name="remove_done_items">Tamamlanan ögeleri kaldır</string>
|
||||
<string name="add_to_the_top">En üste ekle</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">Klasörü içe aktar</string>
|
||||
<string name="export_notes">Notları dışa aktar</string>
|
||||
<string name="import_notes">Notları içe aktar</string>
|
||||
<string name="import_notes_pro">Notları içe aktar (Pro)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">Widget rengini nasıl değiştirebilirim\?</string>
|
||||
<string name="faq_1_text">Yalnızca 1 etkin widget\'ınız varsa, yeniden oluşturabilir veya özelleştirmek için uygulama ayarlarındaki düğmeyi kullanabilirsiniz. Birden fazla etkin widget\'ınız varsa, uygulama ayarlarındaki düğme kullanılamaz. Uygulama, widget başına renk özelleştirmeyi desteklediğinden, özelleştirmek istediğiniz widget\'ı yeniden oluşturmanız gerekir.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
@@ -1,7 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_launcher_name">Нотатник</string>
|
||||
<string name="widget_config">Thank you for using Fossify Notes.\nFor more apps from Fossify, please visit fossify.org.</string>
|
||||
<string name="cannot_share_empty_text">Не можна поділитися пустою нотаткою</string>
|
||||
<string name="new_note">Додати нову нотатку</string>
|
||||
<string name="no_title">Будь ласка, іменуйте вашу нотатку</string>
|
||||
@@ -29,7 +28,6 @@
|
||||
<string name="new_text_note">Нова текстова нотатка</string>
|
||||
<string name="new_checklist">Новий список</string>
|
||||
<string name="cannot_load_over_internet">Застосунок не може завантажувати файли через Інтернет</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">Відкрити файл</string>
|
||||
<string name="export_as_file">Експортувати як файл</string>
|
||||
<string name="file_too_large">Файл надто великий, ліміт 1MB</string>
|
||||
@@ -42,7 +40,6 @@
|
||||
<string name="note_exported_successfully">Нотатка \"%s\" успішно експортована</string>
|
||||
<string name="only_export_file_content">Експортувати лише поточний вміст файлу
|
||||
\n(зміна нотатки не вплине на файл)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">Повідомляти, що файл успішно збережено</string>
|
||||
<string name="links_and_emails_clickable">Зробити активними посилання та адреси електронної пошти</string>
|
||||
<string name="place_cursor_end">Розташувати курсор в кінці нотатки</string>
|
||||
@@ -61,7 +58,6 @@
|
||||
<string name="use_incognito_mode">Використовувати режим Приватності в клавіатурі</string>
|
||||
<string name="move_done_checklist_items">Поміщати виконані позиції в кінець списку</string>
|
||||
<string name="add_new_checklist_items_top">Додавати нові елементи на початку списку</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">Список</string>
|
||||
<string name="checklists">Списки</string>
|
||||
<string name="add_new_checklist_item">Додати нову позицію у списку</string>
|
||||
@@ -69,16 +65,10 @@
|
||||
<string name="checklist_is_empty">Список порожній</string>
|
||||
<string name="remove_done_items">Вилучати виконані позиції</string>
|
||||
<string name="add_to_the_top">Додати вгорі</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">Імпортувати теку</string>
|
||||
<string name="export_notes">Експортувати нотатки</string>
|
||||
<string name="import_notes">Імпортувати нотатки</string>
|
||||
<string name="import_notes_pro">Імпорт нотаток (Pro)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">Як я можу змінити колір віджетів\?</string>
|
||||
<string name="faq_1_text">Якщо у вас тільки 1 активний віджет, ви можете або відворити його знову, або використовувати кнопку в налаштуваннях програми. Якщо у вас декілька активних віджетів, кнопка в налаштуваннях буде недоступна. Оскільки додаток підтримує налаштування кольору для кожного віджета, вам доведеться відтворити віджет, який ви хочете налаштувати.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
@@ -30,7 +30,6 @@
|
||||
<string name="new_text_note">Ghi chú văn bản mới</string>
|
||||
<string name="new_checklist">Danh sách kiểm tra mới</string>
|
||||
<string name="cannot_load_over_internet">Ứng dụng không thể tải tập tin qua internet</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">Mở tập tin</string>
|
||||
<string name="export_as_file">Xuất dưới dạng tệp</string>
|
||||
<string name="file_too_large">Tệp quá lớn, giới hạn là 1MB</string>
|
||||
@@ -40,7 +39,6 @@
|
||||
<string name="note_saved_successfully">Ghi chú \"%s\" thành công</string>
|
||||
<string name="note_exported_successfully">Xuất ghi chú \"%s\" thành công</string>
|
||||
<string name="only_export_file_content">Chỉ xuất nội dung tệp hiện tại \n (việc thay đổi ghi chú sẽ không ảnh hưởng đến tệp)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">Hiển thị thông báo lưu thành công</string>
|
||||
<string name="links_and_emails_clickable">Làm cho các liên kết và email có thể nhấp được</string>
|
||||
<string name="place_cursor_end">Đặt con trỏ đến cuối ghi chú</string>
|
||||
@@ -59,7 +57,6 @@
|
||||
<string name="use_incognito_mode">Sử dụng chế độ Ẩn danh của bàn phím</string>
|
||||
<string name="move_done_checklist_items">Di chuyển các mục trong danh sách kiểm tra đã hoàn thành xuống dưới cùng</string>
|
||||
<string name="add_new_checklist_items_top">Thêm các mục mới trong danh sách kiểm tra ở trên cùng</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">Danh sách kiểm tra</string>
|
||||
<string name="checklists">Danh sách kiểm tra</string>
|
||||
<string name="add_new_checklist_item">Thêm một mục mới trong danh sách kiểm tra</string>
|
||||
@@ -67,16 +64,10 @@
|
||||
<string name="checklist_is_empty">Danh sách kiểm tra trống</string>
|
||||
<string name="remove_done_items">Xóa các mục đã hoàn thành</string>
|
||||
<string name="add_to_the_top">Thêm trên đầu</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">Nhập thư mục</string>
|
||||
<string name="export_notes">Xuất tất cả các ghi chú</string>
|
||||
<string name="import_notes">Nhập ghi chú</string>
|
||||
<string name="import_notes_pro">Nhập ghi chú (Bản trả phí)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">Làm cách nào để thay đổi màu tiện ích?</string>
|
||||
<string name="faq_1_text">Trong trường hợp bạn chỉ có 1 tiện ích con đang hoạt động, bạn có thể tạo lại nó hoặc sử dụng nút trong cài đặt ứng dụng để tùy chỉnh nó. Nếu bạn có nhiều tiện ích con đang hoạt động, nút trong cài đặt ứng dụng sẽ không khả dụng. Vì ứng dụng hỗ trợ tùy chỉnh màu sắc cho mỗi tiện ích, bạn sẽ phải tạo lại tiện ích mà bạn muốn tùy chỉnh.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
@@ -30,7 +30,6 @@
|
||||
<string name="new_text_note">新建文本笔记</string>
|
||||
<string name="new_checklist">新建清单</string>
|
||||
<string name="cannot_load_over_internet">此应用无法通过互联网加载文件</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">打开文件</string>
|
||||
<string name="export_as_file">以文件的形式导出</string>
|
||||
<string name="file_too_large">文件太大了, 上限为 1MB</string>
|
||||
@@ -43,7 +42,6 @@
|
||||
<string name="note_exported_successfully">已成功导出笔记 \"%s\"</string>
|
||||
<string name="only_export_file_content">只导出当前文件内容
|
||||
\n(更改笔记将不会影响文件)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">显示保存成功消息</string>
|
||||
<string name="links_and_emails_clickable">使链接和电子邮件可点击</string>
|
||||
<string name="place_cursor_end">将光标放在笔记的末尾</string>
|
||||
@@ -62,24 +60,16 @@
|
||||
<string name="use_incognito_mode">对于键盘使用隐私模式</string>
|
||||
<string name="move_done_checklist_items">移动未完成的清单至顶端</string>
|
||||
<string name="add_new_checklist_items_top">在顶部添加新的清单项目</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">清单</string>
|
||||
<string name="checklists">清单</string>
|
||||
<string name="add_new_checklist_item">添加一个新的清单项目</string>
|
||||
<string name="add_new_checklist_items">添加新的清单项目</string>
|
||||
<string name="checklist_is_empty">清单为空</string>
|
||||
<string name="remove_done_items">删除完成的项目</string>
|
||||
<string name="add_to_the_top">Add to the top</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">导入文件夹</string>
|
||||
<string name="export_notes">导出笔记</string>
|
||||
<string name="import_notes">导入笔记</string>
|
||||
<string name="import_notes_pro">导入笔记 (Pro)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">我如何更改小工具颜色?</string>
|
||||
<string name="faq_1_text">如果您仅用一个活动的小工具,您既可以重新创建它,或者使用应用程序设定的按钮来自定义它。如果您拥有多个活动的小工具,应用程序设定中的按钮将不可用。因为应用程序支持小工具分别自定义,您必须要重新创建小工具来自定义它们。</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
@@ -1,7 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_launcher_name">簡易筆記</string>
|
||||
<string name="widget_config">Thank you for using Fossify Notes.\nFor more apps from Fossify, please visit fossify.org.</string>
|
||||
<string name="cannot_share_empty_text">無法分享空白內容</string>
|
||||
<string name="new_note">新增筆記</string>
|
||||
<string name="no_title">請為你的筆記命名</string>
|
||||
@@ -19,17 +18,10 @@
|
||||
<string name="show_note_title">顯示筆記標題</string>
|
||||
<string name="new_note_type">新筆記類型:</string>
|
||||
<string name="text_note">文字筆記</string>
|
||||
<string name="lock_note">Lock note</string>
|
||||
<string name="unlock_note">解鎖筆記</string>
|
||||
<string name="unlock_notes">Unlock notes</string>
|
||||
<string name="found_locked_notes_info">The following notes are locked. You can either unlock them one by one or skip exporting them.</string>
|
||||
<string name="note_content_locked">筆記的內容已被鎖定。</string>
|
||||
<string name="show_content">Show content</string>
|
||||
<string name="locking_warning">警告:如果您遺忘了筆記的密碼,您將無法找回它或再次存取筆記的內容。</string>
|
||||
<string name="new_text_note">新文字筆記</string>
|
||||
<string name="new_checklist">New checklist</string>
|
||||
<string name="cannot_load_over_internet">The app cannot load files over the internet</string>
|
||||
<!-- File notes -->
|
||||
<string name="open_file">打開檔案</string>
|
||||
<string name="export_as_file">匯出成檔案</string>
|
||||
<string name="file_too_large">檔案太大,上限為 1MB</string>
|
||||
@@ -42,7 +34,6 @@
|
||||
<string name="note_exported_successfully">筆記「%s」匯出成功</string>
|
||||
<string name="only_export_file_content">只匯出目前的檔案內容
|
||||
\n(修改筆記不影響檔案)</string>
|
||||
<!-- Settings -->
|
||||
<string name="display_success_message">顯示儲存成功的訊息</string>
|
||||
<string name="links_and_emails_clickable">使連結和信箱可點擊</string>
|
||||
<string name="place_cursor_end">將游標置於筆記末尾</string>
|
||||
@@ -60,25 +51,13 @@
|
||||
<string name="enable_line_wrap">自動換行</string>
|
||||
<string name="use_incognito_mode">使用無痕模式的鍵盤</string>
|
||||
<string name="move_done_checklist_items">將未完成的核對清單項目移動至頂端</string>
|
||||
<string name="add_new_checklist_items_top">Add new checklist items at the top</string>
|
||||
<!-- Checklists -->
|
||||
<string name="checklist">核對清單</string>
|
||||
<string name="checklists">Checklists</string>
|
||||
<string name="add_new_checklist_item">新增新的核對清單項目</string>
|
||||
<string name="add_new_checklist_items">新增新的核對清單項目</string>
|
||||
<string name="checklist_is_empty">核對清單為空白</string>
|
||||
<string name="remove_done_items">移除已完成的項目</string>
|
||||
<string name="add_to_the_top">Add to the top</string>
|
||||
<!-- Import / Export -->
|
||||
<string name="import_folder">匯入資料夾</string>
|
||||
<string name="export_notes">匯出筆記</string>
|
||||
<string name="import_notes">Import notes</string>
|
||||
<string name="import_notes_pro">Import notes (Pro)</string>
|
||||
<!-- FAQ -->
|
||||
<string name="faq_1_title">要怎麼變更小工具的顏色?</string>
|
||||
<string name="faq_1_text">要是你只有1個現行的小工具,你可以重新建立,或者使用程式設定中的按鈕來自訂。如果你有多個現行的小工具,程式設定中的按鈕會沒作用。你必須將想要自訂的小工具重新建立,如此一來程式便能支援每個小工具自訂顏色。</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/FossifyOrg/Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
22
graphics/foreground2.svg
Normal file
22
graphics/foreground2.svg
Normal file
@@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="512"
|
||||
height="512"
|
||||
viewBox="0 0 512 512"
|
||||
version="1.1"
|
||||
id="svg1"
|
||||
xml:space="preserve"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs1" /><rect
|
||||
style="fill:#106d1f"
|
||||
id="rect1"
|
||||
width="512"
|
||||
height="512"
|
||||
x="0"
|
||||
y="0" /><path
|
||||
d="m 170.66667,277.33333 q -4.53334,0 -7.6,-3.06667 -3.06667,-3.06667 -3.06667,-7.6 0,-4.53333 3.06667,-7.6 3.06666,-3.06667 7.6,-3.06667 H 224 q 4.53333,0 7.6,3.06667 3.06667,3.06667 3.06667,7.6 0,4.53333 -3.06667,7.6 -3.06667,3.06667 -7.6,3.06667 z m 0,-42.66667 q -4.53334,0 -7.6,-3.06667 -3.06667,-3.06666 -3.06667,-7.6 0,-4.53333 3.06667,-7.6 3.06666,-3.06666 7.6,-3.06666 h 96 q 4.53333,0 7.6,3.06666 3.06667,3.06667 3.06667,7.6 0,4.53334 -3.06667,7.6 -3.06667,3.06667 -7.6,3.06667 z m 0,-42.66667 q -4.53334,0 -7.6,-3.06666 -3.06667,-3.06667 -3.06667,-7.6 0,-4.53334 3.06667,-7.6 3.06666,-3.06667 7.6,-3.06667 h 96 q 4.53333,0 7.6,3.06667 3.06667,3.06666 3.06667,7.6 0,4.53333 -3.06667,7.6 -3.06667,3.06666 -7.6,3.06666 z M 256,330.66666 v -17.6 q 0,-2.13333 0.8,-4.13333 0.8,-2 2.4,-3.6 l 55.73334,-55.46667 q 2.4,-2.4 5.33333,-3.46667 2.93333,-1.06666 5.86667,-1.06666 3.2,0 6.13333,1.2 2.93333,1.2 5.33333,3.6 l 9.86667,9.86666 q 2.13333,2.4 3.33333,5.33334 1.2,2.93333 1.2,5.86666 0,2.93334 -1.06666,6 -1.06667,3.06667 -3.46667,5.46667 L 292,338.13333 q -1.6,1.6 -3.6,2.4 -2,0.8 -4.13333,0.8 h -17.6 q -4.53333,0 -7.6,-3.06667 Q 256,335.19999 256,330.66666 Z m 70.13334,-49.06667 9.86666,-10.4 -9.86666,-9.86666 L 316,271.46666 Z M 272,325.33333 h 10.13334 L 314.4,292.79999 l -4.8,-5.06666 -5.06666,-4.8 L 272,315.19999 Z m 0,0 v -10.13334 l 32.53334,-32.26666 9.86666,9.86666 -32.26666,32.53334 z"
|
||||
id="path1"
|
||||
style="fill:#ffffff;stroke-width:0.266667" /></svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
Reference in New Issue
Block a user