Fixes
This commit is contained in:
@@ -537,7 +537,7 @@ public abstract class MainActivity extends ActionBarActivity implements FindText
|
||||
return;
|
||||
if (searchResult.index > 0) {
|
||||
searchResult.index--;
|
||||
final int line = mEditor.getLineUtils().getLineFromIndex(searchResult.foundIndex.get
|
||||
final int line = LineUtils.getLineFromIndex(searchResult.foundIndex.get
|
||||
(searchResult.index), mEditor.getLineCount(), mEditor.getLayout());
|
||||
verticalScroll.post(new Runnable() {
|
||||
@Override
|
||||
@@ -551,6 +551,8 @@ public abstract class MainActivity extends ActionBarActivity implements FindText
|
||||
}
|
||||
});
|
||||
|
||||
mEditor.setFocusable(true);
|
||||
mEditor.requestFocus();
|
||||
mEditor.setSelection(searchResult.foundIndex.get(searchResult.index),
|
||||
searchResult.foundIndex.get(searchResult.index) + searchResult.textLength);
|
||||
}
|
||||
@@ -794,7 +796,7 @@ public abstract class MainActivity extends ActionBarActivity implements FindText
|
||||
|
||||
new AsyncTask<Void, Void, Void>() {
|
||||
|
||||
File file = event.getFile();
|
||||
File file;
|
||||
String message = "";
|
||||
String fileText;
|
||||
String encoding;
|
||||
@@ -813,9 +815,12 @@ public abstract class MainActivity extends ActionBarActivity implements FindText
|
||||
|
||||
@Override
|
||||
protected Void doInBackground(Void... params) {
|
||||
file = event.getFile();
|
||||
try {
|
||||
if (!file.exists() || !file.isFile()) {
|
||||
fileText = event.getFileText();
|
||||
sFilePath = file.getAbsolutePath();
|
||||
fileExtension = "txt";
|
||||
return null;
|
||||
}
|
||||
|
||||
@@ -857,6 +862,7 @@ public abstract class MainActivity extends ActionBarActivity implements FindText
|
||||
message = e.getMessage();
|
||||
fileText = "";
|
||||
}
|
||||
|
||||
while (mDrawerLayout.isDrawerOpen(Gravity.START)) {
|
||||
try {
|
||||
Thread.sleep(50);
|
||||
@@ -1135,7 +1141,7 @@ public abstract class MainActivity extends ActionBarActivity implements FindText
|
||||
searchingText = true;
|
||||
invalidateOptionsMenu();
|
||||
|
||||
final int line = mEditor.getLineUtils().getLineFromIndex(searchResult.foundIndex.getFirst
|
||||
final int line = LineUtils.getLineFromIndex(searchResult.foundIndex.getFirst
|
||||
(), mEditor.getLineCount(), mEditor.getLayout());
|
||||
verticalScroll.post(new Runnable() {
|
||||
@Override
|
||||
@@ -1150,6 +1156,8 @@ public abstract class MainActivity extends ActionBarActivity implements FindText
|
||||
}
|
||||
});
|
||||
|
||||
mEditor.setFocusable(true);
|
||||
mEditor.requestFocus();
|
||||
mEditor.setSelection(searchResult.foundIndex.getFirst(), searchResult.foundIndex.getFirst
|
||||
() + searchResult.textLength);
|
||||
|
||||
|
@@ -62,10 +62,12 @@ public class NewFileDetailsDialog extends DialogFragment {
|
||||
this.mName = (EditText) view.findViewById(android.R.id.text1);
|
||||
this.mFolder = (EditText) view.findViewById(android.R.id.text2);
|
||||
|
||||
this.mName.setText(".txt");
|
||||
this.mFolder.setText(PreferenceHelper.getWorkingFolder(getActivity()));
|
||||
|
||||
// Show soft keyboard automatically
|
||||
this.mName.requestFocus();
|
||||
this.mName.setSelection(0);
|
||||
getActivity().getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE);
|
||||
|
||||
return new AlertDialog.Builder(getActivity())
|
||||
|
@@ -20,6 +20,7 @@
|
||||
package sharedcode.turboeditor.texteditor;
|
||||
|
||||
import android.text.Layout;
|
||||
import android.text.TextUtils;
|
||||
import android.widget.ScrollView;
|
||||
|
||||
public class LineUtils {
|
||||
@@ -56,6 +57,9 @@ public class LineUtils {
|
||||
toCountLinesArray = new boolean[lineCount];
|
||||
realLines = new int[lineCount];
|
||||
|
||||
if(TextUtils.isEmpty(text))
|
||||
return;
|
||||
|
||||
int i;
|
||||
|
||||
// for every line on the edittext
|
||||
|
@@ -45,11 +45,11 @@ public class PageSystem {
|
||||
this.pageSystemInterface = pageSystemInterface;
|
||||
pages = new LinkedList<>();
|
||||
|
||||
final boolean doWithoutPageSystem;
|
||||
if(file != null)
|
||||
doWithoutPageSystem = FileUtils.sizeOf(file) < MAX_KBs_WITHOUT_PAGE_SYSTEM * FileUtils.ONE_KB;
|
||||
final boolean dimensionOverLimit;
|
||||
if(file != null && file.exists() && file.isFile())
|
||||
dimensionOverLimit = FileUtils.sizeOf(file) >= MAX_KBs_WITHOUT_PAGE_SYSTEM * FileUtils.ONE_KB;
|
||||
else
|
||||
doWithoutPageSystem = false;
|
||||
dimensionOverLimit = false;
|
||||
|
||||
int i = 0;
|
||||
int to;
|
||||
@@ -57,12 +57,12 @@ public class PageSystem {
|
||||
final int textLength = text.length();
|
||||
boolean pageSystemEnabled = PreferenceHelper.getSplitText(context);
|
||||
|
||||
if (pageSystemEnabled && !doWithoutPageSystem) {
|
||||
if (pageSystemEnabled && dimensionOverLimit) {
|
||||
while (i < textLength) {
|
||||
to = i + charForPage;
|
||||
nextIndexOfReturn = text.indexOf("\n", to);
|
||||
if (nextIndexOfReturn > to) to = nextIndexOfReturn;
|
||||
//if (to > text.length()) to = text.length();
|
||||
if (to > text.length()) to = text.length();
|
||||
pages.add(text.substring(i, to));
|
||||
i = to + 1;
|
||||
}
|
||||
|
@@ -21,7 +21,6 @@
|
||||
<changelog bulletedList="true">
|
||||
|
||||
<changelogversion versionName="1.13.1" changeDate="Oct 30, 2014">
|
||||
<changelogtext>Happy Halloween!</changelogtext>
|
||||
<changelogtext>Manly bug fixes</changelogtext>
|
||||
</changelogversion>
|
||||
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,8 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="close">Close</string>
|
||||
<string name="about_action">About</string>
|
||||
@@ -29,7 +27,7 @@
|
||||
<br/>
|
||||
Many thanks to all who
|
||||
<a href="http://crowdin.net/project/turbo-client">helped with translations</a> or
|
||||
donated to me</a>.<br/>
|
||||
donated to me.<br/>
|
||||
<br/>
|
||||
If you want to send feedback here is the <a href="http://forum.xda-developers.com/android/apps-games/app-turbo-editor-text-editor-t2832016">XDA thread</a>
|
||||
]]></string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="donation_action">Donate</string>
|
||||
<string name="donation_title">Donate to developer</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,8 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">استخدم مسافة موحدة</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="close">Close</string>
|
||||
<string name="about_action">About</string>
|
||||
@@ -29,7 +27,7 @@
|
||||
<br/>
|
||||
Many thanks to all who
|
||||
<a href="http://crowdin.net/project/turbo-client">helped with translations</a> or
|
||||
donated to me</a>.<br/>
|
||||
donated to me.<br/>
|
||||
<br/>
|
||||
If you want to send feedback here is the <a href="http://forum.xda-developers.com/android/apps-games/app-turbo-editor-text-editor-t2832016">XDA thread</a>
|
||||
]]></string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="donation_action">Donate</string>
|
||||
<string name="donation_title">Donate to developer</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,8 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="close">Close</string>
|
||||
<string name="about_action">About</string>
|
||||
@@ -29,7 +27,7 @@
|
||||
<br/>
|
||||
Many thanks to all who
|
||||
<a href="http://crowdin.net/project/turbo-client">helped with translations</a> or
|
||||
donated to me</a>.<br/>
|
||||
donated to me.<br/>
|
||||
<br/>
|
||||
If you want to send feedback here is the <a href="http://forum.xda-developers.com/android/apps-games/app-turbo-editor-text-editor-t2832016">XDA thread</a>
|
||||
]]></string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="donation_action">Donate</string>
|
||||
<string name="donation_title">Donate to developer</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,8 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="close">Close</string>
|
||||
<string name="about_action">About</string>
|
||||
@@ -29,7 +27,7 @@
|
||||
<br/>
|
||||
Many thanks to all who
|
||||
<a href="http://crowdin.net/project/turbo-client">helped with translations</a> or
|
||||
donated to me</a>.<br/>
|
||||
donated to me.<br/>
|
||||
<br/>
|
||||
If you want to send feedback here is the <a href="http://forum.xda-developers.com/android/apps-games/app-turbo-editor-text-editor-t2832016">XDA thread</a>
|
||||
]]></string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="donation_action">Donate</string>
|
||||
<string name="donation_title">Donate to developer</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,8 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="close">Close</string>
|
||||
<string name="about_action">About</string>
|
||||
@@ -29,7 +27,7 @@
|
||||
<br/>
|
||||
Many thanks to all who
|
||||
<a href="http://crowdin.net/project/turbo-client">helped with translations</a> or
|
||||
donated to me</a>.<br/>
|
||||
donated to me.<br/>
|
||||
<br/>
|
||||
If you want to send feedback here is the <a href="http://forum.xda-developers.com/android/apps-games/app-turbo-editor-text-editor-t2832016">XDA thread</a>
|
||||
]]></string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="donation_action">Donate</string>
|
||||
<string name="donation_title">Donate to developer</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,8 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Usar monospace</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="close">Close</string>
|
||||
<string name="about_action">About</string>
|
||||
@@ -29,7 +27,7 @@
|
||||
<br/>
|
||||
Many thanks to all who
|
||||
<a href="http://crowdin.net/project/turbo-client">helped with translations</a> or
|
||||
donated to me</a>.<br/>
|
||||
donated to me.<br/>
|
||||
<br/>
|
||||
If you want to send feedback here is the <a href="http://forum.xda-developers.com/android/apps-games/app-turbo-editor-text-editor-t2832016">XDA thread</a>
|
||||
]]></string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="donation_action">Donate</string>
|
||||
<string name="donation_title">Donate to developer</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,8 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Použít neproporcionální</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="close">Close</string>
|
||||
<string name="about_action">About</string>
|
||||
@@ -29,7 +27,7 @@
|
||||
<br/>
|
||||
Many thanks to all who
|
||||
<a href="http://crowdin.net/project/turbo-client">helped with translations</a> or
|
||||
donated to me</a>.<br/>
|
||||
donated to me.<br/>
|
||||
<br/>
|
||||
If you want to send feedback here is the <a href="http://forum.xda-developers.com/android/apps-games/app-turbo-editor-text-editor-t2832016">XDA thread</a>
|
||||
]]></string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="donation_action">Podpořit</string>
|
||||
<string name="donation_title">Donate to developer</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,8 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="close">Close</string>
|
||||
<string name="about_action">About</string>
|
||||
@@ -29,7 +27,7 @@
|
||||
<br/>
|
||||
Many thanks to all who
|
||||
<a href="http://crowdin.net/project/turbo-client">helped with translations</a> or
|
||||
donated to me</a>.<br/>
|
||||
donated to me.<br/>
|
||||
<br/>
|
||||
If you want to send feedback here is the <a href="http://forum.xda-developers.com/android/apps-games/app-turbo-editor-text-editor-t2832016">XDA thread</a>
|
||||
]]></string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="donation_action">Donate</string>
|
||||
<string name="donation_title">Donate to developer</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,8 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Verwenden Sie Monospace</string>
|
||||
@@ -32,7 +31,7 @@
|
||||
<string name="folder">Ordner</string>
|
||||
<string name="light_theme">Helles Design</string>
|
||||
<string name="goto_line">Gehe zu Linie</string>
|
||||
<string name="goto_page">Go to Page…</string>
|
||||
<string name="goto_page">Gehe zu Seite…</string>
|
||||
<string name="find">Suchen</string>
|
||||
<string name="replace">Ersetzen</string>
|
||||
<string name="share">Teilen</string>
|
||||
@@ -72,6 +71,6 @@
|
||||
<string name="open">Öffnen</string>
|
||||
<string name="file_saved_with_success">Die Datei %1$s wurde erfolgreich gespeichert!</string>
|
||||
<string name="open_a_file">Datei öffnen</string>
|
||||
<string name="no">No</string>
|
||||
<string name="new_file">New file</string>
|
||||
<string name="no">Nein</string>
|
||||
<string name="new_file">Neue Datei</string>
|
||||
</resources>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,19 +18,16 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="close">Close</string>
|
||||
<string name="about_action">About</string>
|
||||
<string name="close">Schließen</string>
|
||||
<string name="about_action">Über</string>
|
||||
<string name="about_message"><![CDATA[
|
||||
Turbo Editor is a free and <a href="http://github.com/vmihalachi/turbo-editor">open source</a> app.
|
||||
Copyright 2013-2014 <a href="https://plus.google.com/+VladMihalachi">Vlad Mihalachi</a>. All Rights Reserved.<br/>
|
||||
<br/>
|
||||
Many thanks to all who
|
||||
<a href="http://crowdin.net/project/turbo-client">helped with translations</a> or
|
||||
donated to me</a>.<br/>
|
||||
donated to me.<br/>
|
||||
<br/>
|
||||
If you want to send feedback here is the <a href="http://forum.xda-developers.com/android/apps-games/app-turbo-editor-text-editor-t2832016">XDA thread</a>
|
||||
]]></string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="donation_action">Spenden</string>
|
||||
<string name="donation_title">Donate to developer</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,8 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Χρήση monospace γραμματοσειράς</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="close">Close</string>
|
||||
<string name="about_action">About</string>
|
||||
@@ -29,7 +27,7 @@
|
||||
<br/>
|
||||
Many thanks to all who
|
||||
<a href="http://crowdin.net/project/turbo-client">helped with translations</a> or
|
||||
donated to me</a>.<br/>
|
||||
donated to me.<br/>
|
||||
<br/>
|
||||
If you want to send feedback here is the <a href="http://forum.xda-developers.com/android/apps-games/app-turbo-editor-text-editor-t2832016">XDA thread</a>
|
||||
]]></string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="donation_action">Donate</string>
|
||||
<string name="donation_title">Donate to developer</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,8 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Usar monoespacio</string>
|
||||
@@ -32,7 +31,7 @@
|
||||
<string name="folder">archivo</string>
|
||||
<string name="light_theme">Tema claro</string>
|
||||
<string name="goto_line">Ir a línea</string>
|
||||
<string name="goto_page">Go to Page…</string>
|
||||
<string name="goto_page">Ir a página…</string>
|
||||
<string name="find">Buscar</string>
|
||||
<string name="replace">Reemplazar</string>
|
||||
<string name="share">Compartir</string>
|
||||
@@ -73,5 +72,5 @@
|
||||
<string name="file_saved_with_success">¡El archivo %1$s fue guardado exitosamente!</string>
|
||||
<string name="open_a_file">Abrir archivo</string>
|
||||
<string name="no">No</string>
|
||||
<string name="new_file">New file</string>
|
||||
<string name="new_file">Nuevo archivo</string>
|
||||
</resources>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,19 +18,16 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="close">Close</string>
|
||||
<string name="about_action">About</string>
|
||||
<string name="close">Cerrar</string>
|
||||
<string name="about_action">Acerca de</string>
|
||||
<string name="about_message"><![CDATA[
|
||||
Turbo Editor is a free and <a href="http://github.com/vmihalachi/turbo-editor">open source</a> app.
|
||||
Copyright 2013-2014 <a href="https://plus.google.com/+VladMihalachi">Vlad Mihalachi</a>. All Rights Reserved.<br/>
|
||||
<br/>
|
||||
Many thanks to all who
|
||||
<a href="http://crowdin.net/project/turbo-client">helped with translations</a> or
|
||||
donated to me</a>.<br/>
|
||||
donated to me.<br/>
|
||||
<br/>
|
||||
If you want to send feedback here is the <a href="http://forum.xda-developers.com/android/apps-games/app-turbo-editor-text-editor-t2832016">XDA thread</a>
|
||||
]]></string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="donation_action">Donar</string>
|
||||
<string name="donation_title">Donate to developer</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,8 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Käytä tasalevyistä fonttia</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="close">Sulje</string>
|
||||
<string name="about_action">Tietoja</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="donation_action">Lahjoita</string>
|
||||
<string name="donation_title">Lahjoita kehittäjälle</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,8 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="close">Close</string>
|
||||
<string name="about_action">About</string>
|
||||
@@ -29,7 +27,7 @@
|
||||
<br/>
|
||||
Many thanks to all who
|
||||
<a href="http://crowdin.net/project/turbo-client">helped with translations</a> or
|
||||
donated to me</a>.<br/>
|
||||
donated to me.<br/>
|
||||
<br/>
|
||||
If you want to send feedback here is the <a href="http://forum.xda-developers.com/android/apps-games/app-turbo-editor-text-editor-t2832016">XDA thread</a>
|
||||
]]></string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="donation_action">Donate</string>
|
||||
<string name="donation_title">Donate to developer</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,8 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Utiliser une police de largeur fixe</string>
|
||||
@@ -72,6 +71,6 @@
|
||||
<string name="open">Ouvrir</string>
|
||||
<string name="file_saved_with_success">Le fichier %1$s a été enregistré avec succès !</string>
|
||||
<string name="open_a_file">Ouvrir un fichier</string>
|
||||
<string name="no">No</string>
|
||||
<string name="new_file">New file</string>
|
||||
<string name="no">Non</string>
|
||||
<string name="new_file">Nouveau fichier</string>
|
||||
</resources>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,20 +18,17 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="close">Close</string>
|
||||
<string name="about_action">About</string>
|
||||
<string name="close">Fermer</string>
|
||||
<string name="about_action">A propos de</string>
|
||||
<string name="about_message"><![CDATA[
|
||||
Turbo Editor is a free and <a href="http://github.com/vmihalachi/turbo-editor">open source</a> app.
|
||||
Copyright 2013-2014 <a href="https://plus.google.com/+VladMihalachi">Vlad Mihalachi</a>. All Rights Reserved.<br/>
|
||||
Turbo Editor est une application gratuite et <a href="http://github.com/vmihalachi/turbo-editor">open source</a>.
|
||||
Copyright 2013-2014 <a href="https://plus.google.com/+VladMihalachi">Vlad Mihalachi</a>. Tous droits réservés.<br/>
|
||||
<br/>
|
||||
Many thanks to all who
|
||||
<a href="http://crowdin.net/project/turbo-client">helped with translations</a> or
|
||||
donated to me</a>.<br/>
|
||||
Un grand merci pour ceux qui ont
|
||||
<a href="http://crowdin.net/project/turbo-client">participés aux traductions</a> et
|
||||
aux donateurs.<br/>
|
||||
<br/>
|
||||
If you want to send feedback here is the <a href="http://forum.xda-developers.com/android/apps-games/app-turbo-editor-text-editor-t2832016">XDA thread</a>
|
||||
Si vous avez des problèmes ou des idées d\'améliorations : <a href="http://forum.xda-developers.com/android/apps-games/app-turbo-editor-text-editor-t2832016">Lien de l\'application sur XDA</a>
|
||||
]]></string>
|
||||
</resources>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,23 +18,20 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="donation_action">Faire un don</string>
|
||||
<string name="donation_title">Donate to developer</string>
|
||||
<string name="donation_title">Faire un don au développeur</string>
|
||||
<string name="donation_info"><![CDATA[
|
||||
Turbo Editor is a free and <a href="http://github.com/vmihalachi/turbo-editor/">open source</a> app.
|
||||
You can show your appreciation and support development by donating:
|
||||
Turbo Editor est une application gratuite et <a href="http://github.com/vmihalachi/turbo-editor/">open source</a>.
|
||||
Vous pouvez montrer votre reconnaissance et soutenir le développement en faisant un don :
|
||||
]]></string>
|
||||
<string name="donation_item_bought">You\'ve donated for this item already.</string>
|
||||
<string name="donation_2">An ice cream</string>
|
||||
<string name="donation_4">Cup of coffee</string>
|
||||
<string name="donation_10">Electricity bills</string>
|
||||
<string name="donation_20">The right pillow</string>
|
||||
<string name="donation_50">Solid-state drive</string>
|
||||
<string name="donation_99">Sound system</string>
|
||||
<string name="donation_error_iab_setup">Failed to setup in-app-billing service!</string>
|
||||
<string name="donation_no_responsibility">Notice that Google is not responsible for that payments method.</string>
|
||||
<string name="donation_item_bought">Vous avez déjà fait un don pour cet article.</string>
|
||||
<string name="donation_2">Une crème glacée</string>
|
||||
<string name="donation_4">Un café</string>
|
||||
<string name="donation_10">Mes Factures d\'électricité</string>
|
||||
<string name="donation_20">Un bon oreiller</string>
|
||||
<string name="donation_50">Un Disque SSD</string>
|
||||
<string name="donation_99">Un système de sonorisation</string>
|
||||
<string name="donation_error_iab_setup">Impossible de mettre en place le service de facturation d\'achat in-apps !</string>
|
||||
<string name="donation_no_responsibility">Notez que Google n\'est pas responsable pour cette méthode de paiement.</string>
|
||||
</resources>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,8 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="close">Close</string>
|
||||
<string name="about_action">About</string>
|
||||
@@ -29,7 +27,7 @@
|
||||
<br/>
|
||||
Many thanks to all who
|
||||
<a href="http://crowdin.net/project/turbo-client">helped with translations</a> or
|
||||
donated to me</a>.<br/>
|
||||
donated to me.<br/>
|
||||
<br/>
|
||||
If you want to send feedback here is the <a href="http://forum.xda-developers.com/android/apps-games/app-turbo-editor-text-editor-t2832016">XDA thread</a>
|
||||
]]></string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="donation_action">Donate</string>
|
||||
<string name="donation_title">Donate to developer</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,8 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="close">Close</string>
|
||||
<string name="about_action">About</string>
|
||||
@@ -29,7 +27,7 @@
|
||||
<br/>
|
||||
Many thanks to all who
|
||||
<a href="http://crowdin.net/project/turbo-client">helped with translations</a> or
|
||||
donated to me</a>.<br/>
|
||||
donated to me.<br/>
|
||||
<br/>
|
||||
If you want to send feedback here is the <a href="http://forum.xda-developers.com/android/apps-games/app-turbo-editor-text-editor-t2832016">XDA thread</a>
|
||||
]]></string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="donation_action">Donate</string>
|
||||
<string name="donation_title">Donate to developer</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,8 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="close">Close</string>
|
||||
<string name="about_action">About</string>
|
||||
@@ -29,7 +27,7 @@
|
||||
<br/>
|
||||
Many thanks to all who
|
||||
<a href="http://crowdin.net/project/turbo-client">helped with translations</a> or
|
||||
donated to me</a>.<br/>
|
||||
donated to me.<br/>
|
||||
<br/>
|
||||
If you want to send feedback here is the <a href="http://forum.xda-developers.com/android/apps-games/app-turbo-editor-text-editor-t2832016">XDA thread</a>
|
||||
]]></string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="donation_action">Donate</string>
|
||||
<string name="donation_title">Donate to developer</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,8 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Fix szélességű betűk használata</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="close">Close</string>
|
||||
<string name="about_action">About</string>
|
||||
@@ -29,7 +27,7 @@
|
||||
<br/>
|
||||
Many thanks to all who
|
||||
<a href="http://crowdin.net/project/turbo-client">helped with translations</a> or
|
||||
donated to me</a>.<br/>
|
||||
donated to me.<br/>
|
||||
<br/>
|
||||
If you want to send feedback here is the <a href="http://forum.xda-developers.com/android/apps-games/app-turbo-editor-text-editor-t2832016">XDA thread</a>
|
||||
]]></string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="donation_action">Donate</string>
|
||||
<string name="donation_title">Donate to developer</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,8 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="close">Close</string>
|
||||
<string name="about_action">About</string>
|
||||
@@ -29,7 +27,7 @@
|
||||
<br/>
|
||||
Many thanks to all who
|
||||
<a href="http://crowdin.net/project/turbo-client">helped with translations</a> or
|
||||
donated to me</a>.<br/>
|
||||
donated to me.<br/>
|
||||
<br/>
|
||||
If you want to send feedback here is the <a href="http://forum.xda-developers.com/android/apps-games/app-turbo-editor-text-editor-t2832016">XDA thread</a>
|
||||
]]></string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="donation_action">Donate</string>
|
||||
<string name="donation_title">Donate to developer</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,8 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Gunakan monospace</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="close">Close</string>
|
||||
<string name="about_action">About</string>
|
||||
@@ -29,7 +27,7 @@
|
||||
<br/>
|
||||
Many thanks to all who
|
||||
<a href="http://crowdin.net/project/turbo-client">helped with translations</a> or
|
||||
donated to me</a>.<br/>
|
||||
donated to me.<br/>
|
||||
<br/>
|
||||
If you want to send feedback here is the <a href="http://forum.xda-developers.com/android/apps-games/app-turbo-editor-text-editor-t2832016">XDA thread</a>
|
||||
]]></string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="donation_action">Donate</string>
|
||||
<string name="donation_title">Donate to developer</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,8 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Monospace</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="close">Chiudi</string>
|
||||
<string name="about_action">Informazioni</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="donation_action">Dona</string>
|
||||
<string name="donation_title">Fai una donazione allo sviluppatore</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,8 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="close">Close</string>
|
||||
<string name="about_action">About</string>
|
||||
@@ -29,7 +27,7 @@
|
||||
<br/>
|
||||
Many thanks to all who
|
||||
<a href="http://crowdin.net/project/turbo-client">helped with translations</a> or
|
||||
donated to me</a>.<br/>
|
||||
donated to me.<br/>
|
||||
<br/>
|
||||
If you want to send feedback here is the <a href="http://forum.xda-developers.com/android/apps-games/app-turbo-editor-text-editor-t2832016">XDA thread</a>
|
||||
]]></string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="donation_action">Donate</string>
|
||||
<string name="donation_title">Donate to developer</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,8 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">モノスペースを使用</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="close">閉じる</string>
|
||||
<string name="about_action">アプリについて</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="donation_action">寄付</string>
|
||||
<string name="donation_title">開発者に寄付</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,8 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">고정 폭 사용</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="close">Close</string>
|
||||
<string name="about_action">About</string>
|
||||
@@ -29,7 +27,7 @@
|
||||
<br/>
|
||||
Many thanks to all who
|
||||
<a href="http://crowdin.net/project/turbo-client">helped with translations</a> or
|
||||
donated to me</a>.<br/>
|
||||
donated to me.<br/>
|
||||
<br/>
|
||||
If you want to send feedback here is the <a href="http://forum.xda-developers.com/android/apps-games/app-turbo-editor-text-editor-t2832016">XDA thread</a>
|
||||
]]></string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="donation_action">Donate</string>
|
||||
<string name="donation_title">Donate to developer</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,8 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="close">Close</string>
|
||||
<string name="about_action">About</string>
|
||||
@@ -29,7 +27,7 @@
|
||||
<br/>
|
||||
Many thanks to all who
|
||||
<a href="http://crowdin.net/project/turbo-client">helped with translations</a> or
|
||||
donated to me</a>.<br/>
|
||||
donated to me.<br/>
|
||||
<br/>
|
||||
If you want to send feedback here is the <a href="http://forum.xda-developers.com/android/apps-games/app-turbo-editor-text-editor-t2832016">XDA thread</a>
|
||||
]]></string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="donation_action">Donate</string>
|
||||
<string name="donation_title">Donate to developer</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,8 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="close">Close</string>
|
||||
<string name="about_action">About</string>
|
||||
@@ -29,7 +27,7 @@
|
||||
<br/>
|
||||
Many thanks to all who
|
||||
<a href="http://crowdin.net/project/turbo-client">helped with translations</a> or
|
||||
donated to me</a>.<br/>
|
||||
donated to me.<br/>
|
||||
<br/>
|
||||
If you want to send feedback here is the <a href="http://forum.xda-developers.com/android/apps-games/app-turbo-editor-text-editor-t2832016">XDA thread</a>
|
||||
]]></string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="donation_action">Donate</string>
|
||||
<string name="donation_title">Donate to developer</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,8 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="close">Close</string>
|
||||
<string name="about_action">About</string>
|
||||
@@ -29,7 +27,7 @@
|
||||
<br/>
|
||||
Many thanks to all who
|
||||
<a href="http://crowdin.net/project/turbo-client">helped with translations</a> or
|
||||
donated to me</a>.<br/>
|
||||
donated to me.<br/>
|
||||
<br/>
|
||||
If you want to send feedback here is the <a href="http://forum.xda-developers.com/android/apps-games/app-turbo-editor-text-editor-t2832016">XDA thread</a>
|
||||
]]></string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="donation_action">Donate</string>
|
||||
<string name="donation_title">Donate to developer</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,8 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="close">Close</string>
|
||||
<string name="about_action">About</string>
|
||||
@@ -29,7 +27,7 @@
|
||||
<br/>
|
||||
Many thanks to all who
|
||||
<a href="http://crowdin.net/project/turbo-client">helped with translations</a> or
|
||||
donated to me</a>.<br/>
|
||||
donated to me.<br/>
|
||||
<br/>
|
||||
If you want to send feedback here is the <a href="http://forum.xda-developers.com/android/apps-games/app-turbo-editor-text-editor-t2832016">XDA thread</a>
|
||||
]]></string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="donation_action">Donate</string>
|
||||
<string name="donation_title">Donate to developer</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,8 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Gebruik monospace</string>
|
||||
@@ -32,7 +31,7 @@
|
||||
<string name="folder">Map</string>
|
||||
<string name="light_theme">Licht thema</string>
|
||||
<string name="goto_line">Ga naar lijn</string>
|
||||
<string name="goto_page">Go to Page…</string>
|
||||
<string name="goto_page">Ga naar pagina…</string>
|
||||
<string name="find">Zoek</string>
|
||||
<string name="replace">Vervang</string>
|
||||
<string name="share">Delen</string>
|
||||
@@ -55,11 +54,11 @@
|
||||
<string name="long_click_for_more_options">Lang ingedrukt houden voor meer opties</string>
|
||||
<string name="auto_save">Automatisch opslaan</string>
|
||||
<string name="read_only">Alleen lezen</string>
|
||||
<string name="send_error_reports">Send error reports</string>
|
||||
<string name="extra_options">Extra options</string>
|
||||
<string name="split_text_if_too_long">Split the text if too long</string>
|
||||
<string name="ignore_back_button">Ignore back button</string>
|
||||
<string name="donate">Donate</string>
|
||||
<string name="send_error_reports">Foutrapport verzenden</string>
|
||||
<string name="extra_options">Extra opties</string>
|
||||
<string name="split_text_if_too_long">Te lange tekst splitsen</string>
|
||||
<string name="ignore_back_button">Terugknop negeren</string>
|
||||
<string name="donate">Doneren</string>
|
||||
<string name="codifica">Codering</string>
|
||||
<string name="condividi">Delen</string>
|
||||
<string name="info">Info</string>
|
||||
@@ -72,6 +71,6 @@
|
||||
<string name="open">Openen</string>
|
||||
<string name="file_saved_with_success">Het bestand %1$s is met succes opgeslagen!</string>
|
||||
<string name="open_a_file">Open een bestand</string>
|
||||
<string name="no">No</string>
|
||||
<string name="new_file">New file</string>
|
||||
<string name="no">Nee</string>
|
||||
<string name="new_file">Nieuw bestand</string>
|
||||
</resources>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,20 +18,13 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="close">Close</string>
|
||||
<string name="about_action">About</string>
|
||||
<string name="about_message"><![CDATA[
|
||||
Turbo Editor is a free and <a href="http://github.com/vmihalachi/turbo-editor">open source</a> app.
|
||||
Copyright 2013-2014 <a href="https://plus.google.com/+VladMihalachi">Vlad Mihalachi</a>. All Rights Reserved.<br/>
|
||||
<br/>
|
||||
Many thanks to all who
|
||||
<a href="http://crowdin.net/project/turbo-client">helped with translations</a> or
|
||||
donated to me</a>.<br/>
|
||||
<br/>
|
||||
If you want to send feedback here is the <a href="http://forum.xda-developers.com/android/apps-games/app-turbo-editor-text-editor-t2832016">XDA thread</a>
|
||||
]]></string>
|
||||
<string name="close">Sluit</string>
|
||||
<string name="about_action">Over</string>
|
||||
<string name="about_message"><![CDATA[Turbo Editor is een gratis en <a href="http://github.com/vmihalachi/turbo-editor">open source</a> app.
|
||||
Copyright 2013-2014 <a href="https://plus.google.com/+VladMihalachi">Vlad Mihalachi</a>. Alle rechten voorbehouden. <br/>
|
||||
<br/>
|
||||
Veel dank aan allen die <a href="http://crowdin.net/project/turbo-client"> geholpen hebben met vertalen</a> of die gedoneerd hebben aan mij.<br/>
|
||||
<br/>
|
||||
Voor feedback verwijs ik je naar het <a href="http://forum.xda-developers.com/android/apps-games/app-turbo-editor-text-editor-t2832016">XDA thread</a>]]></string>
|
||||
</resources>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,23 +18,18 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="donation_action">Donate</string>
|
||||
<string name="donation_title">Donate to developer</string>
|
||||
<string name="donation_info"><![CDATA[
|
||||
Turbo Editor is a free and <a href="http://github.com/vmihalachi/turbo-editor/">open source</a> app.
|
||||
You can show your appreciation and support development by donating:
|
||||
]]></string>
|
||||
<string name="donation_item_bought">You\'ve donated for this item already.</string>
|
||||
<string name="donation_2">An ice cream</string>
|
||||
<string name="donation_4">Cup of coffee</string>
|
||||
<string name="donation_10">Electricity bills</string>
|
||||
<string name="donation_20">The right pillow</string>
|
||||
<string name="donation_50">Solid-state drive</string>
|
||||
<string name="donation_99">Sound system</string>
|
||||
<string name="donation_error_iab_setup">Failed to setup in-app-billing service!</string>
|
||||
<string name="donation_no_responsibility">Notice that Google is not responsible for that payments method.</string>
|
||||
<string name="donation_action">Doneren</string>
|
||||
<string name="donation_title">Doneer aan de ontwikkelaar</string>
|
||||
<string name="donation_info"><![CDATA[Turbo Editor is een gratis en <a href="http://github.com/vmihalachi/turbo-editor/"> open source</a> app.
|
||||
U kunt uw waardering tonen en de ontwikkeling ondersteunen door te doneren: ]]></string>
|
||||
<string name="donation_item_bought">U heeft hiervoor al gedoneerd.</string>
|
||||
<string name="donation_2">Een ijsje</string>
|
||||
<string name="donation_4">Een kop koffie</string>
|
||||
<string name="donation_10">Elektriciteitsrekeningen</string>
|
||||
<string name="donation_20">Het juiste kussen</string>
|
||||
<string name="donation_50">Solid-state harde schijf</string>
|
||||
<string name="donation_99">Geluidssysteem</string>
|
||||
<string name="donation_error_iab_setup">Het opzetten van de service voor in-app-aankopen is mislukt!</string>
|
||||
<string name="donation_no_responsibility">Let er op dat Google niet verantwoordelijk is voor deze betalingsmethode.</string>
|
||||
</resources>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,8 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="close">Close</string>
|
||||
<string name="about_action">About</string>
|
||||
@@ -29,7 +27,7 @@
|
||||
<br/>
|
||||
Many thanks to all who
|
||||
<a href="http://crowdin.net/project/turbo-client">helped with translations</a> or
|
||||
donated to me</a>.<br/>
|
||||
donated to me.<br/>
|
||||
<br/>
|
||||
If you want to send feedback here is the <a href="http://forum.xda-developers.com/android/apps-games/app-turbo-editor-text-editor-t2832016">XDA thread</a>
|
||||
]]></string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="donation_action">Donate</string>
|
||||
<string name="donation_title">Donate to developer</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,8 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Użyj stałej szerokości</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="close">Close</string>
|
||||
<string name="about_action">About</string>
|
||||
@@ -29,7 +27,7 @@
|
||||
<br/>
|
||||
Many thanks to all who
|
||||
<a href="http://crowdin.net/project/turbo-client">helped with translations</a> or
|
||||
donated to me</a>.<br/>
|
||||
donated to me.<br/>
|
||||
<br/>
|
||||
If you want to send feedback here is the <a href="http://forum.xda-developers.com/android/apps-games/app-turbo-editor-text-editor-t2832016">XDA thread</a>
|
||||
]]></string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="donation_action">Donate</string>
|
||||
<string name="donation_title">Donate to developer</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,8 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Usar mono-espaço</string>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@@ -17,9 +18,6 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
|
||||
<resources>
|
||||
<string name="close">Fechar</string>
|
||||
<string name="about_action">Sobre</string>
|
||||
@@ -29,7 +27,7 @@
|
||||
<br/>
|
||||
Many thanks to all who
|
||||
<a href="http://crowdin.net/project/turbo-client">helped with translations</a> or
|
||||
donated to me</a>.<br/>
|
||||
donated to me.<br/>
|
||||
<br/>
|
||||
If you want to send feedback here is the <a href="http://forum.xda-developers.com/android/apps-games/app-turbo-editor-text-editor-t2832016">XDA thread</a>
|
||||
]]></string>
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user