diff --git a/app-pro/build.gradle b/app-pro/build.gradle index 3689ac2..766123e 100644 --- a/app-pro/build.gradle +++ b/app-pro/build.gradle @@ -27,8 +27,8 @@ android { applicationId "com.maskyn.fileeditorpro" minSdkVersion 11 targetSdkVersion 22 - versionCode 41 - versionName "1.16" + versionCode 42 + versionName "1.17" } compileOptions { diff --git a/app-pro/src/main/AndroidManifest.xml b/app-pro/src/main/AndroidManifest.xml index 68761ef..3885413 100644 --- a/app-pro/src/main/AndroidManifest.xml +++ b/app-pro/src/main/AndroidManifest.xml @@ -115,6 +115,7 @@ android:name="com.sec.android.multiwindow.MINIMUM_SIZE_H" android:value="598.0dip" /> + diff --git a/app/build.gradle b/app/build.gradle index 25c84fd..4e45bd5 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -46,8 +46,8 @@ android { applicationId "com.maskyn.fileeditor" minSdkVersion 11 targetSdkVersion 22 - versionCode 41 - versionName "1.16" + versionCode 42 + versionName "1.17" } compileOptions { sourceCompatibility JavaVersion.VERSION_1_7 diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index dff57c8..2e31591 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -120,6 +120,7 @@ android:name="com.sec.android.multiwindow.MINIMUM_SIZE_H" android:value="598.0dip" /> + diff --git a/build/intermediates/dex-cache/cache.xml b/build/intermediates/dex-cache/cache.xml index 2662cb7..61ef454 100644 --- a/build/intermediates/dex-cache/cache.xml +++ b/build/intermediates/dex-cache/cache.xml @@ -12,8 +12,8 @@ jar="/Users/mac/AndroidStudioProjects/turbo-editor/app-pro/build/intermediates/exploded-aar/turbo-editor.libraries/FloatingActionButton/unspecified/classes.jar" jumboMode="false" revision="22.0.0" - sha1="66cee5a65742fef58c1dcdc0b892042f7bb1530b"> - + sha1="6e76d33df7ad4d766237d97bbc4373abedaddbba"> + - + sha1="0a4ebbf36bab17d89d49f22b2f29170ead4b1c37"> + + + + + + + - - - + + + + sha1="0a4ebbf36bab17d89d49f22b2f29170ead4b1c37"> diff --git a/libraries/sharedCode/build.gradle b/libraries/sharedCode/build.gradle index 62c2594..85baf7b 100644 --- a/libraries/sharedCode/build.gradle +++ b/libraries/sharedCode/build.gradle @@ -71,4 +71,5 @@ dependencies { compile 'com.github.gabrielemariotti.changeloglib:library:1.5.1' compile 'commons-io:commons-io:2.4' compile 'com.android.support:support-annotations:20.0.0' + compile files('libs/markdownview-1.2.jar') } diff --git a/libraries/sharedCode/libs/markdownview-1.2.jar b/libraries/sharedCode/libs/markdownview-1.2.jar new file mode 100644 index 0000000..9a1b74b Binary files /dev/null and b/libraries/sharedCode/libs/markdownview-1.2.jar differ diff --git a/libraries/sharedCode/src/main/assets/classic_theme_markdown.css b/libraries/sharedCode/src/main/assets/classic_theme_markdown.css new file mode 100644 index 0000000..4cdc9e0 --- /dev/null +++ b/libraries/sharedCode/src/main/assets/classic_theme_markdown.css @@ -0,0 +1,112 @@ +@charset "utf-8"; + +/** + * markdown.css + * + * This program is free software: you can redistribute it and/or modify it under + * the terms of the GNU Lesser General Public License as published by the Free + * Software Foundation, either version 3 of the License, or (at your option) any + * later version. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more + * details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this program. If not, see http://gnu.org/licenses/lgpl.txt. + * + * @project Weblog and Open Source Projects of Florian Wolters + * @version GIT: $Id$ + * @package xhtml-css + * @author Florian Wolters + * @copyright 2012 Florian Wolters + * @cssdoc version 1.0-pre + * @license http://gnu.org/licenses/lgpl.txt GNU Lesser General Public License + * @link http://github.com/FlorianWolters/jekyll-bootstrap-theme + * @media all + * @valid true + */ + +body { + font-family: Helvetica, Arial, Freesans, clean, sans-serif; +padding:1em; +margin:auto; +max-width:42em; +background:#fefefe; +} + +h1, h2, h3, h4, h5, h6 { + font-weight: bold; +} + +h1 { + color: #000000; + font-size: 28px; +} + +h2 { + border-bottom: 1px solid #CCCCCC; + color: #000000; + font-size: 24px; +} + +h3 { + font-size: 18px; +} + +h4 { + font-size: 16px; +} + +h5 { + font-size: 14px; +} + +h6 { + color: #777777; + background-color: inherit; + font-size: 14px; +} + +hr { + height: 0.2em; + border: 0; + color: #CCCCCC; + background-color: #CCCCCC; +} + +p, blockquote, ul, ol, dl, li, table, pre { + margin: 15px 0; +} + +code, pre { + border-radius: 3px; + background-color: #F8F8F8; + color: inherit; +} + +code { + border: 1px solid #EAEAEA; + margin: 0 2px; + padding: 0 5px; +} + +pre { + border: 1px solid #CCCCCC; + line-height: 1.25em; + overflow: auto; + padding: 6px 10px; +} + +pre > code { + border: 0; + margin: 0; + padding: 0; +} + +a, a:visited { + color: #4183C4; + background-color: inherit; + text-decoration: none; +} \ No newline at end of file diff --git a/libraries/sharedCode/src/main/java/sharedcode/turboeditor/activity/MainActivity.java b/libraries/sharedCode/src/main/java/sharedcode/turboeditor/activity/MainActivity.java index 2861669..d76a657 100644 --- a/libraries/sharedCode/src/main/java/sharedcode/turboeditor/activity/MainActivity.java +++ b/libraries/sharedCode/src/main/java/sharedcode/turboeditor/activity/MainActivity.java @@ -388,6 +388,7 @@ public abstract class MainActivity extends ActionBarActivity implements IHomeAct MenuItem imSave = menu.findItem(R.id.im_save); MenuItem imUndo = menu.findItem(R.id.im_undo); MenuItem imRedo = menu.findItem(R.id.im_redo); + if (mEditor != null) { if (imSave != null) imSave.setVisible(mEditor.canSaveFile()); @@ -401,9 +402,14 @@ public abstract class MainActivity extends ActionBarActivity implements IHomeAct imRedo.setVisible(false); } - MenuItem item = menu.findItem(R.id.im_share); + MenuItem imMarkdown = menu.findItem(R.id.im_view_markdown); + boolean isMarkdown = Arrays.asList(MimeTypes.MIME_MARKDOWN).contains(FilenameUtils.getExtension(sFilePath)); + if (imMarkdown != null) + imMarkdown.setVisible(isMarkdown); + + MenuItem imShare = menu.findItem(R.id.im_share); ShareActionProvider shareAction = (ShareActionProvider) MenuItemCompat - .getActionProvider(item); + .getActionProvider(imShare); File f = new File(sFilePath); Intent shareIntent = new Intent(); shareIntent.setAction(Intent.ACTION_SEND); @@ -473,6 +479,10 @@ public abstract class MainActivity extends ActionBarActivity implements IHomeAct // } + } else if (i == R.id.im_view_markdown) { + Intent browserIntent = new Intent(MainActivity.this, MarkdownActivity.class); + browserIntent.putExtra("text", mEditor.getText().toString()); + startActivity(browserIntent); } else if (i == R.id.im_info) { FileInfoDialog.newInstance(sFilePath).show(getFragmentManager().beginTransaction(), "dialog"); } @@ -949,7 +959,9 @@ public abstract class MainActivity extends ActionBarActivity implements IHomeAct } public void aPreferenceValueWasChanged(final PreferenceChangeType type) { - this.aPreferenceValueWasChanged(new ArrayList() {{add(type);}}); + this.aPreferenceValueWasChanged(new ArrayList() {{ + add(type); + }}); } public void aPreferenceValueWasChanged(List types) { diff --git a/libraries/sharedCode/src/main/java/sharedcode/turboeditor/activity/MarkdownActivity.java b/libraries/sharedCode/src/main/java/sharedcode/turboeditor/activity/MarkdownActivity.java new file mode 100644 index 0000000..bf043bb --- /dev/null +++ b/libraries/sharedCode/src/main/java/sharedcode/turboeditor/activity/MarkdownActivity.java @@ -0,0 +1,37 @@ +/* + * Copyright (C) 2014 Vlad Mihalachi + * + * This file is part of Turbo Editor. + * + * Turbo Editor is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * Turbo Editor is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +package sharedcode.turboeditor.activity; + +import android.app.Activity; +import android.os.Bundle; +import android.view.Window; + +import us.feras.mdv.MarkdownView; + +public class MarkdownActivity extends Activity { + @Override + public void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + requestWindowFeature(Window.FEATURE_NO_TITLE); + MarkdownView webView = new MarkdownView(this); + setContentView(webView); + webView.loadMarkdown(getIntent().getStringExtra("text"), "file:///android_asset/classic_theme_markdown.css"); + } +} \ No newline at end of file diff --git a/libraries/sharedCode/src/main/res/menu/fragment_editor.xml b/libraries/sharedCode/src/main/res/menu/fragment_editor.xml index 84398e0..d9de1c5 100644 --- a/libraries/sharedCode/src/main/res/menu/fragment_editor.xml +++ b/libraries/sharedCode/src/main/res/menu/fragment_editor.xml @@ -64,6 +64,11 @@ app:showAsAction="never" android:title="@string/view_it_on_the_web" /> + - Happy PI day! + Added a markdown viewer! + Fixed a bug with Copy, Paste, Cut buttons + Updated translations + + + Added the Accessory View (now you can input more easily special symbols!) Added a Black theme! Added ISO-8859-2 encoding diff --git a/libraries/sharedCode/src/main/res/values-af-rZA/strings.xml b/libraries/sharedCode/src/main/res/values-af-rZA/strings.xml index ba3c203..adabaf0 100644 --- a/libraries/sharedCode/src/main/res/values-af-rZA/strings.xml +++ b/libraries/sharedCode/src/main/res/values-af-rZA/strings.xml @@ -58,13 +58,13 @@ Extra options Split the text if too long Ignore back button - Donate Encoding Share Info Turbo Editor Preferences Save + Save as Syntax highlight Undo Redo @@ -73,4 +73,10 @@ Open a file No New file + Delete current file + Replace all + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-ar-rSA/strings.xml b/libraries/sharedCode/src/main/res/values-ar-rSA/strings.xml index 99f2529..30cf0e2 100644 --- a/libraries/sharedCode/src/main/res/values-ar-rSA/strings.xml +++ b/libraries/sharedCode/src/main/res/values-ar-rSA/strings.xml @@ -58,13 +58,13 @@ خيارات إضافية تقسيم النص إذا كان طويلاً جداً تجاهل زر الرجوع - Donate الترميز مشاركة معلومات محرر توربو خيارات حفظ + Save as تسليط الضوء على بناء الجملة التراجع عن الإعادة @@ -73,4 +73,10 @@ فتح ملف No New file + Delete current file + Replace all + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-az-rAZ/strings.xml b/libraries/sharedCode/src/main/res/values-az-rAZ/strings.xml index ba3c203..adabaf0 100644 --- a/libraries/sharedCode/src/main/res/values-az-rAZ/strings.xml +++ b/libraries/sharedCode/src/main/res/values-az-rAZ/strings.xml @@ -58,13 +58,13 @@ Extra options Split the text if too long Ignore back button - Donate Encoding Share Info Turbo Editor Preferences Save + Save as Syntax highlight Undo Redo @@ -73,4 +73,10 @@ Open a file No New file + Delete current file + Replace all + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-be-rBY/strings.xml b/libraries/sharedCode/src/main/res/values-be-rBY/strings.xml index ba3c203..adabaf0 100644 --- a/libraries/sharedCode/src/main/res/values-be-rBY/strings.xml +++ b/libraries/sharedCode/src/main/res/values-be-rBY/strings.xml @@ -58,13 +58,13 @@ Extra options Split the text if too long Ignore back button - Donate Encoding Share Info Turbo Editor Preferences Save + Save as Syntax highlight Undo Redo @@ -73,4 +73,10 @@ Open a file No New file + Delete current file + Replace all + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-bg-rBG/strings.xml b/libraries/sharedCode/src/main/res/values-bg-rBG/strings.xml index ba3c203..adabaf0 100644 --- a/libraries/sharedCode/src/main/res/values-bg-rBG/strings.xml +++ b/libraries/sharedCode/src/main/res/values-bg-rBG/strings.xml @@ -58,13 +58,13 @@ Extra options Split the text if too long Ignore back button - Donate Encoding Share Info Turbo Editor Preferences Save + Save as Syntax highlight Undo Redo @@ -73,4 +73,10 @@ Open a file No New file + Delete current file + Replace all + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-ca-rES/strings.xml b/libraries/sharedCode/src/main/res/values-ca-rES/strings.xml index 63bd647..c2d7605 100644 --- a/libraries/sharedCode/src/main/res/values-ca-rES/strings.xml +++ b/libraries/sharedCode/src/main/res/values-ca-rES/strings.xml @@ -58,13 +58,13 @@ Extra options Split the text if too long Ignore back button - Donate Codifica Compartir Informació Turbo Editor Preferències Desa + Save as Realçament de sintaxis Desfer Refer @@ -73,4 +73,10 @@ Obre un arxiu No New file + Delete current file + Replace all + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-cs-rCZ/strings.xml b/libraries/sharedCode/src/main/res/values-cs-rCZ/strings.xml index 75dc356..2ae7602 100644 --- a/libraries/sharedCode/src/main/res/values-cs-rCZ/strings.xml +++ b/libraries/sharedCode/src/main/res/values-cs-rCZ/strings.xml @@ -58,13 +58,13 @@ Další možnosti Rozdělit text, pokud je příliš dlouhý Ignorovat tlačítko zpět - Podpořit Kódování Sdílet Info Turbo Editor Předvolby Uložit + Save as Zvýraznění syntaxe Vrátit zpět Vykonat znovu @@ -73,4 +73,10 @@ Otevřít soubor No New file + Delete current file + Replace all + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-da-rDK/strings.xml b/libraries/sharedCode/src/main/res/values-da-rDK/strings.xml index a321c57..2fdf413 100644 --- a/libraries/sharedCode/src/main/res/values-da-rDK/strings.xml +++ b/libraries/sharedCode/src/main/res/values-da-rDK/strings.xml @@ -58,13 +58,13 @@ Extra options Split the text if too long Ignore back button - Donate Kodning Del Information Turbo Editor Indstillinger Gem + Save as Syntaksfremhævning Fortryd Gendan @@ -73,4 +73,10 @@ Open a file No New file + Delete current file + Replace all + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-de-rDE/strings.xml b/libraries/sharedCode/src/main/res/values-de-rDE/strings.xml index 6b2270f..8da1d33 100644 --- a/libraries/sharedCode/src/main/res/values-de-rDE/strings.xml +++ b/libraries/sharedCode/src/main/res/values-de-rDE/strings.xml @@ -58,13 +58,13 @@ Extraeinstellungen Text teilen, wenn er zu lang ist Zurück-Knopf ignorieren - Spenden Verschlüsseln Teilen Informationen Turbo-Editor Einstellungen Speichern + Speichern unter Syntax Hervorhebung Ungeschehen machen Rückgängig machen @@ -73,4 +73,10 @@ Datei öffnen Nein Neue Datei + Aktuelle Datei löschen + Alle ersetzen + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-el-rGR/strings.xml b/libraries/sharedCode/src/main/res/values-el-rGR/strings.xml index eb5e330..a208c2e 100644 --- a/libraries/sharedCode/src/main/res/values-el-rGR/strings.xml +++ b/libraries/sharedCode/src/main/res/values-el-rGR/strings.xml @@ -58,13 +58,13 @@ Extra options Split the text if too long Ignore back button - Donate Κωδικοποίηση Μοίρασε Πληροφορίες Turbo Editor Προτιμήσεις Αποθήκευση + Save as Επισήμανση σύνταξης Αναίρεση Ακύρωση αναίρεσης @@ -73,4 +73,10 @@ Άνοιγμα αρχείου No New file + Delete current file + Replace all + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-es-rES/strings.xml b/libraries/sharedCode/src/main/res/values-es-rES/strings.xml index 4e88eab..0e177c2 100644 --- a/libraries/sharedCode/src/main/res/values-es-rES/strings.xml +++ b/libraries/sharedCode/src/main/res/values-es-rES/strings.xml @@ -58,13 +58,13 @@ Opciones extra Partir el texto si es muy largo Ignorar el botón de regreso - Donar Codificación Compartir Información Turbo Editor Preferencias Guardar + Save as Resaltado de sintaxis Deshacer Rehacer @@ -73,4 +73,10 @@ Abrir archivo No Nuevo archivo + Delete current file + Replace all + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-fi-rFI/strings.xml b/libraries/sharedCode/src/main/res/values-fi-rFI/strings.xml index d04b4e7..f10fa1d 100644 --- a/libraries/sharedCode/src/main/res/values-fi-rFI/strings.xml +++ b/libraries/sharedCode/src/main/res/values-fi-rFI/strings.xml @@ -58,13 +58,13 @@ Lisäasetukset Jaa liian pitkä teksti Ohita Takaisin-painike - Lahjoita Koodaus Jaa Tiedot Turbo Editor Asetukset Tallenna + Tallenna nimellä Syntaksikorostus Kumoa Tee uudelleen @@ -73,4 +73,10 @@ Avaa tiedosto Ei Uusi tiedosto + Poista nykyinen tiedosto + Korvaa kaikki + Teema + Tumma teema + Musta teema + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-fil-rPH/strings.xml b/libraries/sharedCode/src/main/res/values-fil-rPH/strings.xml index ba3c203..adabaf0 100644 --- a/libraries/sharedCode/src/main/res/values-fil-rPH/strings.xml +++ b/libraries/sharedCode/src/main/res/values-fil-rPH/strings.xml @@ -58,13 +58,13 @@ Extra options Split the text if too long Ignore back button - Donate Encoding Share Info Turbo Editor Preferences Save + Save as Syntax highlight Undo Redo @@ -73,4 +73,10 @@ Open a file No New file + Delete current file + Replace all + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-fr-rFR/strings.xml b/libraries/sharedCode/src/main/res/values-fr-rFR/strings.xml index d95d45f..fabc9f8 100644 --- a/libraries/sharedCode/src/main/res/values-fr-rFR/strings.xml +++ b/libraries/sharedCode/src/main/res/values-fr-rFR/strings.xml @@ -58,13 +58,13 @@ Autres options Scinder le texte si trop long Ignorer le bouton retour - Faire un don Encodage Partager Informations Turbo Editor Préférences Sauver + Save as Coloration syntaxique Annuler Rétablir @@ -73,4 +73,10 @@ Ouvrir un fichier Non Nouveau fichier + Delete current file + Replace all + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-gl-rES/strings.xml b/libraries/sharedCode/src/main/res/values-gl-rES/strings.xml index c4512fb..3bfcbd2 100644 --- a/libraries/sharedCode/src/main/res/values-gl-rES/strings.xml +++ b/libraries/sharedCode/src/main/res/values-gl-rES/strings.xml @@ -58,13 +58,13 @@ Extra options Split the text if too long Ignore back button - Donate Codifica Compartir Información Turbo Editor Axustes Gardar + Save as Destacar sintaxe Desfacer Refacer @@ -73,4 +73,10 @@ Open a file No New file + Delete current file + Replace all + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-hi-rIN/strings.xml b/libraries/sharedCode/src/main/res/values-hi-rIN/strings.xml index d6f2178..f061f1f 100644 --- a/libraries/sharedCode/src/main/res/values-hi-rIN/strings.xml +++ b/libraries/sharedCode/src/main/res/values-hi-rIN/strings.xml @@ -58,13 +58,13 @@ Extra options Split the text if too long Ignore back button - Donate Encoding Share Info Turbo Editor Preferences Save + Save as Syntax highlight Undo Redo @@ -73,4 +73,10 @@ Open a file No New file + Delete current file + Replace all + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-hr-rHR/strings.xml b/libraries/sharedCode/src/main/res/values-hr-rHR/strings.xml index ba3c203..adabaf0 100644 --- a/libraries/sharedCode/src/main/res/values-hr-rHR/strings.xml +++ b/libraries/sharedCode/src/main/res/values-hr-rHR/strings.xml @@ -58,13 +58,13 @@ Extra options Split the text if too long Ignore back button - Donate Encoding Share Info Turbo Editor Preferences Save + Save as Syntax highlight Undo Redo @@ -73,4 +73,10 @@ Open a file No New file + Delete current file + Replace all + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-hu-rHU/strings.xml b/libraries/sharedCode/src/main/res/values-hu-rHU/strings.xml index eb89e39..6b0512b 100644 --- a/libraries/sharedCode/src/main/res/values-hu-rHU/strings.xml +++ b/libraries/sharedCode/src/main/res/values-hu-rHU/strings.xml @@ -58,13 +58,13 @@ Extra beállítások A szöveg részekre bontása ha túl hosszú Vissza-gomb figyelmen kívül hagyása - Támogatás Kódolás Megosztás Információ Turbo Editor Beállítások Ment + Save as Szintaxis kiemelés Visszavon Mégis @@ -73,4 +73,10 @@ Fájl megnyitása Nem Új fájl + Delete current file + Replace all + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-hy-rAM/strings.xml b/libraries/sharedCode/src/main/res/values-hy-rAM/strings.xml index ba3c203..adabaf0 100644 --- a/libraries/sharedCode/src/main/res/values-hy-rAM/strings.xml +++ b/libraries/sharedCode/src/main/res/values-hy-rAM/strings.xml @@ -58,13 +58,13 @@ Extra options Split the text if too long Ignore back button - Donate Encoding Share Info Turbo Editor Preferences Save + Save as Syntax highlight Undo Redo @@ -73,4 +73,10 @@ Open a file No New file + Delete current file + Replace all + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-in-rID/strings.xml b/libraries/sharedCode/src/main/res/values-in-rID/strings.xml index ef66929..1e81a0f 100644 --- a/libraries/sharedCode/src/main/res/values-in-rID/strings.xml +++ b/libraries/sharedCode/src/main/res/values-in-rID/strings.xml @@ -58,13 +58,13 @@ Opsi ekstra Membagi teks jika terlalu panjang Abaikan tombol kembali - Donasi Pengkodean Bagikan Info Turbo Editor Preferensi Simpan + Save as Sorot sintaks Batalkan Ulangi @@ -73,4 +73,10 @@ Buka file Tidak File baru + Delete current file + Replace all + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-it-rIT/strings.xml b/libraries/sharedCode/src/main/res/values-it-rIT/strings.xml index 6cfda83..f7eecf0 100644 --- a/libraries/sharedCode/src/main/res/values-it-rIT/strings.xml +++ b/libraries/sharedCode/src/main/res/values-it-rIT/strings.xml @@ -58,13 +58,13 @@ Altre opzioni Dividi il testo se troppo lungo Ignora il tasto indietro - Dona Codifica Condividi Informazioni Turbo Editor Preferenze Salva + Salva con nome Colora la sinstassi Annulla Rifai @@ -73,4 +73,10 @@ Apri un file No Nuovo file + Elimina il file corrente + Sostituisci Tutti + Tema + Tema Scuro + Tema nero + Vedi il risultato markdown diff --git a/libraries/sharedCode/src/main/res/values-iw-rIL/strings.xml b/libraries/sharedCode/src/main/res/values-iw-rIL/strings.xml index 88be70b..7727719 100644 --- a/libraries/sharedCode/src/main/res/values-iw-rIL/strings.xml +++ b/libraries/sharedCode/src/main/res/values-iw-rIL/strings.xml @@ -58,13 +58,13 @@ Extra options Split the text if too long Ignore back button - Donate קידוד Share מידע Turbo Editor העדפות Save + Save as Syntax highlight Undo Redo @@ -73,4 +73,10 @@ Open a file No New file + Delete current file + Replace all + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-ja-rJP/strings.xml b/libraries/sharedCode/src/main/res/values-ja-rJP/strings.xml index aca60de..b7311a9 100644 --- a/libraries/sharedCode/src/main/res/values-ja-rJP/strings.xml +++ b/libraries/sharedCode/src/main/res/values-ja-rJP/strings.xml @@ -58,13 +58,13 @@ 追加のオプション 長すぎる場合にテキストを分割 戻るボタンを無視 - 寄付 文字エンコード 共有 情報 ターボ エディター 設定 保存 + 名前をつけて保存 構文の強調表示 取り消し やり直し @@ -73,4 +73,10 @@ ファイルを開く いいえ 新しいファイル + 現在のファイルを削除 + すべて置換 + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-ko-rKR/strings.xml b/libraries/sharedCode/src/main/res/values-ko-rKR/strings.xml index 76c7f13..7c580c8 100644 --- a/libraries/sharedCode/src/main/res/values-ko-rKR/strings.xml +++ b/libraries/sharedCode/src/main/res/values-ko-rKR/strings.xml @@ -58,13 +58,13 @@ Extra options Split the text if too long Ignore back button - Donate 인코딩 공유 정보 터보 에디터 환경 설정 저장 + Save as 구문 하이라이트 실행 취소 다시 실행 @@ -73,4 +73,10 @@ 파일 열기 No New file + Delete current file + Replace all + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-lb-rLU/strings.xml b/libraries/sharedCode/src/main/res/values-lb-rLU/strings.xml index ba3c203..adabaf0 100644 --- a/libraries/sharedCode/src/main/res/values-lb-rLU/strings.xml +++ b/libraries/sharedCode/src/main/res/values-lb-rLU/strings.xml @@ -58,13 +58,13 @@ Extra options Split the text if too long Ignore back button - Donate Encoding Share Info Turbo Editor Preferences Save + Save as Syntax highlight Undo Redo @@ -73,4 +73,10 @@ Open a file No New file + Delete current file + Replace all + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-mk-rMK/strings.xml b/libraries/sharedCode/src/main/res/values-mk-rMK/strings.xml index ba3c203..adabaf0 100644 --- a/libraries/sharedCode/src/main/res/values-mk-rMK/strings.xml +++ b/libraries/sharedCode/src/main/res/values-mk-rMK/strings.xml @@ -58,13 +58,13 @@ Extra options Split the text if too long Ignore back button - Donate Encoding Share Info Turbo Editor Preferences Save + Save as Syntax highlight Undo Redo @@ -73,4 +73,10 @@ Open a file No New file + Delete current file + Replace all + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-mn-rMN/strings.xml b/libraries/sharedCode/src/main/res/values-mn-rMN/strings.xml index ba3c203..adabaf0 100644 --- a/libraries/sharedCode/src/main/res/values-mn-rMN/strings.xml +++ b/libraries/sharedCode/src/main/res/values-mn-rMN/strings.xml @@ -58,13 +58,13 @@ Extra options Split the text if too long Ignore back button - Donate Encoding Share Info Turbo Editor Preferences Save + Save as Syntax highlight Undo Redo @@ -73,4 +73,10 @@ Open a file No New file + Delete current file + Replace all + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-mt-rMT/strings.xml b/libraries/sharedCode/src/main/res/values-mt-rMT/strings.xml index ba3c203..adabaf0 100644 --- a/libraries/sharedCode/src/main/res/values-mt-rMT/strings.xml +++ b/libraries/sharedCode/src/main/res/values-mt-rMT/strings.xml @@ -58,13 +58,13 @@ Extra options Split the text if too long Ignore back button - Donate Encoding Share Info Turbo Editor Preferences Save + Save as Syntax highlight Undo Redo @@ -73,4 +73,10 @@ Open a file No New file + Delete current file + Replace all + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-nl-rNL/strings.xml b/libraries/sharedCode/src/main/res/values-nl-rNL/strings.xml index a2b905d..510e524 100644 --- a/libraries/sharedCode/src/main/res/values-nl-rNL/strings.xml +++ b/libraries/sharedCode/src/main/res/values-nl-rNL/strings.xml @@ -58,13 +58,13 @@ Extra opties Te lange tekst splitsen Terugknop negeren - Doneren Codering Delen Info Turbo Editor Voorkeuren Opslaan + Save as Gekleurde code Ongedaan maken Opnieuw uitvoeren @@ -73,4 +73,10 @@ Open een bestand Nee Nieuw bestand + Delete current file + Replace all + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-no-rNO/strings.xml b/libraries/sharedCode/src/main/res/values-no-rNO/strings.xml index 1cc84ac..eb789da 100644 --- a/libraries/sharedCode/src/main/res/values-no-rNO/strings.xml +++ b/libraries/sharedCode/src/main/res/values-no-rNO/strings.xml @@ -58,13 +58,13 @@ Extra options Split the text if too long Ignore back button - Donate Encoding Share Info Turbo Editor Innstillinger Lagre + Save as Syntax highlight Angre Gjenta @@ -73,4 +73,10 @@ Open a file No New file + Delete current file + Replace all + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-pl-rPL/strings.xml b/libraries/sharedCode/src/main/res/values-pl-rPL/strings.xml index 2c0a860..e2a1b17 100644 --- a/libraries/sharedCode/src/main/res/values-pl-rPL/strings.xml +++ b/libraries/sharedCode/src/main/res/values-pl-rPL/strings.xml @@ -58,13 +58,13 @@ Dodatkowe opcje Podziel tekst, jeśli jest zbyt długi Ignoruj przycisk \"Wstecz\" - Wesprzyj mnie Kodowanie Udostępnij Informacje Turbo Edytor Ustawienia Zapisz + Save as Podświetlenie składni Cofnij Powtórz @@ -73,4 +73,10 @@ Otwórz plik Nie Nowy plik + Delete current file + Replace all + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-pt-rBR/strings.xml b/libraries/sharedCode/src/main/res/values-pt-rBR/strings.xml index f46e1c6..091b1df 100644 --- a/libraries/sharedCode/src/main/res/values-pt-rBR/strings.xml +++ b/libraries/sharedCode/src/main/res/values-pt-rBR/strings.xml @@ -58,13 +58,13 @@ Opções extras Separar texto se muito longo Ignorar botão voltar - Faça uma doação Codificação Compartilhar Informações Turbo Editor Preferências Salvar + Save as Destaque de sintaxe Desfazer Refazer @@ -73,4 +73,10 @@ Abrir um arquivo Não Novo arquivo + Delete current file + Replace all + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-pt-rPT/strings.xml b/libraries/sharedCode/src/main/res/values-pt-rPT/strings.xml index 38c9e78..1ff9e06 100644 --- a/libraries/sharedCode/src/main/res/values-pt-rPT/strings.xml +++ b/libraries/sharedCode/src/main/res/values-pt-rPT/strings.xml @@ -58,13 +58,13 @@ Opções extra Separar texto se muito longo Ignorar botão para voltar - Donativos Codificação Partilhar Informações Turbo Editor Preferências Guardar + Guardar como Realce de sintaxe Desfazer Refazer @@ -73,4 +73,10 @@ Abrir um ficheiro Não Novo ficheiro + Eliminar ficheiro atual + Substituir tudo + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-ro-rRO/strings.xml b/libraries/sharedCode/src/main/res/values-ro-rRO/strings.xml index 18bb8ac..0a19aac 100644 --- a/libraries/sharedCode/src/main/res/values-ro-rRO/strings.xml +++ b/libraries/sharedCode/src/main/res/values-ro-rRO/strings.xml @@ -22,55 +22,61 @@ Utilizează monospaţiu Fişiere recente - Dimensiunea fontului + Dimensiune font Numele conexiunii - Numerele de linie - Wrap content - Vizualizați pe web + Numerele de rând + Restrânge conținutul + Vizualizați-l pe web Fişier - Director + Dosar Tema deschisă la culoare Du-te la linia Du-te la pagina… - Caută + Găsește Înlocuiește Distribuiți - Keyboard suggestions and Swipe - Auto-codificarea - Setați ca folderul de lucru - Acesta este folderul de lucru - Doriți să salvați modificările în fișierul %s? + Sugestii pentru tastatură şi Swype + Auto-codificare + Setați ca dosar de lucru + Acesta este dosarul de lucru + Doriți să salvați modificările la fișierul %s? Expresie regulată Text de căutat Text de înlocuit - Următoarea + Următorul Precedenta Vă rugăm să aşteptaţi… %s apariţii au fost găsite v%s - Traduce + Tradu Istoric modificări - Ține cont de Majuscule/minuscule - Faceţi clic pe lung pentru mai multe opţiuni + Potrivire litere + Apasați click lung pentru mai multe opţiuni Auto salvare Doar citire - Trimite raportul de eroare + Trimite rapoarte de eroare Opţiuni suplimentare Împarte textul dacă e prea lung - Ignoră butonul \"back\" - Donează + Ignoră butonul \"înapoi\" Codificare Distribuiți Informații Turbo Editor Preferințe Salvează + Salvează ca Evidențiere sintaxă Revenire Anulați revenirea Deschide Fişierul %1$s a fost salvat cu succes! Deschideţi un fişier - No - New file + Nu + Fişier nou + Delete current file + Replace all + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-ro-rRO/strings_donation.xml b/libraries/sharedCode/src/main/res/values-ro-rRO/strings_donation.xml index ba3c96e..552796a 100644 --- a/libraries/sharedCode/src/main/res/values-ro-rRO/strings_donation.xml +++ b/libraries/sharedCode/src/main/res/values-ro-rRO/strings_donation.xml @@ -20,7 +20,7 @@ --> Donează - Donate to developer + Donează către dezvoltator open source app. You can show your appreciation and support development by donating: diff --git a/libraries/sharedCode/src/main/res/values-ru-rRU/strings.xml b/libraries/sharedCode/src/main/res/values-ru-rRU/strings.xml index 9158cfb..16856a2 100644 --- a/libraries/sharedCode/src/main/res/values-ru-rRU/strings.xml +++ b/libraries/sharedCode/src/main/res/values-ru-rRU/strings.xml @@ -58,13 +58,13 @@ Дополнительные опции Разбивать длинный текст Игнорировать кнопку Назад - Поддержать Кодировка Поделиться Информация Turbo Editor Настройки Сохранить + Save as Подсветка синтаксиса Отменить Повторить @@ -73,4 +73,10 @@ Открыть файл Нет Новый файл + Delete current file + Replace all + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-sk-rSK/strings.xml b/libraries/sharedCode/src/main/res/values-sk-rSK/strings.xml index 938d451..ef687f0 100644 --- a/libraries/sharedCode/src/main/res/values-sk-rSK/strings.xml +++ b/libraries/sharedCode/src/main/res/values-sk-rSK/strings.xml @@ -58,13 +58,13 @@ Ďalšie voľby Rozdeliť text, ak je príliš dlhý Ignorovať tlačidlo späť - Prispieť Kódovanie Zdieľať Informácie Turbo Editor Predvoľby Uložiť + Uložiť ako Zvýrazniť syntax Späť Znova @@ -73,4 +73,10 @@ Otvoriť súbor Nie Nový súbor + Delete current file + Replace all + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-sl-rSI/strings.xml b/libraries/sharedCode/src/main/res/values-sl-rSI/strings.xml index 26da45c..0421c63 100644 --- a/libraries/sharedCode/src/main/res/values-sl-rSI/strings.xml +++ b/libraries/sharedCode/src/main/res/values-sl-rSI/strings.xml @@ -58,13 +58,13 @@ Extra options Split the text if too long Ignore back button - Donate Kodiranje Share Info Turbo Editor Nastavitve Shrani + Save as Syntax highlight Razveljavi Ponovi @@ -73,4 +73,10 @@ Open a file No New file + Delete current file + Replace all + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-sr-rSP/strings.xml b/libraries/sharedCode/src/main/res/values-sr-rSP/strings.xml index ba3c203..adabaf0 100644 --- a/libraries/sharedCode/src/main/res/values-sr-rSP/strings.xml +++ b/libraries/sharedCode/src/main/res/values-sr-rSP/strings.xml @@ -58,13 +58,13 @@ Extra options Split the text if too long Ignore back button - Donate Encoding Share Info Turbo Editor Preferences Save + Save as Syntax highlight Undo Redo @@ -73,4 +73,10 @@ Open a file No New file + Delete current file + Replace all + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-sv-rSE/strings.xml b/libraries/sharedCode/src/main/res/values-sv-rSE/strings.xml index e80f6d5..df9ffc7 100644 --- a/libraries/sharedCode/src/main/res/values-sv-rSE/strings.xml +++ b/libraries/sharedCode/src/main/res/values-sv-rSE/strings.xml @@ -58,13 +58,13 @@ Extra inställningar Dela upp texten om den är för lång Ignorera Tillbakaknappen - Donera Encoding Dela Info Turbo Editor Inställningar Spara + Spara som Syntax Markering Ångra Återställ @@ -73,4 +73,10 @@ Öppna en fil Nej Ny fil + Delete current file + Replace all + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-tr-rTR/strings.xml b/libraries/sharedCode/src/main/res/values-tr-rTR/strings.xml index faf3b65..1c96a51 100644 --- a/libraries/sharedCode/src/main/res/values-tr-rTR/strings.xml +++ b/libraries/sharedCode/src/main/res/values-tr-rTR/strings.xml @@ -58,13 +58,13 @@ Ekstra seçenekler Çok uzunsa metni böl Geri düğmesini yoksay - Bağış yap Kodlama Paylaş Bilgi Turbo Editör Tercihler Kaydet + Farklı kaydet Sözdizimi renklendirme Geri al Yinele @@ -73,4 +73,10 @@ Dosya aç Hayır Yeni dosya + Geçerli dosyayı sil + Tümünü değiştir + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-vi-rVN/strings.xml b/libraries/sharedCode/src/main/res/values-vi-rVN/strings.xml index ba3c203..8a010a7 100644 --- a/libraries/sharedCode/src/main/res/values-vi-rVN/strings.xml +++ b/libraries/sharedCode/src/main/res/values-vi-rVN/strings.xml @@ -20,57 +20,63 @@ --> - Use monospace - Recent files - Font size - Connection Name - Line Numbers - Wrap content - View it on the web - File - Folder - Light Theme - Go to Line… - Go to Page… - Find - Replace - Share - Keyboard suggestions and Swipe - Auto-Encoding - Set as the working folder - This is the working folder - Do you want to save the changes to the file %s? + Dùng phông chữ đơn giản + Tập tin gần đây + Cỡ chữ + Tên kết nối + Số dòng + Cắt nội dung + Xem nó trên web + Tập tin + Thư mục + Chủ đề sáng + Đi đến dòng... + Đi đến trang... + Tìm + Thay thế + Chia sẻ + Bàn phím gợi ý và vuốt + Mã hoá tự động + Đặt là thư mục đang làm việc + Đây là thư mục đang làm việc + Bạn có muốn lưu những thay đổi vào tập tin %s? Regular Expression - Text to find - Text to replace - Next - Previous - Please wait… - %s occurrences was found + Văn bản để tìm + Văn bản để thay thế + Tiếp + Quay lại + Vui lòng chờ... + %s xuất hiện được tìm thấy v%s - Translate - Changelog + Dịch thuật + Thay đổi Match case - Long click for more options - Auto save - Read only - Send error reports - Extra options - Split the text if too long - Ignore back button - Donate - Encoding - Share - Info + Nhấn giữ để thêm tuỳ chọn + Tự động lưu + Chỉ đọc + Gửi báo cáo lỗi + Tuỳ chọn bổ sung + Tách văn bản nếu quá dài + Bỏ qua nút quay lại + Đang mã hoá + Chia sẻ + Thông tin Turbo Editor - Preferences - Save - Syntax highlight - Undo - Redo - Open - The file %1$s was saved with success! - Open a file - No - New file + Tuỳ chỉnh + Lưu + Lưu như + Tô sáng cú pháp + Trở lại + Đi tới + Mở + Tập tin %1$ss đã được lưu thành công! + Mở tập tin + Không + Tập tin mới + Xoá tập tin hiện tại + Thay thế tất cả + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-vi-rVN/strings_dialogs.xml b/libraries/sharedCode/src/main/res/values-vi-rVN/strings_dialogs.xml index ad64876..65a1b68 100644 --- a/libraries/sharedCode/src/main/res/values-vi-rVN/strings_dialogs.xml +++ b/libraries/sharedCode/src/main/res/values-vi-rVN/strings_dialogs.xml @@ -19,16 +19,14 @@ ~ along with this program. If not, see . --> - Close - About + Đóng + Thông tin open source app. - Copyright 2013-2014 Vlad Mihalachi. All Rights Reserved.
+ Turbo Editor là một ứng dụng miễn phí và mã nguồn mở. + Bản quyền 2013-2014 Vlad Mihalachi. Tất cả quyền được bảo lưu.

- Many thanks to all who - helped with translations or - donated to me.
+ Đặc biệt cảm ơn đến những người đã giúp dịch hoặc đóng góp cho tôi.

- If you want to send feedback here is the XDA thread + Bạn có thể gửi thông tin phản hồi ở chủ đề XDA ]]>
diff --git a/libraries/sharedCode/src/main/res/values-vi-rVN/strings_donation.xml b/libraries/sharedCode/src/main/res/values-vi-rVN/strings_donation.xml index 9b2bcc8..c07a3f6 100644 --- a/libraries/sharedCode/src/main/res/values-vi-rVN/strings_donation.xml +++ b/libraries/sharedCode/src/main/res/values-vi-rVN/strings_donation.xml @@ -19,8 +19,8 @@ ~ along with this program. If not, see . --> - Donate - Donate to developer + Đóng góp + Dóng góp cho nhà phát triển open source app. You can show your appreciation and support development by donating: diff --git a/libraries/sharedCode/src/main/res/values-vls-rBE/strings.xml b/libraries/sharedCode/src/main/res/values-vls-rBE/strings.xml index ba3c203..adabaf0 100644 --- a/libraries/sharedCode/src/main/res/values-vls-rBE/strings.xml +++ b/libraries/sharedCode/src/main/res/values-vls-rBE/strings.xml @@ -58,13 +58,13 @@ Extra options Split the text if too long Ignore back button - Donate Encoding Share Info Turbo Editor Preferences Save + Save as Syntax highlight Undo Redo @@ -73,4 +73,10 @@ Open a file No New file + Delete current file + Replace all + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-zh-rCN/strings.xml b/libraries/sharedCode/src/main/res/values-zh-rCN/strings.xml index 4afee70..92081b0 100644 --- a/libraries/sharedCode/src/main/res/values-zh-rCN/strings.xml +++ b/libraries/sharedCode/src/main/res/values-zh-rCN/strings.xml @@ -58,13 +58,13 @@ 附加选项 长文本拆分 忽略返回按钮 - 捐赠 编码中 分享 信息 Turbo Editor 首选项 保存 + Save as 高亮语法 撤消 重做 @@ -73,4 +73,10 @@ 打开文件 No New file + Delete current file + Replace all + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values-zh-rCN/strings_dialogs.xml b/libraries/sharedCode/src/main/res/values-zh-rCN/strings_dialogs.xml index ad64876..c2a79d1 100644 --- a/libraries/sharedCode/src/main/res/values-zh-rCN/strings_dialogs.xml +++ b/libraries/sharedCode/src/main/res/values-zh-rCN/strings_dialogs.xml @@ -19,16 +19,15 @@ ~ along with this program. If not, see . --> - Close - About - open source app. - Copyright 2013-2014 Vlad Mihalachi. All Rights Reserved.
-
- Many thanks to all who - helped with translations or - donated to me.
-
- If you want to send feedback here is the XDA thread - ]]>
+ 隐藏上下文|打开上下文 +关闭 + 关于 + 开源 的应用。 +Copyright 2013-2014 Vlad Mihalachi. All Rights Reserved.
+
+非常感谢所有 +提供翻译帮助 或者 +捐款给我的人。
+
+如果你需要提供反馈请访问这个链接XDA thread]]>
diff --git a/libraries/sharedCode/src/main/res/values-zh-rTW/strings.xml b/libraries/sharedCode/src/main/res/values-zh-rTW/strings.xml index ba3c203..adabaf0 100644 --- a/libraries/sharedCode/src/main/res/values-zh-rTW/strings.xml +++ b/libraries/sharedCode/src/main/res/values-zh-rTW/strings.xml @@ -58,13 +58,13 @@ Extra options Split the text if too long Ignore back button - Donate Encoding Share Info Turbo Editor Preferences Save + Save as Syntax highlight Undo Redo @@ -73,4 +73,10 @@ Open a file No New file + Delete current file + Replace all + Theme + Dark theme + Black theme + View markdown result diff --git a/libraries/sharedCode/src/main/res/values/ids.xml b/libraries/sharedCode/src/main/res/values/ids.xml index f1f7281..e32e613 100644 --- a/libraries/sharedCode/src/main/res/values/ids.xml +++ b/libraries/sharedCode/src/main/res/values/ids.xml @@ -31,6 +31,7 @@ + diff --git a/libraries/sharedCode/src/main/res/values/strings.xml b/libraries/sharedCode/src/main/res/values/strings.xml index b3f91c2..2a9f3c3 100644 --- a/libraries/sharedCode/src/main/res/values/strings.xml +++ b/libraries/sharedCode/src/main/res/values/strings.xml @@ -78,4 +78,5 @@ Theme Dark theme Black theme + View markdown result