mirror of
https://github.com/SimpleMobileTools/Simple-Notes.git
synced 2025-04-06 03:31:05 +02:00
Refactor code
This commit is contained in:
parent
75da88ba33
commit
0132c9b157
@ -243,8 +243,7 @@ class MainActivity : SimpleActivity() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun isCurrentItemChecklist() = mAdapter?.isChecklistFragment(view_pager.currentItem)
|
private fun isCurrentItemChecklist() = mAdapter?.isChecklistFragment(view_pager.currentItem) ?: false
|
||||||
?: false
|
|
||||||
|
|
||||||
private fun checkIntents(intent: Intent) {
|
private fun checkIntents(intent: Intent) {
|
||||||
intent.apply {
|
intent.apply {
|
||||||
@ -506,11 +505,11 @@ class MainActivity : SimpleActivity() {
|
|||||||
val licenses = LICENSE_RTL
|
val licenses = LICENSE_RTL
|
||||||
|
|
||||||
val faqItems = arrayListOf(
|
val faqItems = arrayListOf(
|
||||||
FAQItem(R.string.faq_1_title_commons, R.string.faq_1_text_commons),
|
FAQItem(R.string.faq_1_title_commons, R.string.faq_1_text_commons),
|
||||||
FAQItem(R.string.faq_1_title, R.string.faq_1_text),
|
FAQItem(R.string.faq_1_title, R.string.faq_1_text),
|
||||||
FAQItem(R.string.faq_2_title_commons, R.string.faq_2_text_commons),
|
FAQItem(R.string.faq_2_title_commons, R.string.faq_2_text_commons),
|
||||||
FAQItem(R.string.faq_6_title_commons, R.string.faq_6_text_commons),
|
FAQItem(R.string.faq_6_title_commons, R.string.faq_6_text_commons),
|
||||||
FAQItem(R.string.faq_7_title_commons, R.string.faq_7_text_commons)
|
FAQItem(R.string.faq_7_title_commons, R.string.faq_7_text_commons)
|
||||||
)
|
)
|
||||||
|
|
||||||
startAboutActivity(R.string.app_name, licenses, BuildConfig.VERSION_NAME, faqItems, true)
|
startAboutActivity(R.string.app_name, licenses, BuildConfig.VERSION_NAME, faqItems, true)
|
||||||
@ -694,8 +693,8 @@ class MainActivity : SimpleActivity() {
|
|||||||
|
|
||||||
private fun showExportFilePickUpdateDialog(exportPath: String, textToExport: String) {
|
private fun showExportFilePickUpdateDialog(exportPath: String, textToExport: String) {
|
||||||
val items = arrayListOf(
|
val items = arrayListOf(
|
||||||
RadioItem(EXPORT_FILE_SYNC, getString(R.string.update_file_at_note)),
|
RadioItem(EXPORT_FILE_SYNC, getString(R.string.update_file_at_note)),
|
||||||
RadioItem(EXPORT_FILE_NO_SYNC, getString(R.string.only_export_file_content)))
|
RadioItem(EXPORT_FILE_NO_SYNC, getString(R.string.only_export_file_content)))
|
||||||
|
|
||||||
RadioGroupDialog(this, items) {
|
RadioGroupDialog(this, items) {
|
||||||
val syncFile = it as Int == EXPORT_FILE_SYNC
|
val syncFile = it as Int == EXPORT_FILE_SYNC
|
||||||
@ -725,8 +724,8 @@ class MainActivity : SimpleActivity() {
|
|||||||
private fun exportAllNotes() {
|
private fun exportAllNotes() {
|
||||||
ExportFilesDialog(this, mNotes) { parent, extension ->
|
ExportFilesDialog(this, mNotes) { parent, extension ->
|
||||||
val items = arrayListOf(
|
val items = arrayListOf(
|
||||||
RadioItem(EXPORT_FILE_SYNC, getString(R.string.update_file_at_note)),
|
RadioItem(EXPORT_FILE_SYNC, getString(R.string.update_file_at_note)),
|
||||||
RadioItem(EXPORT_FILE_NO_SYNC, getString(R.string.only_export_file_content)))
|
RadioItem(EXPORT_FILE_NO_SYNC, getString(R.string.only_export_file_content)))
|
||||||
|
|
||||||
RadioGroupDialog(this, items) {
|
RadioGroupDialog(this, items) {
|
||||||
val syncFile = it as Int == EXPORT_FILE_SYNC
|
val syncFile = it as Int == EXPORT_FILE_SYNC
|
||||||
@ -907,8 +906,7 @@ class MainActivity : SimpleActivity() {
|
|||||||
private fun saveCurrentNote(force: Boolean) {
|
private fun saveCurrentNote(force: Boolean) {
|
||||||
getPagerAdapter().saveCurrentNote(view_pager.currentItem, force)
|
getPagerAdapter().saveCurrentNote(view_pager.currentItem, force)
|
||||||
if (mCurrentNote.type == NoteType.TYPE_CHECKLIST.value) {
|
if (mCurrentNote.type == NoteType.TYPE_CHECKLIST.value) {
|
||||||
mCurrentNote.value = getPagerAdapter().getNoteChecklistItems(view_pager.currentItem)
|
mCurrentNote.value = getPagerAdapter().getNoteChecklistItems(view_pager.currentItem) ?: ""
|
||||||
?: ""
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -61,7 +61,7 @@ class ChecklistFragment : NoteFragment(), ChecklistItemsListener {
|
|||||||
try {
|
try {
|
||||||
val checklistItemType = object : TypeToken<List<ChecklistItem>>() {}.type
|
val checklistItemType = object : TypeToken<List<ChecklistItem>>() {}.type
|
||||||
items = Gson().fromJson<ArrayList<ChecklistItem>>(storedNote.value, checklistItemType)
|
items = Gson().fromJson<ArrayList<ChecklistItem>>(storedNote.value, checklistItemType)
|
||||||
?: ArrayList(1)
|
?: ArrayList(1)
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
migrateCheckListOnFailure(storedNote)
|
migrateCheckListOnFailure(storedNote)
|
||||||
}
|
}
|
||||||
@ -81,9 +81,9 @@ class ChecklistFragment : NoteFragment(), ChecklistItemsListener {
|
|||||||
|
|
||||||
note.value.split("\n").map { it.trim() }.filter { it.isNotBlank() }.forEachIndexed { index, value ->
|
note.value.split("\n").map { it.trim() }.filter { it.isNotBlank() }.forEachIndexed { index, value ->
|
||||||
items.add(ChecklistItem(
|
items.add(ChecklistItem(
|
||||||
id = index,
|
id = index,
|
||||||
title = value,
|
title = value,
|
||||||
isDone = false
|
isDone = false
|
||||||
))
|
))
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -138,11 +138,11 @@ class ChecklistFragment : NoteFragment(), ChecklistItemsListener {
|
|||||||
updateUIVisibility()
|
updateUIVisibility()
|
||||||
|
|
||||||
ChecklistAdapter(
|
ChecklistAdapter(
|
||||||
activity = activity as SimpleActivity,
|
activity = activity as SimpleActivity,
|
||||||
items = items,
|
items = items,
|
||||||
listener = this,
|
listener = this,
|
||||||
recyclerView = view.checklist_list,
|
recyclerView = view.checklist_list,
|
||||||
showIcons = true
|
showIcons = true
|
||||||
) { item ->
|
) { item ->
|
||||||
val clickedNote = item as ChecklistItem
|
val clickedNote = item as ChecklistItem
|
||||||
clickedNote.isDone = !clickedNote.isDone
|
clickedNote.isDone = !clickedNote.isDone
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:app="http://schemas.android.com/apk/res-auto">
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||||
<item
|
<item
|
||||||
android:id="@+id/save_note"
|
android:id="@+id/save_note"
|
||||||
android:icon="@drawable/ic_save_vector"
|
android:icon="@drawable/ic_save_vector"
|
||||||
|
@ -55,6 +55,7 @@
|
|||||||
<string name="add_new_checklist_item">إضافة عنصر قائمة تدقيق جديد</string>
|
<string name="add_new_checklist_item">إضافة عنصر قائمة تدقيق جديد</string>
|
||||||
<string name="add_new_checklist_items">إضافة عناصر قائمة تدقيق جديدة</string>
|
<string name="add_new_checklist_items">إضافة عناصر قائمة تدقيق جديدة</string>
|
||||||
<string name="checklist_is_empty">قائمة التدقيق فارغة</string>
|
<string name="checklist_is_empty">قائمة التدقيق فارغة</string>
|
||||||
|
<string name="remove_done_items">Remove done items</string>
|
||||||
|
|
||||||
<!-- Import / Export -->
|
<!-- Import / Export -->
|
||||||
<string name="export_all_notes">تصدير جميع الملاحظات كملفات</string>
|
<string name="export_all_notes">تصدير جميع الملاحظات كملفات</string>
|
||||||
@ -101,7 +102,6 @@
|
|||||||
<b>Reddit:</b>
|
<b>Reddit:</b>
|
||||||
https://www.reddit.com/r/SimpleMobileTools
|
https://www.reddit.com/r/SimpleMobileTools
|
||||||
</string>
|
</string>
|
||||||
<string name="remove_done_items">Remove done items</string>
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
|
@ -55,6 +55,7 @@
|
|||||||
<string name="add_new_checklist_item">Add a new checklist item</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="add_new_checklist_items">Add new checklist items</string>
|
||||||
<string name="checklist_is_empty">The checklist is empty</string>
|
<string name="checklist_is_empty">The checklist is empty</string>
|
||||||
|
<string name="remove_done_items">Remove done items</string>
|
||||||
|
|
||||||
<!-- Import / Export -->
|
<!-- Import / Export -->
|
||||||
<string name="export_all_notes">Bütün qeydləri fayl şəklində çıxar</string>
|
<string name="export_all_notes">Bütün qeydləri fayl şəklində çıxar</string>
|
||||||
@ -101,7 +102,6 @@
|
|||||||
<b>Reddit:</b>
|
<b>Reddit:</b>
|
||||||
https://www.reddit.com/r/SimpleMobileTools
|
https://www.reddit.com/r/SimpleMobileTools
|
||||||
</string>
|
</string>
|
||||||
<string name="remove_done_items">Remove done items</string>
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
|
@ -55,6 +55,7 @@
|
|||||||
<string name="add_new_checklist_item">Přidat do seznamu novou položku</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="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="checklist_is_empty">Seznam položek je prázdný</string>
|
||||||
|
<string name="remove_done_items">Remove done items</string>
|
||||||
|
|
||||||
<!-- Import / Export -->
|
<!-- Import / Export -->
|
||||||
<string name="export_all_notes">Exportovat všechny poznámky jako soubory</string>
|
<string name="export_all_notes">Exportovat všechny poznámky jako soubory</string>
|
||||||
@ -101,7 +102,6 @@
|
|||||||
<b>Reddit:</b>
|
<b>Reddit:</b>
|
||||||
https://www.reddit.com/r/SimpleMobileTools
|
https://www.reddit.com/r/SimpleMobileTools
|
||||||
</string>
|
</string>
|
||||||
<string name="remove_done_items">Remove done items</string>
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
|
@ -55,6 +55,7 @@
|
|||||||
<string name="add_new_checklist_item">Ychwanegu eitem newydd at restr wirio</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="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="checklist_is_empty">Mae\'r rhestr wirio yn wag</string>
|
||||||
|
<string name="remove_done_items">Remove done items</string>
|
||||||
|
|
||||||
<!-- Import / Export -->
|
<!-- Import / Export -->
|
||||||
<string name="export_all_notes">Allforio pob nodyn fel ffeil</string>
|
<string name="export_all_notes">Allforio pob nodyn fel ffeil</string>
|
||||||
@ -101,7 +102,6 @@
|
|||||||
<b>Reddit:</b>
|
<b>Reddit:</b>
|
||||||
https://www.reddit.com/r/SimpleMobileTools
|
https://www.reddit.com/r/SimpleMobileTools
|
||||||
</string>
|
</string>
|
||||||
<string name="remove_done_items">Remove done items</string>
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
|
@ -55,6 +55,7 @@
|
|||||||
<string name="add_new_checklist_item">Føj et nyt punkt til tjeklisten</string>
|
<string name="add_new_checklist_item">Føj et nyt punkt til tjeklisten</string>
|
||||||
<string name="add_new_checklist_items">Føj nye punkter til tjeklisten</string>
|
<string name="add_new_checklist_items">Føj nye punkter til tjeklisten</string>
|
||||||
<string name="checklist_is_empty">Tjeklisten er tom</string>
|
<string name="checklist_is_empty">Tjeklisten er tom</string>
|
||||||
|
<string name="remove_done_items">Remove done items</string>
|
||||||
|
|
||||||
<!-- Import / Export -->
|
<!-- Import / Export -->
|
||||||
<string name="export_all_notes">Eksporter alle noter som filer</string>
|
<string name="export_all_notes">Eksporter alle noter som filer</string>
|
||||||
@ -101,7 +102,6 @@
|
|||||||
<b>Reddit:</b>
|
<b>Reddit:</b>
|
||||||
https://www.reddit.com/r/SimpleMobileTools
|
https://www.reddit.com/r/SimpleMobileTools
|
||||||
</string>
|
</string>
|
||||||
<string name="remove_done_items">Remove done items</string>
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
|
@ -55,6 +55,7 @@
|
|||||||
<string name="add_new_checklist_item">Einen neuen Checklisteneintrag hinzufügen</string>
|
<string name="add_new_checklist_item">Einen neuen Checklisteneintrag hinzufügen</string>
|
||||||
<string name="add_new_checklist_items">Neue Checklisteneinträge hinzufügen</string>
|
<string name="add_new_checklist_items">Neue Checklisteneinträge hinzufügen</string>
|
||||||
<string name="checklist_is_empty">Die Checkliste ist leer</string>
|
<string name="checklist_is_empty">Die Checkliste ist leer</string>
|
||||||
|
<string name="remove_done_items">Remove done items</string>
|
||||||
|
|
||||||
<!-- Import / Export -->
|
<!-- Import / Export -->
|
||||||
<string name="export_all_notes">Alle Notizen als Dateien exportieren</string>
|
<string name="export_all_notes">Alle Notizen als Dateien exportieren</string>
|
||||||
@ -99,7 +100,6 @@
|
|||||||
<b>Reddit:</b>
|
<b>Reddit:</b>
|
||||||
https://www.reddit.com/r/SimpleMobileTools
|
https://www.reddit.com/r/SimpleMobileTools
|
||||||
</string>
|
</string>
|
||||||
<string name="remove_done_items">Remove done items</string>
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
|
@ -55,6 +55,7 @@
|
|||||||
<string name="add_new_checklist_item">Προσθήκη νέου στοιχείου λίστας ελέγχου</string>
|
<string name="add_new_checklist_item">Προσθήκη νέου στοιχείου λίστας ελέγχου</string>
|
||||||
<string name="add_new_checklist_items">Προσθήκη νέων στοιχείων λίστας ελέγχου</string>
|
<string name="add_new_checklist_items">Προσθήκη νέων στοιχείων λίστας ελέγχου</string>
|
||||||
<string name="checklist_is_empty">Η λίστα ελέγχου είναι κενή</string>
|
<string name="checklist_is_empty">Η λίστα ελέγχου είναι κενή</string>
|
||||||
|
<string name="remove_done_items">Remove done items</string>
|
||||||
|
|
||||||
<!-- Import / Export -->
|
<!-- Import / Export -->
|
||||||
<string name="export_all_notes">Εξαγωγή όλων των σημειώσεων ως αρχεία</string>
|
<string name="export_all_notes">Εξαγωγή όλων των σημειώσεων ως αρχεία</string>
|
||||||
@ -101,7 +102,6 @@
|
|||||||
<b>Reddit:</b>
|
<b>Reddit:</b>
|
||||||
https://www.reddit.com/r/SimpleMobileTools
|
https://www.reddit.com/r/SimpleMobileTools
|
||||||
</string>
|
</string>
|
||||||
<string name="remove_done_items">Remove done items</string>
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
|
@ -55,6 +55,7 @@
|
|||||||
<string name="add_new_checklist_item">Añadir un nuevo item a la lista</string>
|
<string name="add_new_checklist_item">Añadir un nuevo item a la lista</string>
|
||||||
<string name="add_new_checklist_items">Añadir nuevos items a la lista</string>
|
<string name="add_new_checklist_items">Añadir nuevos items a la lista</string>
|
||||||
<string name="checklist_is_empty">La lista está vacía</string>
|
<string name="checklist_is_empty">La lista está vacía</string>
|
||||||
|
<string name="remove_done_items">Remove done items</string>
|
||||||
|
|
||||||
<!-- Import / Export -->
|
<!-- Import / Export -->
|
||||||
<string name="export_all_notes">Exportar todas las notas como archivos</string>
|
<string name="export_all_notes">Exportar todas las notas como archivos</string>
|
||||||
@ -99,7 +100,6 @@
|
|||||||
<b>Reddit:</b>
|
<b>Reddit:</b>
|
||||||
https://www.reddit.com/r/SimpleMobileTools
|
https://www.reddit.com/r/SimpleMobileTools
|
||||||
</string>
|
</string>
|
||||||
<string name="remove_done_items">Remove done items</string>
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
|
@ -55,6 +55,7 @@
|
|||||||
<string name="add_new_checklist_item">Ajouter un nouvel élément</string>
|
<string name="add_new_checklist_item">Ajouter un nouvel élément</string>
|
||||||
<string name="add_new_checklist_items">Ajouter de nouveaux éléments</string>
|
<string name="add_new_checklist_items">Ajouter de nouveaux éléments</string>
|
||||||
<string name="checklist_is_empty">La checklist est vide</string>
|
<string name="checklist_is_empty">La checklist est vide</string>
|
||||||
|
<string name="remove_done_items">Remove done items</string>
|
||||||
|
|
||||||
<!-- Import / Export -->
|
<!-- Import / Export -->
|
||||||
<string name="export_all_notes">Exporter toutes les notes en tant que fichiers</string>
|
<string name="export_all_notes">Exporter toutes les notes en tant que fichiers</string>
|
||||||
@ -101,7 +102,6 @@
|
|||||||
<b>Reddit:</b>
|
<b>Reddit:</b>
|
||||||
https://www.reddit.com/r/SimpleMobileTools
|
https://www.reddit.com/r/SimpleMobileTools
|
||||||
</string>
|
</string>
|
||||||
<string name="remove_done_items">Remove done items</string>
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
|
@ -55,6 +55,7 @@
|
|||||||
<string name="add_new_checklist_item">Engadir un elemento a unha nova lista 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="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="checklist_is_empty">A lista de verificación está baleira</string>
|
||||||
|
<string name="remove_done_items">Remove done items</string>
|
||||||
|
|
||||||
<!-- Import / Export -->
|
<!-- Import / Export -->
|
||||||
<string name="export_all_notes">Exportar todas as notas como ficheiros</string>
|
<string name="export_all_notes">Exportar todas as notas como ficheiros</string>
|
||||||
@ -100,7 +101,6 @@
|
|||||||
<b>Reddit:</b>
|
<b>Reddit:</b>
|
||||||
https://www.reddit.com/r/SimpleMobileTools
|
https://www.reddit.com/r/SimpleMobileTools
|
||||||
</string>
|
</string>
|
||||||
<string name="remove_done_items">Remove done items</string>
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
|
@ -55,6 +55,7 @@
|
|||||||
<string name="add_new_checklist_item">Dodajte novu stavku na spisak</string>
|
<string name="add_new_checklist_item">Dodajte novu stavku na spisak</string>
|
||||||
<string name="add_new_checklist_items">Dodajte nove stavke na spisak</string>
|
<string name="add_new_checklist_items">Dodajte nove stavke na spisak</string>
|
||||||
<string name="checklist_is_empty">Spisak je prazan</string>
|
<string name="checklist_is_empty">Spisak je prazan</string>
|
||||||
|
<string name="remove_done_items">Remove done items</string>
|
||||||
|
|
||||||
<!-- Import / Export -->
|
<!-- Import / Export -->
|
||||||
<string name="export_all_notes">Izvezi sve bilješke kao datoteke</string>
|
<string name="export_all_notes">Izvezi sve bilješke kao datoteke</string>
|
||||||
@ -101,7 +102,6 @@
|
|||||||
<b>Reddit:</b>
|
<b>Reddit:</b>
|
||||||
https://www.reddit.com/r/SimpleMobileTools
|
https://www.reddit.com/r/SimpleMobileTools
|
||||||
</string>
|
</string>
|
||||||
<string name="remove_done_items">Remove done items</string>
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
|
@ -55,6 +55,7 @@
|
|||||||
<string name="add_new_checklist_item">Add a new checklist item</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="add_new_checklist_items">Add new checklist items</string>
|
||||||
<string name="checklist_is_empty">The checklist is empty</string>
|
<string name="checklist_is_empty">The checklist is empty</string>
|
||||||
|
<string name="remove_done_items">Remove done items</string>
|
||||||
|
|
||||||
<!-- Import / Export -->
|
<!-- Import / Export -->
|
||||||
<string name="export_all_notes">Export all notes as files</string>
|
<string name="export_all_notes">Export all notes as files</string>
|
||||||
@ -101,7 +102,6 @@
|
|||||||
<b>Reddit:</b>
|
<b>Reddit:</b>
|
||||||
https://www.reddit.com/r/SimpleMobileTools
|
https://www.reddit.com/r/SimpleMobileTools
|
||||||
</string>
|
</string>
|
||||||
<string name="remove_done_items">Remove done items</string>
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
|
@ -55,6 +55,7 @@
|
|||||||
<string name="add_new_checklist_item">Tambah item checklist baru</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="add_new_checklist_items">Tambah item checklist baru</string>
|
||||||
<string name="checklist_is_empty">Checklist kosong</string>
|
<string name="checklist_is_empty">Checklist kosong</string>
|
||||||
|
<string name="remove_done_items">Remove done items</string>
|
||||||
|
|
||||||
<!-- Import / Export -->
|
<!-- Import / Export -->
|
||||||
<string name="export_all_notes">Ekspor semua catatan ke berkas</string>
|
<string name="export_all_notes">Ekspor semua catatan ke berkas</string>
|
||||||
@ -101,7 +102,6 @@
|
|||||||
<b>Reddit:</b>
|
<b>Reddit:</b>
|
||||||
https://www.reddit.com/r/SimpleMobileTools
|
https://www.reddit.com/r/SimpleMobileTools
|
||||||
</string>
|
</string>
|
||||||
<string name="remove_done_items">Remove done items</string>
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
|
@ -55,6 +55,7 @@
|
|||||||
<string name="add_new_checklist_item">Tambah item checklist baru</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="add_new_checklist_items">Tambah item checklist baru</string>
|
||||||
<string name="checklist_is_empty">Checklist kosong</string>
|
<string name="checklist_is_empty">Checklist kosong</string>
|
||||||
|
<string name="remove_done_items">Remove done items</string>
|
||||||
|
|
||||||
<!-- Import / Export -->
|
<!-- Import / Export -->
|
||||||
<string name="export_all_notes">Ekspor semua catatan ke berkas</string>
|
<string name="export_all_notes">Ekspor semua catatan ke berkas</string>
|
||||||
@ -101,7 +102,6 @@
|
|||||||
<b>Reddit:</b>
|
<b>Reddit:</b>
|
||||||
https://www.reddit.com/r/SimpleMobileTools
|
https://www.reddit.com/r/SimpleMobileTools
|
||||||
</string>
|
</string>
|
||||||
<string name="remove_done_items">Remove done items</string>
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
|
@ -55,6 +55,7 @@
|
|||||||
<string name="add_new_checklist_item">Aggiungi un nuovo elemento</string>
|
<string name="add_new_checklist_item">Aggiungi un nuovo elemento</string>
|
||||||
<string name="add_new_checklist_items">Aggiungi nuovi elementi</string>
|
<string name="add_new_checklist_items">Aggiungi nuovi elementi</string>
|
||||||
<string name="checklist_is_empty">La scaletta è vuota</string>
|
<string name="checklist_is_empty">La scaletta è vuota</string>
|
||||||
|
<string name="remove_done_items">Remove done items</string>
|
||||||
|
|
||||||
<!-- Import / Export -->
|
<!-- Import / Export -->
|
||||||
<string name="export_all_notes">Esporta le note come file</string>
|
<string name="export_all_notes">Esporta le note come file</string>
|
||||||
@ -100,7 +101,6 @@
|
|||||||
<b>Reddit:</b>
|
<b>Reddit:</b>
|
||||||
https://www.reddit.com/r/SimpleMobileTools
|
https://www.reddit.com/r/SimpleMobileTools
|
||||||
</string>
|
</string>
|
||||||
<string name="remove_done_items">Remove done items</string>
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
|
@ -55,6 +55,7 @@
|
|||||||
<string name="add_new_checklist_item">新しいチェックリスト項目を追加</string>
|
<string name="add_new_checklist_item">新しいチェックリスト項目を追加</string>
|
||||||
<string name="add_new_checklist_items">新しいチェックリスト項目を追加</string>
|
<string name="add_new_checklist_items">新しいチェックリスト項目を追加</string>
|
||||||
<string name="checklist_is_empty">チェックリストが空です</string>
|
<string name="checklist_is_empty">チェックリストが空です</string>
|
||||||
|
<string name="remove_done_items">Remove done items</string>
|
||||||
|
|
||||||
<!-- Import / Export -->
|
<!-- Import / Export -->
|
||||||
<string name="export_all_notes">すべてのメモをファイルとしてエクスポート</string>
|
<string name="export_all_notes">すべてのメモをファイルとしてエクスポート</string>
|
||||||
@ -99,7 +100,6 @@
|
|||||||
<b> Reddit:</b>
|
<b> Reddit:</b>
|
||||||
https://www.reddit.com/r/SimpleMobileTools
|
https://www.reddit.com/r/SimpleMobileTools
|
||||||
</string>
|
</string>
|
||||||
<string name="remove_done_items">Remove done items</string>
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
|
@ -55,6 +55,7 @@
|
|||||||
<string name="add_new_checklist_item">Pridėti naują kontrolinio sąrašo objektą</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="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="checklist_is_empty">Kontrolinis sąršas tuščias</string>
|
||||||
|
<string name="remove_done_items">Remove done items</string>
|
||||||
|
|
||||||
<!-- Import / Export -->
|
<!-- Import / Export -->
|
||||||
<string name="export_all_notes">Eksportuoti visus užrašus kaip bylas</string>
|
<string name="export_all_notes">Eksportuoti visus užrašus kaip bylas</string>
|
||||||
@ -101,7 +102,6 @@
|
|||||||
<b>Reddit:</b>
|
<b>Reddit:</b>
|
||||||
https://www.reddit.com/r/SimpleMobileTools
|
https://www.reddit.com/r/SimpleMobileTools
|
||||||
</string>
|
</string>
|
||||||
<string name="remove_done_items">Remove done items</string>
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
|
@ -55,6 +55,7 @@
|
|||||||
<string name="add_new_checklist_item">Item toevoegen</string>
|
<string name="add_new_checklist_item">Item toevoegen</string>
|
||||||
<string name="add_new_checklist_items">Items toevoegen</string>
|
<string name="add_new_checklist_items">Items toevoegen</string>
|
||||||
<string name="checklist_is_empty">De lijst is leeg</string>
|
<string name="checklist_is_empty">De lijst is leeg</string>
|
||||||
|
<string name="remove_done_items">Remove done items</string>
|
||||||
|
|
||||||
<!-- Import / Export -->
|
<!-- Import / Export -->
|
||||||
<string name="export_all_notes">Alle notities naar bestanden exporteren</string>
|
<string name="export_all_notes">Alle notities naar bestanden exporteren</string>
|
||||||
@ -97,7 +98,6 @@
|
|||||||
<b>Reddit:</b>
|
<b>Reddit:</b>
|
||||||
https://www.reddit.com/r/SimpleMobileTools
|
https://www.reddit.com/r/SimpleMobileTools
|
||||||
</string>
|
</string>
|
||||||
<string name="remove_done_items">Remove done items</string>
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
|
@ -55,6 +55,7 @@
|
|||||||
<string name="add_new_checklist_item">Add a new checklist item</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="add_new_checklist_items">Add new checklist items</string>
|
||||||
<string name="checklist_is_empty">The checklist is empty</string>
|
<string name="checklist_is_empty">The checklist is empty</string>
|
||||||
|
<string name="remove_done_items">Remove done items</string>
|
||||||
|
|
||||||
<!-- Import / Export -->
|
<!-- Import / Export -->
|
||||||
<string name="export_all_notes">Eksportuj wszystkie notatki jako pliki</string>
|
<string name="export_all_notes">Eksportuj wszystkie notatki jako pliki</string>
|
||||||
@ -101,7 +102,6 @@
|
|||||||
<b>Reddit:</b>
|
<b>Reddit:</b>
|
||||||
https://www.reddit.com/r/SimpleMobileTools
|
https://www.reddit.com/r/SimpleMobileTools
|
||||||
</string>
|
</string>
|
||||||
<string name="remove_done_items">Remove done items</string>
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
|
@ -55,6 +55,7 @@
|
|||||||
<string name="add_new_checklist_item">Adicionar novo item de lista de verificação</string>
|
<string name="add_new_checklist_item">Adicionar novo item de lista de verificação</string>
|
||||||
<string name="add_new_checklist_items">Adicionar novos itens de lista de verificação</string>
|
<string name="add_new_checklist_items">Adicionar novos itens de lista de verificação</string>
|
||||||
<string name="checklist_is_empty">A lista de verificação está vazia</string>
|
<string name="checklist_is_empty">A lista de verificação está vazia</string>
|
||||||
|
<string name="remove_done_items">Remove done items</string>
|
||||||
|
|
||||||
<!-- Import / Export -->
|
<!-- Import / Export -->
|
||||||
<string name="export_all_notes">Exportar todas as notas como arquivo</string>
|
<string name="export_all_notes">Exportar todas as notas como arquivo</string>
|
||||||
@ -101,7 +102,6 @@
|
|||||||
<b>Reddit:</b>
|
<b>Reddit:</b>
|
||||||
https://www.reddit.com/r/SimpleMobileTools
|
https://www.reddit.com/r/SimpleMobileTools
|
||||||
</string>
|
</string>
|
||||||
<string name="remove_done_items">Remove done items</string>
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
|
@ -55,6 +55,7 @@
|
|||||||
<string name="add_new_checklist_item">Adicionar item à lista de verificações</string>
|
<string name="add_new_checklist_item">Adicionar item à lista de verificações</string>
|
||||||
<string name="add_new_checklist_items">Adicionar itens à 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="checklist_is_empty">A lista está vazia</string>
|
||||||
|
<string name="remove_done_items">Remove done items</string>
|
||||||
|
|
||||||
<!-- Import / Export -->
|
<!-- Import / Export -->
|
||||||
<string name="export_all_notes">Exportar todas as notas como ficheiros</string>
|
<string name="export_all_notes">Exportar todas as notas como ficheiros</string>
|
||||||
@ -101,7 +102,6 @@
|
|||||||
<b>Reddit:</b>
|
<b>Reddit:</b>
|
||||||
https://www.reddit.com/r/SimpleMobileTools
|
https://www.reddit.com/r/SimpleMobileTools
|
||||||
</string>
|
</string>
|
||||||
<string name="remove_done_items">Remove done items</string>
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Não encontrou todas as cadeias a traduzir? Existem mais algumas em:
|
Não encontrou todas as cadeias a traduzir? Existem mais algumas em:
|
||||||
|
@ -55,6 +55,7 @@
|
|||||||
<string name="add_new_checklist_item">Добавить позицию в список</string>
|
<string name="add_new_checklist_item">Добавить позицию в список</string>
|
||||||
<string name="add_new_checklist_items">Добавить позиции в список</string>
|
<string name="add_new_checklist_items">Добавить позиции в список</string>
|
||||||
<string name="checklist_is_empty">Список пуст</string>
|
<string name="checklist_is_empty">Список пуст</string>
|
||||||
|
<string name="remove_done_items">Remove done items</string>
|
||||||
|
|
||||||
<!-- Import / Export -->
|
<!-- Import / Export -->
|
||||||
<string name="export_all_notes">Экспортировать все заметки в файлы</string>
|
<string name="export_all_notes">Экспортировать все заметки в файлы</string>
|
||||||
@ -101,7 +102,6 @@
|
|||||||
<b>Reddit:</b>
|
<b>Reddit:</b>
|
||||||
https://www.reddit.com/r/SimpleMobileTools
|
https://www.reddit.com/r/SimpleMobileTools
|
||||||
</string>
|
</string>
|
||||||
<string name="remove_done_items">Remove done items</string>
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
|
@ -55,6 +55,7 @@
|
|||||||
<string name="add_new_checklist_item">Pridať do zoznamu novú položku</string>
|
<string name="add_new_checklist_item">Pridať do zoznamu novú položku</string>
|
||||||
<string name="add_new_checklist_items">Pridať do zoznamu nové položky</string>
|
<string name="add_new_checklist_items">Pridať do zoznamu nové položky</string>
|
||||||
<string name="checklist_is_empty">Zoznam položiek je prázdny</string>
|
<string name="checklist_is_empty">Zoznam položiek je prázdny</string>
|
||||||
|
<string name="remove_done_items">Remove done items</string>
|
||||||
|
|
||||||
<!-- Import / Export -->
|
<!-- Import / Export -->
|
||||||
<string name="export_all_notes">Exportovať všetky poznámky ako súbory</string>
|
<string name="export_all_notes">Exportovať všetky poznámky ako súbory</string>
|
||||||
@ -101,7 +102,6 @@
|
|||||||
<b>Reddit:</b>
|
<b>Reddit:</b>
|
||||||
https://www.reddit.com/r/SimpleMobileTools
|
https://www.reddit.com/r/SimpleMobileTools
|
||||||
</string>
|
</string>
|
||||||
<string name="remove_done_items">Remove done items</string>
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
|
@ -55,6 +55,7 @@
|
|||||||
<string name="add_new_checklist_item">Lägg till ett nytt checklisteobjekt</string>
|
<string name="add_new_checklist_item">Lägg till ett nytt checklisteobjekt</string>
|
||||||
<string name="add_new_checklist_items">Lägg till nya checklisteobjekt</string>
|
<string name="add_new_checklist_items">Lägg till nya checklisteobjekt</string>
|
||||||
<string name="checklist_is_empty">Checklistan är tom</string>
|
<string name="checklist_is_empty">Checklistan är tom</string>
|
||||||
|
<string name="remove_done_items">Remove done items</string>
|
||||||
|
|
||||||
<!-- Import / Export -->
|
<!-- Import / Export -->
|
||||||
<string name="export_all_notes">Exportera alla anteckningar som filer</string>
|
<string name="export_all_notes">Exportera alla anteckningar som filer</string>
|
||||||
@ -101,7 +102,6 @@
|
|||||||
<b>Reddit:</b>
|
<b>Reddit:</b>
|
||||||
https://www.reddit.com/r/SimpleMobileTools
|
https://www.reddit.com/r/SimpleMobileTools
|
||||||
</string>
|
</string>
|
||||||
<string name="remove_done_items">Remove done items</string>
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
|
@ -55,6 +55,7 @@
|
|||||||
<string name="add_new_checklist_item">Yeni bir yapılacak listesi öğesi ekle</string>
|
<string name="add_new_checklist_item">Yeni bir yapılacak listesi öğesi ekle</string>
|
||||||
<string name="add_new_checklist_items">Yeni yapılacak listesi öğeleri ekle</string>
|
<string name="add_new_checklist_items">Yeni yapılacak listesi öğeleri ekle</string>
|
||||||
<string name="checklist_is_empty">Yapılacak listesi boş</string>
|
<string name="checklist_is_empty">Yapılacak listesi boş</string>
|
||||||
|
<string name="remove_done_items">Remove done items</string>
|
||||||
|
|
||||||
<!-- Import / Export -->
|
<!-- Import / Export -->
|
||||||
<string name="export_all_notes">Tüm notları dosya olarak dışa aktar</string>
|
<string name="export_all_notes">Tüm notları dosya olarak dışa aktar</string>
|
||||||
@ -101,7 +102,6 @@
|
|||||||
<b>Reddit:</b>
|
<b>Reddit:</b>
|
||||||
https://www.reddit.com/r/SimpleMobileTools
|
https://www.reddit.com/r/SimpleMobileTools
|
||||||
</string>
|
</string>
|
||||||
<string name="remove_done_items">Remove done items</string>
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
|
@ -55,6 +55,7 @@
|
|||||||
<string name="add_new_checklist_item">Додати нову позицію у списку</string>
|
<string name="add_new_checklist_item">Додати нову позицію у списку</string>
|
||||||
<string name="add_new_checklist_items">Додати нові позиції у списку</string>
|
<string name="add_new_checklist_items">Додати нові позиції у списку</string>
|
||||||
<string name="checklist_is_empty">Список порожній</string>
|
<string name="checklist_is_empty">Список порожній</string>
|
||||||
|
<string name="remove_done_items">Remove done items</string>
|
||||||
|
|
||||||
<!-- Import / Export -->
|
<!-- Import / Export -->
|
||||||
<string name="export_all_notes">Експортувати всі нотатки як файли</string>
|
<string name="export_all_notes">Експортувати всі нотатки як файли</string>
|
||||||
@ -101,7 +102,6 @@
|
|||||||
<b>Reddit:</b>
|
<b>Reddit:</b>
|
||||||
https://www.reddit.com/r/SimpleMobileTools
|
https://www.reddit.com/r/SimpleMobileTools
|
||||||
</string>
|
</string>
|
||||||
<string name="remove_done_items">Remove done items</string>
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
|
@ -55,6 +55,7 @@
|
|||||||
<string name="add_new_checklist_item">添加一个新的清单项目</string>
|
<string name="add_new_checklist_item">添加一个新的清单项目</string>
|
||||||
<string name="add_new_checklist_items">添加新的清单项目</string>
|
<string name="add_new_checklist_items">添加新的清单项目</string>
|
||||||
<string name="checklist_is_empty">清单为空</string>
|
<string name="checklist_is_empty">清单为空</string>
|
||||||
|
<string name="remove_done_items">Remove done items</string>
|
||||||
|
|
||||||
<!-- Import / Export -->
|
<!-- Import / Export -->
|
||||||
<string name="export_all_notes">以文件导出所有笔记</string>
|
<string name="export_all_notes">以文件导出所有笔记</string>
|
||||||
@ -101,7 +102,6 @@
|
|||||||
<b>Reddit:</b>
|
<b>Reddit:</b>
|
||||||
https://www.reddit.com/r/SimpleMobileTools
|
https://www.reddit.com/r/SimpleMobileTools
|
||||||
</string>
|
</string>
|
||||||
<string name="remove_done_items">Remove done items</string>
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
|
@ -55,6 +55,7 @@
|
|||||||
<string name="add_new_checklist_item">新增新的核對清單項目</string>
|
<string name="add_new_checklist_item">新增新的核對清單項目</string>
|
||||||
<string name="add_new_checklist_items">新增新的核對清單項目</string>
|
<string name="add_new_checklist_items">新增新的核對清單項目</string>
|
||||||
<string name="checklist_is_empty">核對清單為空白</string>
|
<string name="checklist_is_empty">核對清單為空白</string>
|
||||||
|
<string name="remove_done_items">Remove done items</string>
|
||||||
|
|
||||||
<!-- Import / Export -->
|
<!-- Import / Export -->
|
||||||
<string name="export_all_notes">將全部筆記匯出成檔案</string>
|
<string name="export_all_notes">將全部筆記匯出成檔案</string>
|
||||||
@ -101,7 +102,6 @@
|
|||||||
<b>Reddit:</b>
|
<b>Reddit:</b>
|
||||||
https://www.reddit.com/r/SimpleMobileTools
|
https://www.reddit.com/r/SimpleMobileTools
|
||||||
</string>
|
</string>
|
||||||
<string name="remove_done_items">Remove done items</string>
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
|
@ -55,6 +55,7 @@
|
|||||||
<string name="add_new_checklist_item">Add a new checklist item</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="add_new_checklist_items">Add new checklist items</string>
|
||||||
<string name="checklist_is_empty">The checklist is empty</string>
|
<string name="checklist_is_empty">The checklist is empty</string>
|
||||||
|
<string name="remove_done_items">Remove done items</string>
|
||||||
|
|
||||||
<!-- Import / Export -->
|
<!-- Import / Export -->
|
||||||
<string name="export_all_notes">Export all notes as files</string>
|
<string name="export_all_notes">Export all notes as files</string>
|
||||||
@ -101,7 +102,6 @@
|
|||||||
<b>Reddit:</b>
|
<b>Reddit:</b>
|
||||||
https://www.reddit.com/r/SimpleMobileTools
|
https://www.reddit.com/r/SimpleMobileTools
|
||||||
</string>
|
</string>
|
||||||
<string name="remove_done_items">Remove done items</string>
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
|
Loading…
x
Reference in New Issue
Block a user