diff --git a/app-pro/build.gradle b/app-pro/build.gradle
index 93ac6bd..852ac31 100644
--- a/app-pro/build.gradle
+++ b/app-pro/build.gradle
@@ -23,14 +23,14 @@ apply plugin: 'com.android.application'
android {
compileSdkVersion 22
- buildToolsVersion '22'
+ buildToolsVersion '22.0.1'
defaultConfig {
applicationId "com.maskyn.fileeditorpro"
minSdkVersion 11
targetSdkVersion 22
- versionCode 46
- versionName "1.18.3"
+ versionCode 47
+ versionName "1.19"
}
compileOptions {
diff --git a/app/build.gradle b/app/build.gradle
index 3623806..6e7260f 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -43,13 +43,13 @@ repositories {
android {
compileSdkVersion 22
- buildToolsVersion '22'
+ buildToolsVersion '22.0.1'
defaultConfig {
applicationId "com.maskyn.fileeditor"
minSdkVersion 11
targetSdkVersion 22
- versionCode 46
- versionName "1.18.3"
+ versionCode 47
+ versionName "1.19"
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
diff --git a/build/intermediates/dex-cache/cache.xml b/build/intermediates/dex-cache/cache.xml
index 916627f..073085b 100644
--- a/build/intermediates/dex-cache/cache.xml
+++ b/build/intermediates/dex-cache/cache.xml
@@ -2,284 +2,186 @@
-
-
-
- -
-
-
- -
-
-
- -
-
-
- -
-
-
- -
-
-
- -
-
-
- -
-
-
- -
-
-
- -
-
+
-
-
+ revision="22.0.1"
+ sha1="0a4af6a85230b990eb8690b696d2db9247338611">
+
-
-
-
- -
-
-
- -
-
+ revision="22.0.1"
+ sha1="0ede4b0ce58fc0fa7a27c7f08e5a1db501d7214a">
+
-
-
+
-
-
+ revision="22.0.1"
+ sha1="d84409890828e07d344a3b9b1da545dba9897b51">
+
-
-
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
-
-
+
-
-
+ revision="22.0.1"
+ sha1="6dfceaa4daa04ee7ed4cdda1157e3de8ede56a90">
+
-
-
+ revision="22.0.1"
+ sha1="b1b6ea3b7e4aa4f492509a4952029cd8e48019ad">
+
-
-
+ revision="22.0.1"
+ sha1="158555fbeff80e5a85464a818eadda8a448a1051">
+
-
-
-
- -
-
-
- -
-
-
- -
-
-
- -
-
-
- -
-
-
- -
-
-
- -
-
-
- -
-
-
- -
-
-
- -
-
-
- -
-
+
-
-
+
-
-
+ revision="22.0.1"
+ sha1="494089d9d84042634d2be0355702e96805f847d3">
+
-
-
+ revision="22.0.1"
+ sha1="591d72211acc0b909b79c840e0b3ed9a0982d807">
+
-
-
+ revision="22.0.1"
+ sha1="0ede4b0ce58fc0fa7a27c7f08e5a1db501d7214a">
+
-
-
-
- -
-
-
- -
-
+ revision="22.0.1"
+ sha1="591d72211acc0b909b79c840e0b3ed9a0982d807">
+
diff --git a/libraries/FloatingActionButton/build.gradle b/libraries/FloatingActionButton/build.gradle
index fe221bb..c960270 100644
--- a/libraries/FloatingActionButton/build.gradle
+++ b/libraries/FloatingActionButton/build.gradle
@@ -1,7 +1,7 @@
apply plugin: 'com.android.library'
android {
compileSdkVersion 22
- buildToolsVersion '22'
+ buildToolsVersion '22.0.1'
defaultConfig {
minSdkVersion 7
diff --git a/libraries/sharedCode/build.gradle b/libraries/sharedCode/build.gradle
index 114b686..427e568 100644
--- a/libraries/sharedCode/build.gradle
+++ b/libraries/sharedCode/build.gradle
@@ -27,7 +27,7 @@ android {
}
compileSdkVersion 22
- buildToolsVersion '22'
+ buildToolsVersion '22.0.1'
defaultConfig {
minSdkVersion 11
diff --git a/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/utils/File.java b/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/utils/File.java
index f7dae91..007b545 100644
--- a/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/utils/File.java
+++ b/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/utils/File.java
@@ -19,6 +19,19 @@
package com.spazedog.lib.rootfw4.utils;
+import java.io.BufferedReader;
+import java.io.BufferedWriter;
+import java.io.FileInputStream;
+import java.io.FileOutputStream;
+import java.io.InputStream;
+import java.io.OutputStream;
+import java.util.ArrayList;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+import java.util.Set;
+import java.util.regex.Pattern;
+
import android.content.Context;
import android.os.Bundle;
import android.text.TextUtils;
@@ -39,19 +52,6 @@ import com.spazedog.lib.rootfw4.utils.Filesystem.MountStat;
import com.spazedog.lib.rootfw4.utils.io.FileReader;
import com.spazedog.lib.rootfw4.utils.io.FileWriter;
-import java.io.BufferedReader;
-import java.io.BufferedWriter;
-import java.io.FileInputStream;
-import java.io.FileOutputStream;
-import java.io.InputStream;
-import java.io.OutputStream;
-import java.util.ArrayList;
-import java.util.HashMap;
-import java.util.List;
-import java.util.Map;
-import java.util.Set;
-import java.util.regex.Pattern;
-
public class File {
public static final String TAG = Common.TAG + ".File";
@@ -589,10 +589,10 @@ public class File {
for (String line : input) {
String escapedInput = oPatternEscape.matcher(line).replaceAll("\\\\$1");
Attempts attempts = mShell.createAttempts("echo '" + escapedInput + "' " + redirect + " '" + path + "' 2> /dev/null");
-
Result result = attempts.execute();
+
if (result != null && !(status = result.wasSuccessful())) {
- break;
+ break;
}
redirect = ">>";
@@ -614,6 +614,63 @@ public class File {
return status;
}
}
+
+ /**
+ * @see #write(String[], Boolean)
+ */
+ public Result writeResult(String input) {
+ return writeResult(input.trim().split("\n"), false);
+ }
+
+ public Result writeResult(String[] input, Boolean append) {
+ synchronized (mLock) {
+ Boolean status = false;
+ Result result = null;
+
+ if (input != null && !isDirectory()) {
+ try {
+ BufferedWriter output = new BufferedWriter(new java.io.FileWriter(mFile, append));
+
+ for (String line : input) {
+ output.write(line);
+ output.newLine();
+ }
+
+ output.close();
+ status = true;
+
+ } catch(Throwable e) {
+ String redirect = append ? ">>" : ">";
+ String path = getAbsolutePath();
+
+ for (String line : input) {
+ String escapedInput = oPatternEscape.matcher(line).replaceAll("\\\\$1");
+ Attempts attempts = mShell.createAttempts("echo '" + escapedInput + "' " + redirect + " '" + path + "' 2> /dev/null");
+ result = attempts.execute();
+
+ if (result != null && !(status = result.wasSuccessful())) {
+ break;
+ }
+
+ redirect = ">>";
+ }
+ }
+
+ /*
+ * Alert other instances using this file, that the state might have changed.
+ */
+ if (status) {
+ Bundle bundle = new Bundle();
+ bundle.putString("action", "exists");
+ bundle.putString("location", getAbsolutePath());
+
+ Shell.sendBroadcast("file", bundle);
+ }
+ }
+
+ return result;
+ }
+ }
/**
* Remove the file.
diff --git a/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/utils/Filesystem.java b/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/utils/Filesystem.java
index a11ffb3..38c8a57 100644
--- a/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/utils/Filesystem.java
+++ b/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/utils/Filesystem.java
@@ -1,32 +1,24 @@
/*
- * Copyright (C) 2014 Vlad Mihalachi
+ * This file is part of the RootFW Project: https://github.com/spazedog/rootfw
+ *
+ * Copyright (c) 2015 Daniel Bergløv
*
- * 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
+ * RootFW 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.
- *
- * Turbo Editor is distributed in the hope that it will be useful,
+
+ * RootFW 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 .
+ * 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 RootFW. If not, see
*/
package com.spazedog.lib.rootfw4.utils;
-import android.text.TextUtils;
-
-import com.spazedog.lib.rootfw4.Common;
-import com.spazedog.lib.rootfw4.Shell;
-import com.spazedog.lib.rootfw4.Shell.Result;
-import com.spazedog.lib.rootfw4.containers.BasicContainer;
-import com.spazedog.lib.rootfw4.utils.File.FileData;
-
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashSet;
@@ -35,6 +27,14 @@ import java.util.Locale;
import java.util.Set;
import java.util.regex.Pattern;
+import android.text.TextUtils;
+
+import com.spazedog.lib.rootfw4.Common;
+import com.spazedog.lib.rootfw4.Shell;
+import com.spazedog.lib.rootfw4.Shell.Result;
+import com.spazedog.lib.rootfw4.containers.BasicContainer;
+import com.spazedog.lib.rootfw4.utils.File.FileData;
+
public class Filesystem {
public static final String TAG = Common.TAG + ".Filesystem";
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 4bc1447..d35a184 100644
--- a/libraries/sharedCode/src/main/java/sharedcode/turboeditor/activity/MainActivity.java
+++ b/libraries/sharedCode/src/main/java/sharedcode/turboeditor/activity/MainActivity.java
@@ -874,10 +874,9 @@ public abstract class MainActivity extends ActionBarActivity implements IHomeAct
new AsyncTask() {
String message = "";
- String fileText;
- String filePath = "";
+ String fileText = "";
String fileName = "";
- String encoding;
+ String encoding = "UTF-16";
boolean isRootRequired = false;
ProgressDialog progressDialog;
@@ -900,7 +899,7 @@ public abstract class MainActivity extends ActionBarActivity implements IHomeAct
fileExtension = "txt";
fileText = newFileText;
} else {
- filePath = newUri.getFilePath();
+ String filePath = newUri.getFilePath();
// if the uri has no path
if (TextUtils.isEmpty(filePath)) {
@@ -1025,6 +1024,8 @@ public abstract class MainActivity extends ActionBarActivity implements IHomeAct
if (uri != null) {
+ greatUri = uri;
+
String name = uri.getFileName();
fileExtension = FilenameUtils.getExtension(name).toLowerCase();
toolbar.setTitle(name);
diff --git a/libraries/sharedCode/src/main/java/sharedcode/turboeditor/dialogfragment/NewFileDetailsDialog.java b/libraries/sharedCode/src/main/java/sharedcode/turboeditor/dialogfragment/NewFileDetailsDialog.java
index 7ef1e38..8640acc 100644
--- a/libraries/sharedCode/src/main/java/sharedcode/turboeditor/dialogfragment/NewFileDetailsDialog.java
+++ b/libraries/sharedCode/src/main/java/sharedcode/turboeditor/dialogfragment/NewFileDetailsDialog.java
@@ -29,11 +29,8 @@ import android.os.Bundle;
import android.text.TextUtils;
import android.view.View;
import android.view.WindowManager;
-import android.widget.CheckBox;
import android.widget.EditText;
-import org.apache.commons.io.FileUtils;
-
import java.io.File;
import java.io.IOException;
@@ -42,7 +39,6 @@ import sharedcode.turboeditor.activity.MainActivity;
import sharedcode.turboeditor.preferences.PreferenceHelper;
import sharedcode.turboeditor.task.SaveFileTask;
import sharedcode.turboeditor.util.GreatUri;
-import sharedcode.turboeditor.util.ViewUtils;
import sharedcode.turboeditor.views.DialogHelper;
// ...
@@ -51,7 +47,6 @@ public class NewFileDetailsDialog extends DialogFragment {
private EditText mName;
private EditText mFolder;
- private CheckBox mDeleteCurrentFile;
GreatUri currentUri;
String fileText;
@@ -88,9 +83,6 @@ public class NewFileDetailsDialog extends DialogFragment {
this.mFolder.setText(currentUri.getParentFolder());
}
- this.mDeleteCurrentFile = (CheckBox) view.findViewById(R.id.delete_current_file);
- ViewUtils.setVisible(mDeleteCurrentFile, !noName);
-
// Show soft keyboard automatically
this.mName.requestFocus();
this.mName.setSelection(0);
@@ -103,30 +95,26 @@ public class NewFileDetailsDialog extends DialogFragment {
@Override
public void onClick(DialogInterface dialog, int which) {
- if (mDeleteCurrentFile.isChecked()) {
- FileUtils.deleteQuietly(new File(currentUri.getFilePath()));
- }
-
if (!mName.getText().toString().isEmpty() && !mFolder.getText().toString().isEmpty()) {
+ File file = new File(mFolder.getText().toString(), mName.getText().toString());
try {
- File file = new File(mFolder.getText().toString(), mName.getText().toString());
file.getParentFile().mkdirs();
file.createNewFile();
-
- final GreatUri newUri = new GreatUri(Uri.fromFile(file), file.getAbsolutePath(), file.getName());
-
- new SaveFileTask((MainActivity) getActivity(), newUri, fileText, fileEncoding, new SaveFileTask.SaveFileInterface() {
- @Override
- public void fileSaved(Boolean success) {
- if (getActivity() != null) {
- ((MainActivity) getActivity()).savedAFile(newUri, true);
- }
- }
- }).execute();
} catch (IOException e) {
e.printStackTrace();
}
+
+ final GreatUri newUri = new GreatUri(Uri.fromFile(file), file.getAbsolutePath(), file.getName());
+
+ new SaveFileTask((MainActivity) getActivity(), newUri, fileText, fileEncoding, new SaveFileTask.SaveFileInterface() {
+ @Override
+ public void fileSaved(Boolean success) {
+ if (getActivity() != null) {
+ ((MainActivity) getActivity()).savedAFile(newUri, true);
+ }
+ }
+ }).execute();
}
}
}
diff --git a/libraries/sharedCode/src/main/java/sharedcode/turboeditor/preferences/SettingsFragment.java b/libraries/sharedCode/src/main/java/sharedcode/turboeditor/preferences/SettingsFragment.java
index 8477eeb..a4745f8 100644
--- a/libraries/sharedCode/src/main/java/sharedcode/turboeditor/preferences/SettingsFragment.java
+++ b/libraries/sharedCode/src/main/java/sharedcode/turboeditor/preferences/SettingsFragment.java
@@ -36,6 +36,7 @@ import sharedcode.turboeditor.activity.MainActivity;
import sharedcode.turboeditor.dialogfragment.EncodingDialog;
import sharedcode.turboeditor.dialogfragment.NumberPickerDialog;
import sharedcode.turboeditor.dialogfragment.ThemeDialog;
+import sharedcode.turboeditor.util.Device;
import sharedcode.turboeditor.util.ProCheckUtils;
import sharedcode.turboeditor.util.ViewUtils;
@@ -117,6 +118,8 @@ public class SettingsFragment extends Fragment implements NumberPickerDialog.INu
themeView = (TextView) rootView.findViewById(R.id.drawer_button_theme);
ViewUtils.setVisible(goPro, !ProCheckUtils.isPro(getActivity()));
+ ViewUtils.setVisible(swStorageAccessFramework, Device.hasKitKatApi());
+
goPro.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
diff --git a/libraries/sharedCode/src/main/java/sharedcode/turboeditor/task/SaveFileTask.java b/libraries/sharedCode/src/main/java/sharedcode/turboeditor/task/SaveFileTask.java
index 762de27..e04fdc3 100644
--- a/libraries/sharedCode/src/main/java/sharedcode/turboeditor/task/SaveFileTask.java
+++ b/libraries/sharedCode/src/main/java/sharedcode/turboeditor/task/SaveFileTask.java
@@ -26,6 +26,7 @@ import android.text.TextUtils;
import android.widget.Toast;
import com.spazedog.lib.rootfw4.RootFW;
+import com.spazedog.lib.rootfw4.Shell;
import com.spazedog.lib.rootfw4.utils.File;
import com.spazedog.lib.rootfw4.utils.Filesystem;
@@ -47,7 +48,7 @@ public class SaveFileTask extends AsyncTask {
private final String newContent;
private final String encoding;
private String message;
- private String positiveMessage;
+ private String positiveMessage, negativeMessage;
private SaveFileInterface mCompletionHandler;
public SaveFileTask(MainActivity activity, GreatUri uri, String newContent, String encoding, SaveFileInterface mCompletionHandler) {
@@ -62,6 +63,7 @@ public class SaveFileTask extends AsyncTask {
protected void onPreExecute() {
super.onPreExecute();
positiveMessage = String.format(activity.getString(R.string.file_saved_with_success), uri.getFileName());
+ negativeMessage = activity.getString(R.string.err_occured);
}
/**
@@ -70,13 +72,17 @@ public class SaveFileTask extends AsyncTask {
@Override
protected Void doInBackground(final Void... voids) {
+ boolean isRootNeeded = false;
+ Shell.Result resultRoot = null;
+
try {
String filePath = uri.getFilePath();
// if the uri has no path
if (TextUtils.isEmpty(filePath)) {
writeUri(uri.getUri(), newContent, encoding);
} else {
- if (uri.isWritable()) {
+ isRootNeeded = !uri.isWritable();
+ if (isRootNeeded == false) {
if (Device.hasKitKatApi())
writeUri(uri.getUri(), newContent, encoding);
else {
@@ -93,7 +99,7 @@ public class SaveFileTask extends AsyncTask {
systemPart.mount(new String[]{"rw"});
File file = RootFW.getFile(uri.getFilePath());
- file.write(newContent);
+ resultRoot = file.writeResult(newContent);
RootFW.disconnect();
}
@@ -102,8 +108,21 @@ public class SaveFileTask extends AsyncTask {
}
- message = positiveMessage;
+
+ if (isRootNeeded) {
+ if (resultRoot != null && resultRoot.wasSuccessful()) {
+ message = positiveMessage;
+ }
+ else if (resultRoot != null) {
+ message = negativeMessage + " command number: " + resultRoot.getCommandNumber() + " result code: " + resultRoot.getResultCode() + " error lines: " + resultRoot.getString();
+ }
+ else
+ message = negativeMessage;
+ }
+ else
+ message = positiveMessage;
} catch (Exception e) {
+ e.printStackTrace();
message = e.getMessage();
}
return null;
@@ -125,11 +144,15 @@ public class SaveFileTask extends AsyncTask {
super.onPostExecute(aVoid);
Toast.makeText(activity, message, Toast.LENGTH_LONG).show();
+ /*android.content.ClipboardManager clipboard = (android.content.ClipboardManager) activity.getSystemService(Context.CLIPBOARD_SERVICE);
+ android.content.ClipData clip = android.content.ClipData.newPlainText("Clip",message);
+ clipboard.setPrimaryClip(clip);*/
+
if (mCompletionHandler != null)
mCompletionHandler.fileSaved(message.equals(positiveMessage));
}
public interface SaveFileInterface {
- public void fileSaved(Boolean success);
+ void fileSaved(Boolean success);
}
}
\ No newline at end of file
diff --git a/libraries/sharedCode/src/main/res/layout/dialog_fragment_new_file_details.xml b/libraries/sharedCode/src/main/res/layout/dialog_fragment_new_file_details.xml
index b2749f8..1964a11 100644
--- a/libraries/sharedCode/src/main/res/layout/dialog_fragment_new_file_details.xml
+++ b/libraries/sharedCode/src/main/res/layout/dialog_fragment_new_file_details.xml
@@ -58,14 +58,4 @@
android:hint="@string/folder"
android:padding="5dp"
android:textSize="12sp"/>
-
-
diff --git a/libraries/sharedCode/src/main/res/raw/changelog.xml b/libraries/sharedCode/src/main/res/raw/changelog.xml
index 3c0069d..10d22f3 100644
--- a/libraries/sharedCode/src/main/res/raw/changelog.xml
+++ b/libraries/sharedCode/src/main/res/raw/changelog.xml
@@ -20,6 +20,14 @@
+
+ Storage Access Framework is now by default false, go to the preferences to activate it!
+ Added some extensions as openable by the app
+ Important fixes on saving files
+ Updated the translations
+
+
+
Fixed some important issues, I am really sorry!
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 47d8789..2fb7d7b 100644
--- a/libraries/sharedCode/src/main/res/values-af-rZA/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-af-rZA/strings.xml
@@ -81,5 +81,5 @@
View markdown result
Accessory view
The file cannot be renamed
- Use kitkat file selection
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-af-rZA/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-af-rZA/strings_turbo_client.xml
new file mode 100644
index 0000000..4fd576e
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-af-rZA/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Change the list type
+ Copy URL
+ Cut
+ Paste
+ Advanced
+ Auto
+ Bytes
+ Unit of measurement for file size
+ Create a new account
+ Create a new account to start.
+ Type
+ The file %1$s was modified, do you want to upload it?
+ Sync
+ Remote folder to sync
+ Local folder to sync
+ Rate
+ Backup the accounts
+ Restore the accounts
+ Backup and share the accounts
+ Importing the accounts…
+ Exporting the accounts…
+ No backups found
+ Cannot open the file
+ Temporary folder does not exist
+ An error occurred
+ UI
+ Remove
+ Modification date
+ Name
+ Size
+ Sort
+ Dark
+ Select
+ Select an account
+ Are you sure?
+ Something failed
+ Do not transfer same file
+ App theme
+ Connection type
+ Protocol type
+ Another folder
+ Use a passphrase
+ Upload
+ Upload completed
+ What do you want to do?
+ Remote
+ To change the theme, restart the application
+ Rename
+ Default remote folder
+ Username
+ Passive
+ Passphrase
+ Password
+ Leave it empty to prompt for it every session
+ Port
+ Local
+ Logging in…
+ Edit
+ Move
+ Hide
+ Turbo Client
+ Host
+ New local folder
+ New remote folder
+ New remote file
+ New local file
+ Disconnect
+ Default local folder
+ Where to download?
+ Download
+ Download completed
+ Duplicate
+ Done
+ Home
+ Light
+ New account
+ Active
+ Delete
+ Deleting files…
+ Loading…
+ Current local folder
+ Private Key
+ Hide ads
+ Single line list
+ Two lines list
+ Simple list
+
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 d80af61..f366d3b 100644
--- a/libraries/sharedCode/src/main/res/values-ar-rSA/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-ar-rSA/strings.xml
@@ -81,5 +81,5 @@
View markdown result
Accessory view
The file cannot be renamed
- Use kitkat file selection
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-ar-rSA/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-ar-rSA/strings_turbo_client.xml
new file mode 100644
index 0000000..337dc8b
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-ar-rSA/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ تغيير نوع القائمة
+ انسخ الرابط
+ قص
+ Paste
+ مُتقدم
+ تلقائي
+ بايت
+ وحدة قياس لحجم الملف
+ إنشاء حساب جديد
+ قم بإنشاء حساب جديد للبدء.
+ نوع
+ تم تعديل الملف % 1$ s، هل تريد تحميله؟
+ المزامنة
+ المجلد البعيد للمزامنة
+ المجلد المحلي للمزامنة
+ تقييم
+ النسخ الاحتياطي للحسابات
+ إسترجاع الحسابات
+ النسخ الاحتياطي وتبادل الحسابات
+ استيراد الحسابات…
+ Exporting the accounts…
+ لم يتم العثور على نسخة احتياطية
+ لا يمكن فتح الملف
+ المجلد المؤقت غير موجود
+ حدث خطأ
+ واجهة المستخدم
+ إزالة
+ تاريخ التعديل
+ الاسم
+ الحجم
+ الترتيب
+ غامق
+ حدد
+ حدد حساباً
+ هل أنت متأكد؟
+ شيء ما خطأ
+ لا تنقل الملف نفسه
+ ثيم التطبيق
+ نوع الاتصال
+ نوع البروتوكول
+ مجلد آخر
+ استخدام passphrase
+ رفع
+ اكتمل الرفع
+ ماذا تريد ان تفعل؟
+ عن بعد
+ لتغيير الثيم، قم بإعادة تشغيل التطبيق
+ إعادة التسمية
+ المجلد الافتراضي البعيد
+ اسم المستخدم
+ سلبي
+ Passphrase
+ كلمة المرور
+ اتركه فارغ للمطالبة لكل جلسة
+ المنفذ
+ محلى
+ جاري الاتّصال…
+ تعديل
+ نقل
+ إخفاء
+ العميل توربو
+ استضافة
+ مجلد محلي جديد
+ مجلد عن بعد جديد
+ الملف البعيد جديد
+ ملف محلي جديد
+ قطع الاتصال
+ المجلد المحلي الافتراضي
+ اين تريد التحميل؟
+ تحميل
+ تم التحميل
+ تكرار
+ تم
+ الصفحة الرئيسية
+ خفيف
+ حساب جديد
+ تنشيط
+ حذف
+ حذف الملفات…
+ جاري التحميل…
+ المجلد المحلي الحالي
+ مفتاح خاص
+ Hide ads
+ Single line list
+ Two lines list
+ Simple list
+
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 47d8789..2fb7d7b 100644
--- a/libraries/sharedCode/src/main/res/values-az-rAZ/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-az-rAZ/strings.xml
@@ -81,5 +81,5 @@
View markdown result
Accessory view
The file cannot be renamed
- Use kitkat file selection
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-az-rAZ/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-az-rAZ/strings_turbo_client.xml
new file mode 100644
index 0000000..4fd576e
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-az-rAZ/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Change the list type
+ Copy URL
+ Cut
+ Paste
+ Advanced
+ Auto
+ Bytes
+ Unit of measurement for file size
+ Create a new account
+ Create a new account to start.
+ Type
+ The file %1$s was modified, do you want to upload it?
+ Sync
+ Remote folder to sync
+ Local folder to sync
+ Rate
+ Backup the accounts
+ Restore the accounts
+ Backup and share the accounts
+ Importing the accounts…
+ Exporting the accounts…
+ No backups found
+ Cannot open the file
+ Temporary folder does not exist
+ An error occurred
+ UI
+ Remove
+ Modification date
+ Name
+ Size
+ Sort
+ Dark
+ Select
+ Select an account
+ Are you sure?
+ Something failed
+ Do not transfer same file
+ App theme
+ Connection type
+ Protocol type
+ Another folder
+ Use a passphrase
+ Upload
+ Upload completed
+ What do you want to do?
+ Remote
+ To change the theme, restart the application
+ Rename
+ Default remote folder
+ Username
+ Passive
+ Passphrase
+ Password
+ Leave it empty to prompt for it every session
+ Port
+ Local
+ Logging in…
+ Edit
+ Move
+ Hide
+ Turbo Client
+ Host
+ New local folder
+ New remote folder
+ New remote file
+ New local file
+ Disconnect
+ Default local folder
+ Where to download?
+ Download
+ Download completed
+ Duplicate
+ Done
+ Home
+ Light
+ New account
+ Active
+ Delete
+ Deleting files…
+ Loading…
+ Current local folder
+ Private Key
+ Hide ads
+ Single line list
+ Two lines list
+ Simple list
+
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 47d8789..2fb7d7b 100644
--- a/libraries/sharedCode/src/main/res/values-be-rBY/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-be-rBY/strings.xml
@@ -81,5 +81,5 @@
View markdown result
Accessory view
The file cannot be renamed
- Use kitkat file selection
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-be-rBY/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-be-rBY/strings_turbo_client.xml
new file mode 100644
index 0000000..4fd576e
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-be-rBY/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Change the list type
+ Copy URL
+ Cut
+ Paste
+ Advanced
+ Auto
+ Bytes
+ Unit of measurement for file size
+ Create a new account
+ Create a new account to start.
+ Type
+ The file %1$s was modified, do you want to upload it?
+ Sync
+ Remote folder to sync
+ Local folder to sync
+ Rate
+ Backup the accounts
+ Restore the accounts
+ Backup and share the accounts
+ Importing the accounts…
+ Exporting the accounts…
+ No backups found
+ Cannot open the file
+ Temporary folder does not exist
+ An error occurred
+ UI
+ Remove
+ Modification date
+ Name
+ Size
+ Sort
+ Dark
+ Select
+ Select an account
+ Are you sure?
+ Something failed
+ Do not transfer same file
+ App theme
+ Connection type
+ Protocol type
+ Another folder
+ Use a passphrase
+ Upload
+ Upload completed
+ What do you want to do?
+ Remote
+ To change the theme, restart the application
+ Rename
+ Default remote folder
+ Username
+ Passive
+ Passphrase
+ Password
+ Leave it empty to prompt for it every session
+ Port
+ Local
+ Logging in…
+ Edit
+ Move
+ Hide
+ Turbo Client
+ Host
+ New local folder
+ New remote folder
+ New remote file
+ New local file
+ Disconnect
+ Default local folder
+ Where to download?
+ Download
+ Download completed
+ Duplicate
+ Done
+ Home
+ Light
+ New account
+ Active
+ Delete
+ Deleting files…
+ Loading…
+ Current local folder
+ Private Key
+ Hide ads
+ Single line list
+ Two lines list
+ Simple list
+
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 47d8789..2fb7d7b 100644
--- a/libraries/sharedCode/src/main/res/values-bg-rBG/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-bg-rBG/strings.xml
@@ -81,5 +81,5 @@
View markdown result
Accessory view
The file cannot be renamed
- Use kitkat file selection
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-bg-rBG/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-bg-rBG/strings_turbo_client.xml
new file mode 100644
index 0000000..4fd576e
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-bg-rBG/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Change the list type
+ Copy URL
+ Cut
+ Paste
+ Advanced
+ Auto
+ Bytes
+ Unit of measurement for file size
+ Create a new account
+ Create a new account to start.
+ Type
+ The file %1$s was modified, do you want to upload it?
+ Sync
+ Remote folder to sync
+ Local folder to sync
+ Rate
+ Backup the accounts
+ Restore the accounts
+ Backup and share the accounts
+ Importing the accounts…
+ Exporting the accounts…
+ No backups found
+ Cannot open the file
+ Temporary folder does not exist
+ An error occurred
+ UI
+ Remove
+ Modification date
+ Name
+ Size
+ Sort
+ Dark
+ Select
+ Select an account
+ Are you sure?
+ Something failed
+ Do not transfer same file
+ App theme
+ Connection type
+ Protocol type
+ Another folder
+ Use a passphrase
+ Upload
+ Upload completed
+ What do you want to do?
+ Remote
+ To change the theme, restart the application
+ Rename
+ Default remote folder
+ Username
+ Passive
+ Passphrase
+ Password
+ Leave it empty to prompt for it every session
+ Port
+ Local
+ Logging in…
+ Edit
+ Move
+ Hide
+ Turbo Client
+ Host
+ New local folder
+ New remote folder
+ New remote file
+ New local file
+ Disconnect
+ Default local folder
+ Where to download?
+ Download
+ Download completed
+ Duplicate
+ Done
+ Home
+ Light
+ New account
+ Active
+ Delete
+ Deleting files…
+ Loading…
+ Current local folder
+ Private Key
+ Hide ads
+ Single line list
+ Two lines list
+ Simple list
+
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 93f519f..bc42f73 100644
--- a/libraries/sharedCode/src/main/res/values-ca-rES/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-ca-rES/strings.xml
@@ -81,5 +81,5 @@
View markdown result
Accessory view
The file cannot be renamed
- Use kitkat file selection
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-ca-rES/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-ca-rES/strings_turbo_client.xml
new file mode 100644
index 0000000..ef581c4
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-ca-rES/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Canvia el tipus de llista
+ Copia l\'URL
+ Talla
+ Paste
+ Avançat
+ Automàtic
+ Bytes
+ Unitat de mesura del tamany de l\'arxiu
+ Crea un nou compte
+ Crea un nou compte per començar.
+ Escriu
+ L\'arxiu %1$s ha estat modificat, vols pujar-lo?
+ Sincronitzar
+ Sincronitza la carpeta remota
+ Sincronitza la carpeta local
+ Vota
+ Còpia de seguretat del comptes
+ Restaura els comptes
+ Fes una còpia de seguretat i comparteix els comptes
+ Important els comptes...
+ Exporting the accounts…
+ No s\'han trobat còpies de seguretat
+ No es pot obrir l\'arxiu
+ No existeix la carpeta temporal
+ S\'ha produït un error
+ IU
+ Eliminar
+ Data de modificació
+ Nom
+ Tamany
+ Classifica
+ Fosc
+ Selecciona
+ Selecciona un compte
+ Segur?
+ Alguna cosa ha fallat
+ No transfereixis el mateix fitxer
+ Tema de l\'app
+ Tipus de connexió
+ Tipus de protocol
+ Una altra carpeta
+ Usar una frase de pas
+ Pujar
+ Pujada completa
+ Què vols fer?
+ Remot
+ Per a canviar el tema, reinicia l\'aplicació
+ Reanomena
+ Arrel
+ Nom d\'usuari
+ Passiu
+ Frase de pas
+ Contrasenya
+ Deixa-ho buit per sol·licitar-ho a totes les sessions
+ Port
+ Local
+ Ingressant...
+ Editar
+ Mou
+ Amagar
+ Client Turbo
+ Hoste
+ Nova carpeta local
+ Nova carpeta remota
+ Nou arxiu remot
+ Nou fitxer local
+ Desconnecta
+ Carpeta local per omissió
+ On descarregar?
+ Descarrega
+ Descàrrega completada
+ Duplicar
+ Fet
+ Inici
+ Clar
+ Nou compte
+ Activa
+ Esborra
+ Esborrant fitxers...
+ Carregant...
+ Carpeta local actual
+ Clau privada
+ Hide ads
+ Single line list
+ Two lines list
+ Simple list
+
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 a30af9f..8fb728f 100644
--- a/libraries/sharedCode/src/main/res/values-cs-rCZ/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-cs-rCZ/strings.xml
@@ -81,5 +81,5 @@
View markdown result
Accessory view
The file cannot be renamed
- Use kitkat file selection
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-cs-rCZ/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-cs-rCZ/strings_turbo_client.xml
new file mode 100644
index 0000000..f9b7baa
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-cs-rCZ/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Změnit typ výpisu
+ Kopírovat adresu URL
+ Vyjmout
+ Paste
+ Pokročilé
+ Automaticky
+ Byty
+ Jednotka měření pro velikost souboru
+ Vytvořit nový účet
+ Začněte tím, že vytvoříte nový účet.
+ Typ
+ Soubor %1$s byl upraven, chcete ho nahrát?
+ Synchronizace
+ Vzdálená složka pro synchronizaci
+ Místní složka k synchronizaci
+ Ohodnotit
+ Zálohovat účty
+ Obnovit účty
+ Zálohovat a sdílet účty
+ Importuji účty…
+ Exporting the accounts…
+ Nebyly nalezeny žádné zálohy
+ Soubor nelze otevřít
+ Dočasná složka neexistuje
+ Nastala chyba
+ UI
+ Odstranit
+ Datum změny
+ Jméno
+ Velikost
+ Seřadit
+ Tmavý
+ Zvolit
+ Zvolit účet
+ Jste si jistý?
+ Něco se nepovedlo
+ Nepřenášet stejný soubor
+ Vzhled aplikace
+ Typ spojení
+ Typ protokolu
+ Jiná složka
+ Použít heslo
+ Nahrát
+ Úspěšně nahráno
+ Co chcete udělat?
+ Vzdálený
+ Pro změnu vzhledu restartujte aplikaci
+ Přejmenovat
+ Výchozí vzdálená složka
+ Uživatelské jméno
+ Pasivní
+ Heslo
+ Heslo
+ Ponechte prázdné, aby se program pokaždé zeptal
+ Port
+ Místní
+ Přihlašuji…
+ Upravit
+ Přesunout
+ Skrýt
+ Turbo Klient
+ Hostitel
+ Nová místní složka
+ Nová vzdálená složka
+ Nový vzdálený soubor
+ Nový místní soubor
+ Odpojit
+ Výchozí místní složka
+ Kam stáhnout?
+ Stáhnout
+ Stahování bylo dokončeno
+ Duplikovat
+ Hotovo
+ Domů
+ Světlý
+ Nový účet
+ Aktivní
+ Odstranit
+ Odstraňuji soubory…
+ Načítám…
+ Aktuální místní složka
+ Soukromý klíč
+ Hide ads
+ Single line list
+ Two lines list
+ Simple list
+
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 1db68bb..c26da39 100644
--- a/libraries/sharedCode/src/main/res/values-da-rDK/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-da-rDK/strings.xml
@@ -81,5 +81,5 @@
View markdown result
Accessory view
The file cannot be renamed
- Use kitkat file selection
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-da-rDK/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-da-rDK/strings_turbo_client.xml
new file mode 100644
index 0000000..39632e0
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-da-rDK/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Change the list type
+ Copy URL
+ Cut
+ Paste
+ Advanced
+ Auto
+ Bytes
+ Unit of measurement for file size
+ Create a new account
+ Create a new account to start.
+ Type
+ The file %1$s was modified, do you want to upload it?
+ Synk.
+ Fjernmappe til synkronisering
+ Lokal mappe til synkronisering
+ Bedøm
+ Backup the accounts
+ Restore the accounts
+ Backup and share the accounts
+ Importing the accounts…
+ Exporting the accounts…
+ No backups found
+ Cannot open the file
+ Temporary folder does not exist
+ An error occurred
+ UI
+ Remove
+ Modification date
+ Name
+ Size
+ Sort
+ Mørk
+ Vælg
+ Vælg en bruger
+ Er du sikker?
+ Noget gik galt
+ Overfør ikke identiske filer
+ App tema
+ Connection Type
+ Protocol Type
+ En anden mappe
+ Benyt en adgangskode
+ Upload
+ Upload fuldført
+ Hvad vil du gøre?
+ Fjern
+ For at ændre tema skal applikationen genstartes
+ Omdøb
+ Root
+ Brugernavn
+ Pasiv
+ Adgangsudtryk
+ Adgangskode
+ Lad dette stå tomt for at spørge ved hvert login
+ Port
+ Lokal
+ Log ind…
+ Rediger
+ Flyt
+ Skjul
+ Turbo Clienet
+ Vært
+ Ny lokal mappe
+ Ny fjern mappe
+ New remote file
+ New local file
+ Fra koblet
+ Standard lokal mappe
+ Hvor skal det downloades til?
+ Download
+ Download fuldført
+ Dupliker
+ Færdig
+ Hjem
+ Lys
+ Ny bruger
+ Aktiv
+ Slet
+ Sletter filerne…
+ Loader…
+ Nuværende lokal mappe
+ Privat nøgle
+ Hide ads
+ Single line list
+ Two lines list
+ Simple list
+
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 91b57d9..35910a4 100644
--- a/libraries/sharedCode/src/main/res/values-de-rDE/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-de-rDE/strings.xml
@@ -75,11 +75,11 @@
Neue Datei
Aktuelle Datei löschen
Alle ersetzen
- Theme
- Dark theme
- Black theme
+ Design
+ Dunkles Design
+ Schwarzes Design
View markdown result
Accessory view
- The file cannot be renamed
- Use kitkat file selection
+ Die Datei kann nicht umbenannt werden
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-de-rDE/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-de-rDE/strings_turbo_client.xml
new file mode 100644
index 0000000..62c8cbf
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-de-rDE/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Ändern Sie den Typ der Liste
+ URL kopieren
+ Ausschneiden
+ Einfügen
+ Erweitert
+ Automatisch
+ Bytes
+ Maßeinheit für Dateigröße
+ Erstelle ein neues Benutzerkonto
+ Erstellen Sie ein neues Konto um zu starten.
+ Typ
+ Die Datei %1$s wurde geändert? Möchten Sie sie hochladen?
+ Synchronisieren
+ Entfernten Ordner zum synchronisieren
+ Lokalen Ordner zum synchronisieren
+ Bewerten
+ Konten sichern
+ Accounts wiederherstellen
+ Sichern und teilen der Konten
+ Konten werden importiert...
+ Benutzerkonten werden exportiert…
+ Keine Sicherungen gefunden
+ Datei kann nicht geöffnet werden
+ Temporärer Ordner ist nicht vorhanden
+ Es ist ein Fehler aufgetreten
+ Benutzeroberfläche
+ Entfernen
+ Änderungsdatum
+ Name
+ Größe
+ Sortieren
+ Dunkel
+ Auswählen
+ Benutzerkonto auswählen
+ Sind sie sicher?
+ Etwas ist schief gelaufen
+ Dieselbe Datei nicht übertragen
+ Design
+ Verbindungsart
+ Protokoll
+ Anderer Ordner
+ Passphrase benutzen
+ Hochladen
+ Hochladen abgeschlossen
+ Was möchten Sie tun?
+ Remote
+ Um das Theme zu ändern, starten Sie die Anwendung neu
+ Umbenennen
+ Standardverzeichnis
+ Benutzername
+ Passiver Modus
+ Passphrase
+ Kennwort
+ Leer lassen, um die Eingabe für jede Sitzung zu veranlassen
+ Port
+ Lokal
+ Einloggen…
+ bearbeiten
+ Verschieben
+ Ausblenden
+ Turbo Client
+ Server
+ Neuer Lokaler-Ordner
+ Neuer Remote-Ordner
+ Neue Remote-Datei
+ Neue lokale Datei
+ Trennen
+ Standard lokaler Ordner
+ Wohin herunterladen?
+ Herunterladen
+ Download abgeschlossen
+ Duplizieren
+ Fertig
+ Home
+ Hell
+ Neues Benutzerkonto
+ Aktiv
+ Löschen
+ Dateien löschen…
+ Laden…
+ Aktueller lokaler Ordner
+ Privater Schlüssel
+ Werbung verbergen
+ Einzeilige Liste
+ Zweizeilige Liste
+ Einfache Liste
+
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 2518aee..dd2af41 100644
--- a/libraries/sharedCode/src/main/res/values-el-rGR/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-el-rGR/strings.xml
@@ -81,5 +81,5 @@
View markdown result
Accessory view
The file cannot be renamed
- Use kitkat file selection
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-el-rGR/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-el-rGR/strings_turbo_client.xml
new file mode 100644
index 0000000..4e1969c
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-el-rGR/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Αλλαγή του τύπου της λίστας
+ Αντιγραφή συνδέσμου
+ Αποκοπή
+ Paste
+ Για προχωρημένους
+ Αυτόματα
+ Bytes
+ Μονάδα μέτρησης για το μέγεθος του αρχείου
+ Δημιουργία νέου λογαριασμού
+ Δημιουργήσετε ένα νέο λογαριασμό για να ξεκινήσετε.
+ Τύπος
+ Το αρχείο %1$s τροποποιήθηκε, θέλετε να το ανεβάσετε;
+ Συγχρονισμός
+ Απομακρυσμένος φάκελος για συγχρονισμό
+ Τοπικός φάκελος για συγχρονισμό
+ Βαθμολογία
+ Αντίγραφα ασφαλείας λογαριασμών
+ Επαναφορά των λογαριασμών
+ Αντίγραφα ασφαλείας και μοίρασμα λογαριασμών
+ Εισαγωγή λογαριασμών…
+ Exporting the accounts…
+ Δεν βρέθηκε κανένα αντίγραφο ασφαλείας
+ Δεν μπορεί να ανοίξει το αρχείο
+ Ο φάκελος προσωρινής αποθήκευσης δεν υπάρχει
+ Προέκυψε ένα σφάλμα
+ Περιβάλλον χρήσης
+ Αφαίρεση
+ Ημ. τροποποίησης
+ Όνομα
+ Μέγεθος
+ Ταξινόμηση
+ Σκοτεινό
+ Επιλογή
+ Επιλέξτε έναν λογαριασμό
+ Θέλετε σίγουρα;
+ Προέκυψε κάποια αποτυχία
+ Να μην γίνει μεταφορά του ίδιου αρχείου
+ Θέμα εφαρμογής
+ Τύπος σύνδεσης
+ Τύπος πρωτοκόλλου
+ Άλλος φάκελος
+ Χρησιμοποιήστε ένα Συνθηματικό
+ Αποστολή
+ Το ανέβασμα ολοκληρώθηκε
+ Τι θέλετε να κάνετε;
+ Απομακρυσμένα
+ Για να αλλάξετε το θέμα, κάντε επανεκκίνηση της εφαρμογής
+ Μετονομασία
+ Προεπιλεγμένος απομακρυσμένος φάκελος
+ Όνομα χρήστη
+ Παθητικό
+ Συνθηματικό
+ Κωδικός
+ Αφήστε το κενό για να σας ρωτάει σε κάθε συνεδρία
+ Θύρα
+ Τοπικά
+ Σύνδεση με…
+ Επεξεργασία
+ Μετακίνηση
+ Απόκρυψη
+ Turbo Client
+ Διακομιστής
+ Νέος τοπικός φάκελος
+ Νέος απομακρυσμένος φάκελος
+ Νέα απομακρυσμένο αρχείο
+ Νέο τοπικό αρχείο
+ Αποσύνδεση
+ Προεπιλεγμένος τοπικός φάκελος
+ Που να γίνει η λήψη;
+ Λήψη
+ Η λήψη ολοκληρώθηκε
+ Διπλότυπο
+ Ολοκληρώθηκε
+ Αρχή
+ Φωτεινό
+ Νέος λογαριασμός
+ Ενεργό
+ Διαγραφή
+ Διαγραφή αρχείων…
+ Φόρτωση…
+ Τρέχον τοπικός φάκελος
+ Ιδιωτικό Κλειδί
+ Hide ads
+ Single line list
+ Two lines list
+ Simple list
+
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 f3836e2..62d0a06 100644
--- a/libraries/sharedCode/src/main/res/values-es-rES/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-es-rES/strings.xml
@@ -81,5 +81,5 @@
Ver resultado marcado
Accessory view
The file cannot be renamed
- Use kitkat file selection
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-es-rES/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-es-rES/strings_turbo_client.xml
new file mode 100644
index 0000000..4411e74
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-es-rES/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Cambiar el tipo de lista
+ Copiar URL
+ Cortar
+ Pegar
+ Avanvado
+ Auto
+ Bytes
+ Unidad de medida para el tamaño de archivos
+ Crear una nueva cuenta
+ Crear una nueva cuenta para comenzar.
+ Tipo
+ el archivo %1$s fue modificado quiere subirlo?
+ Sincronizar
+ Carpeta remota a sincronizar
+ Carpeta local a sincronizar
+ Vota
+ Copia de seguridad de las cuentas
+ Restaurar cuentas
+ Hacer copia de seguridad y compartir cuentas
+ Importortando cuentas…
+ Exportando las cuentas…
+ No se han encontrado copias de seguridad
+ No se puede abrir el archivo
+ La carpeta temporal no existe
+ Un error ha ocurrido
+ IU
+ remover
+ fecha de modificación
+ nombre
+ tamaño
+ Organizar
+ Oscuro
+ Seleccionar
+ Elija una cuenta
+ ¿Está seguro?
+ Algo falló
+ No transferir el mismo archivo
+ Tema de la aplicación
+ Tipo de conexión
+ Tipo de protocolo
+ Otra carpeta
+ Usa una contraseña
+ Enviar
+ Subida completa
+ ¿Qué quieres hacer?
+ Remoto
+ Para cambiar el tema, reinicie la aplicación
+ Renombrar
+ Raíz
+ Usuario
+ Pasivo
+ Contraseña
+ Contraseña
+ Déjelo en blanco para rellenarlo cada sesión
+ Puerto
+ Local
+ Iniciando sesión…
+ Editar
+ Mover
+ Ocultar
+ Turbo Client
+ Servidor
+ Nueva Carpeta Local
+ Nueva carpeta remota
+ Nuevo archivo remoto
+ Nuevo archivo local
+ Desconectar
+ Carpeta local por defecto
+ ¿Dónde descargar?
+ Descargar
+ Descarga completada
+ Duplicado
+ Terminado
+ Inicio
+ Claro
+ Nueva Cuenta
+ Activo
+ Borrar
+ Borrando ficheros…
+ Cargando…
+ Carpeta local actual
+ Clave privada
+ Ocultar anuncios
+ Lista de una sola línea
+ Lista de dos líneas
+ Lista simple
+
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 c737731..53d06af 100644
--- a/libraries/sharedCode/src/main/res/values-fi-rFI/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-fi-rFI/strings.xml
@@ -79,7 +79,7 @@
Tumma teema
Musta teema
Näytä Markdown-tulos
- Accessory view
- The file cannot be renamed
- Use kitkat file selection
+ Erikoismerkit
+ Tiedostoa ei voida nimetä uudestaan
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-fi-rFI/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-fi-rFI/strings_turbo_client.xml
new file mode 100644
index 0000000..401be4e
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-fi-rFI/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Muuta listatyyliä
+ Kopioi URL-osoite
+ Leikkaa
+ Liitä
+ Lisäasetukset
+ Automaattinen
+ Tavua
+ Tiedostokoon muoto
+ Luo uusi tili
+ Luo uusi tili aloittaaksesi.
+ Tyyppi
+ Tiedostoa \'%1$s\' on muokattu. Haluatko lähettää sen?
+ Synkronointi
+ Synkronoitava etäkansio
+ Synkronoitava paikallinen kansio
+ Arvostele
+ Tilien varmuuskopiointi
+ Tilien palautus
+ Varmuuskopioi ja jaa tilit
+ Tilien tuominen…
+ Tilien tuominen…
+ Varmuuskopioita ei löytynyt
+ Tiedoston avaaminen ei onnistu
+ Tilapäistä kansiota ei ole
+ Tapahtui virhe
+ Käyttöliittymä
+ Poista
+ Muokkauspäivä
+ Nimi
+ Koko
+ Lajittele
+ Tumma
+ Valitse
+ Valitse tili
+ Oletko varma?
+ Jokin meni pieleen
+ Älä siirrä samaa tiedostoa
+ Sovelluksen teema
+ Yhteyden tyyppi
+ Protokollatyyppi
+ Toinen kansio
+ Käytä salalausetta
+ Lähetä
+ Lähetys onnistui
+ Mitä haluaisit tehdä?
+ Etä
+ Vaihda sovelluksen teemaa käynnistämällä uudelleen
+ Nimeä uudelleen
+ Oletusetäkansio
+ Käyttäjätunnus
+ Passiivinen
+ Sanalause
+ Salasana
+ Jätä tyhjäksi, jolloin sitä kysytään jokaisen istunnon yhteydessä
+ Portti
+ Paikallinen
+ Kirjaudutaan…
+ Muokkaa
+ Siirrä
+ Piilota
+ Turbo Client
+ Osoite
+ Uusi paikallinen kansio
+ Uusi etäkansio
+ Uusi etätiedosto
+ Uusi paikallinen tiedosto
+ Katkaise yhteys
+ Paikallinen oletuskansio
+ Minne ladataan?
+ Lataa
+ Lataaminen suoritettu
+ Kahdenna
+ Valmis
+ Etusivu
+ Vaalea
+ Uusi tili
+ Aktiivinen
+ Poista
+ Poistetaan tiedostoja…
+ Ladataan…
+ Nykyinen paikallinen kansio
+ Yksityinen avain
+ Piilota mainokset
+ 1 rivinen lista
+ 2 rivinen lista
+ Yksinkertainen lista
+
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 47d8789..2fb7d7b 100644
--- a/libraries/sharedCode/src/main/res/values-fil-rPH/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-fil-rPH/strings.xml
@@ -81,5 +81,5 @@
View markdown result
Accessory view
The file cannot be renamed
- Use kitkat file selection
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-fil-rPH/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-fil-rPH/strings_turbo_client.xml
new file mode 100644
index 0000000..4fd576e
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-fil-rPH/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Change the list type
+ Copy URL
+ Cut
+ Paste
+ Advanced
+ Auto
+ Bytes
+ Unit of measurement for file size
+ Create a new account
+ Create a new account to start.
+ Type
+ The file %1$s was modified, do you want to upload it?
+ Sync
+ Remote folder to sync
+ Local folder to sync
+ Rate
+ Backup the accounts
+ Restore the accounts
+ Backup and share the accounts
+ Importing the accounts…
+ Exporting the accounts…
+ No backups found
+ Cannot open the file
+ Temporary folder does not exist
+ An error occurred
+ UI
+ Remove
+ Modification date
+ Name
+ Size
+ Sort
+ Dark
+ Select
+ Select an account
+ Are you sure?
+ Something failed
+ Do not transfer same file
+ App theme
+ Connection type
+ Protocol type
+ Another folder
+ Use a passphrase
+ Upload
+ Upload completed
+ What do you want to do?
+ Remote
+ To change the theme, restart the application
+ Rename
+ Default remote folder
+ Username
+ Passive
+ Passphrase
+ Password
+ Leave it empty to prompt for it every session
+ Port
+ Local
+ Logging in…
+ Edit
+ Move
+ Hide
+ Turbo Client
+ Host
+ New local folder
+ New remote folder
+ New remote file
+ New local file
+ Disconnect
+ Default local folder
+ Where to download?
+ Download
+ Download completed
+ Duplicate
+ Done
+ Home
+ Light
+ New account
+ Active
+ Delete
+ Deleting files…
+ Loading…
+ Current local folder
+ Private Key
+ Hide ads
+ Single line list
+ Two lines list
+ Simple list
+
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 6ba462c..32e0239 100644
--- a/libraries/sharedCode/src/main/res/values-fr-rFR/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-fr-rFR/strings.xml
@@ -81,5 +81,5 @@
View markdown result
Accessory view
The file cannot be renamed
- Use kitkat file selection
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-fr-rFR/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-fr-rFR/strings_turbo_client.xml
new file mode 100644
index 0000000..be000a4
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-fr-rFR/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Modifier le type de liste
+ Copier l\'URL
+ Couper
+ Coller
+ Avancées
+ Automatique
+ Octets
+ Unité de mesure de la taille des fichiers
+ Créer un nouveau compte
+ Créer un nouveau compte pour commencer.
+ Type
+ Le fichier %1$s a été modifié, souhaitez-vous l\'envoyer ?
+ Synchronisation
+ Dossier distant à synchroniser
+ Dossier local à synchroniser
+ Noter
+ Sauvegarder les comptes
+ Restaurer les comptes
+ Sauvegarder et partager les comptes
+ Importation des comptes…
+ Exporter les comptes…
+ Aucune sauvegarde trouvée
+ Impossible d\'ouvrir le fichier
+ Le dossier temporaire n\'existe pas
+ Une erreur s\'est produite
+ Aspect
+ Supprimer
+ Date de modification
+ Nom
+ Taille
+ Triller
+ Sombre
+ Sélectionner
+ Sélectionner un compte
+ Êtes-vous sûr ?
+ Quelque chose n\'a pas fonctionné
+ Ne pas transférer les fichiers identiques
+ Thème de lߣapplication
+ Type de connexion
+ Type de protocole
+ Autre dossier
+ Utiliser une passphrase
+ Envoi
+ Envoi terminé
+ Que voulez-vous faire ?
+ Distant
+ Pour changer de thème, redémarrer l\'application
+ Renommer
+ Dossier
+ Nom dߣutilisateur
+ Passif
+ passphrase
+ Mot de passe
+ Laisser vide pour demander à chaque fois
+ Port
+ Local
+ Connexion en cours…
+ Modifier
+ Déplacer
+ Masquer
+ Turbo Client
+ Hôte
+ Nouveau dossier local
+ Nouveau dossier distant
+ Nouveau fichier distant
+ Nouveau fichier local
+ Déconnecter
+ Dossier local par défaut
+ Où télécharger ?
+ Télécharger
+ Téléchargement terminé
+ Dupliquer
+ Terminé
+ Accueil
+ Clair
+ Nouveau compte
+ Actif
+ Supprimer
+ Suppression des fichiers…
+ Chargement…
+ Dossier local actuel
+ Clé privée
+ Hide ads
+ Single line list
+ Two lines list
+ Simple list
+
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 c1e57b5..7ad6462 100644
--- a/libraries/sharedCode/src/main/res/values-gl-rES/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-gl-rES/strings.xml
@@ -81,5 +81,5 @@
View markdown result
Accessory view
The file cannot be renamed
- Use kitkat file selection
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-gl-rES/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-gl-rES/strings_turbo_client.xml
new file mode 100644
index 0000000..47f9ce7
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-gl-rES/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Change the list type
+ Copy URL
+ Cut
+ Paste
+ Advanced
+ Auto
+ Bytes
+ Unit of measurement for file size
+ Create a new account
+ Create a new account to start.
+ Type
+ The file %1$s was modified, do you want to upload it?
+ Sincronizar
+ Sincronizar Cartafol Remoto
+ Sincronizar Cartafol Local
+ Vota
+ Copia de seguridade das contas
+ Restaurar contas
+ Copia de seguridade e compartir contas
+ Importar as contas…
+ Exporting the accounts…
+ No backups found
+ Cannot open the file
+ Temporary folder does not exist
+ An error occurred
+ UI
+ Remove
+ Modification date
+ Name
+ Size
+ Sort
+ Escuro
+ Seleccionar
+ Elixe Unha Conta
+ Está seguro?
+ Algo foi mal
+ Non transferir o mesmo arquivo
+ Tema da Aplicación
+ Tipo de Conexión
+ Tipo de Protocolo
+ Outro cartafol
+ Usar unha frase de contrasinal
+ Subir
+ Carga completada
+ Que quere facer?
+ Remoto
+ Para cambiar o tema, reinicie a aplicación
+ Renomear
+ Root
+ Nome de Usuario
+ Pasivo
+ Frase de contrasinal
+ Contrasinal
+ Deixar baleiro, pedirase en cada sesión
+ Porto
+ Local
+ Rexistrando…
+ Editar
+ Mover
+ Ocultar
+ Turbo Cliente
+ Servidor
+ Novo cartafol local
+ Novo cartafol remoto
+ Novo arquivo remoto
+ Novo arquivo local
+ Desconectar
+ Cartafol Local Predeterminado
+ Onde descargar?
+ Descargar
+ Descarga completada
+ Duplicar
+ Feito
+ Inicio
+ Luz
+ Nova conta
+ Activo
+ Borrar
+ Borrar Ficheiros
+ Cargando
+ Cartafol local actual
+ Chave Privada
+ Hide ads
+ Single line list
+ Two lines list
+ Simple list
+
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 9bbdfa5..5498c14 100644
--- a/libraries/sharedCode/src/main/res/values-hi-rIN/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-hi-rIN/strings.xml
@@ -81,5 +81,5 @@
View markdown result
Accessory view
The file cannot be renamed
- Use kitkat file selection
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-hi-rIN/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-hi-rIN/strings_turbo_client.xml
new file mode 100644
index 0000000..4fd576e
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-hi-rIN/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Change the list type
+ Copy URL
+ Cut
+ Paste
+ Advanced
+ Auto
+ Bytes
+ Unit of measurement for file size
+ Create a new account
+ Create a new account to start.
+ Type
+ The file %1$s was modified, do you want to upload it?
+ Sync
+ Remote folder to sync
+ Local folder to sync
+ Rate
+ Backup the accounts
+ Restore the accounts
+ Backup and share the accounts
+ Importing the accounts…
+ Exporting the accounts…
+ No backups found
+ Cannot open the file
+ Temporary folder does not exist
+ An error occurred
+ UI
+ Remove
+ Modification date
+ Name
+ Size
+ Sort
+ Dark
+ Select
+ Select an account
+ Are you sure?
+ Something failed
+ Do not transfer same file
+ App theme
+ Connection type
+ Protocol type
+ Another folder
+ Use a passphrase
+ Upload
+ Upload completed
+ What do you want to do?
+ Remote
+ To change the theme, restart the application
+ Rename
+ Default remote folder
+ Username
+ Passive
+ Passphrase
+ Password
+ Leave it empty to prompt for it every session
+ Port
+ Local
+ Logging in…
+ Edit
+ Move
+ Hide
+ Turbo Client
+ Host
+ New local folder
+ New remote folder
+ New remote file
+ New local file
+ Disconnect
+ Default local folder
+ Where to download?
+ Download
+ Download completed
+ Duplicate
+ Done
+ Home
+ Light
+ New account
+ Active
+ Delete
+ Deleting files…
+ Loading…
+ Current local folder
+ Private Key
+ Hide ads
+ Single line list
+ Two lines list
+ Simple list
+
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 47d8789..2fb7d7b 100644
--- a/libraries/sharedCode/src/main/res/values-hr-rHR/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-hr-rHR/strings.xml
@@ -81,5 +81,5 @@
View markdown result
Accessory view
The file cannot be renamed
- Use kitkat file selection
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-hr-rHR/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-hr-rHR/strings_turbo_client.xml
new file mode 100644
index 0000000..4fd576e
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-hr-rHR/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Change the list type
+ Copy URL
+ Cut
+ Paste
+ Advanced
+ Auto
+ Bytes
+ Unit of measurement for file size
+ Create a new account
+ Create a new account to start.
+ Type
+ The file %1$s was modified, do you want to upload it?
+ Sync
+ Remote folder to sync
+ Local folder to sync
+ Rate
+ Backup the accounts
+ Restore the accounts
+ Backup and share the accounts
+ Importing the accounts…
+ Exporting the accounts…
+ No backups found
+ Cannot open the file
+ Temporary folder does not exist
+ An error occurred
+ UI
+ Remove
+ Modification date
+ Name
+ Size
+ Sort
+ Dark
+ Select
+ Select an account
+ Are you sure?
+ Something failed
+ Do not transfer same file
+ App theme
+ Connection type
+ Protocol type
+ Another folder
+ Use a passphrase
+ Upload
+ Upload completed
+ What do you want to do?
+ Remote
+ To change the theme, restart the application
+ Rename
+ Default remote folder
+ Username
+ Passive
+ Passphrase
+ Password
+ Leave it empty to prompt for it every session
+ Port
+ Local
+ Logging in…
+ Edit
+ Move
+ Hide
+ Turbo Client
+ Host
+ New local folder
+ New remote folder
+ New remote file
+ New local file
+ Disconnect
+ Default local folder
+ Where to download?
+ Download
+ Download completed
+ Duplicate
+ Done
+ Home
+ Light
+ New account
+ Active
+ Delete
+ Deleting files…
+ Loading…
+ Current local folder
+ Private Key
+ Hide ads
+ Single line list
+ Two lines list
+ Simple list
+
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 10d5c8b..01167e0 100644
--- a/libraries/sharedCode/src/main/res/values-hu-rHU/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-hu-rHU/strings.xml
@@ -81,5 +81,5 @@
Markdown eredmény megtekintése
Accessory view
The file cannot be renamed
- Use kitkat file selection
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-hu-rHU/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-hu-rHU/strings_turbo_client.xml
new file mode 100644
index 0000000..1638c72
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-hu-rHU/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ A lista típusának módosítása
+ URL másolása
+ Kivágás
+ Beillesztés
+ Haladó
+ Automatikus
+ Bájt
+ Fájlméret mértékegysége
+ Új fiók létrehozása
+ Hozzon létre egy új fiókot a kezdéshez!
+ Típus
+ A %1$s fájl módosult, szeretné feltölteni?
+ Szinkronizál
+ Távoli mappa szinkronizálása
+ Helyi mappa szinkronizálása
+ Értékel
+ Fiókadatok biztonsági mentése
+ Fiókadatok visszaállítása
+ Fiókadatok visszaállítása és megosztása
+ Fiókadatok importálása...
+ Fiókadatok exportálása…
+ Nem található biztonsági mentés
+ Nem lehet megnyitni a fájlt
+ Az ideiglenes könyvtár nem létezik
+ Hiba történt
+ Felhasználói felület
+ Töröl
+ Módosítás dátuma
+ Név
+ Méret
+ Rendez
+ Sötét
+ Választ
+ Válasszon fiókot
+ Biztos benne?
+ Valami nem sikerült
+ Ne mozgassa ugyanazokat a fájlokat
+ App téma
+ Kapcsolat típusa
+ Protokoll típus
+ Másik mappa
+ Jelszó használata
+ Feltölt
+ A feltöltés befejeződött
+ Mit akar tenni?
+ Távoli
+ A téma megváltoztatásához újra kell indítani a programot
+ Átnevez
+ Távoli mappa törlése
+ Felhasználónév
+ Passzív
+ Kulcsszó
+ Jelszó
+ Hagyja üresen, hogy minden munkamenetben kérje
+ Port
+ Helyi
+ Bejelentkezve mint
+ Szerkesztés
+ Mozgat
+ Elrejtés
+ Turbe Client
+ Hoszt
+ Új helyi mappa
+ Új távoli mappa
+ Új távoli fájl
+ Új helyi fájl
+ Kapcsolat bontása
+ Alapértelmezett helyi mappa
+ Hova legyen letöltve?
+ Letöltés
+ A letöltés befejeződött
+ Duplikálás
+ Kész
+ Kezdőképernyő
+ Világos
+ Új fiók
+ Aktív
+ Törlés
+ Fájlok törlése…
+ Töltés…
+ Jelenlegi helyi mappa
+ Privát kulcs
+ Reklámok elrejtése
+ Single line list
+ Two lines list
+ Egyszerű lista
+
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 47d8789..2fb7d7b 100644
--- a/libraries/sharedCode/src/main/res/values-hy-rAM/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-hy-rAM/strings.xml
@@ -81,5 +81,5 @@
View markdown result
Accessory view
The file cannot be renamed
- Use kitkat file selection
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-hy-rAM/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-hy-rAM/strings_turbo_client.xml
new file mode 100644
index 0000000..4fd576e
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-hy-rAM/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Change the list type
+ Copy URL
+ Cut
+ Paste
+ Advanced
+ Auto
+ Bytes
+ Unit of measurement for file size
+ Create a new account
+ Create a new account to start.
+ Type
+ The file %1$s was modified, do you want to upload it?
+ Sync
+ Remote folder to sync
+ Local folder to sync
+ Rate
+ Backup the accounts
+ Restore the accounts
+ Backup and share the accounts
+ Importing the accounts…
+ Exporting the accounts…
+ No backups found
+ Cannot open the file
+ Temporary folder does not exist
+ An error occurred
+ UI
+ Remove
+ Modification date
+ Name
+ Size
+ Sort
+ Dark
+ Select
+ Select an account
+ Are you sure?
+ Something failed
+ Do not transfer same file
+ App theme
+ Connection type
+ Protocol type
+ Another folder
+ Use a passphrase
+ Upload
+ Upload completed
+ What do you want to do?
+ Remote
+ To change the theme, restart the application
+ Rename
+ Default remote folder
+ Username
+ Passive
+ Passphrase
+ Password
+ Leave it empty to prompt for it every session
+ Port
+ Local
+ Logging in…
+ Edit
+ Move
+ Hide
+ Turbo Client
+ Host
+ New local folder
+ New remote folder
+ New remote file
+ New local file
+ Disconnect
+ Default local folder
+ Where to download?
+ Download
+ Download completed
+ Duplicate
+ Done
+ Home
+ Light
+ New account
+ Active
+ Delete
+ Deleting files…
+ Loading…
+ Current local folder
+ Private Key
+ Hide ads
+ Single line list
+ Two lines list
+ Simple list
+
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 a0078c8..2f2a788 100644
--- a/libraries/sharedCode/src/main/res/values-in-rID/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-in-rID/strings.xml
@@ -81,5 +81,5 @@
View markdown result
Accessory view
The file cannot be renamed
- Use kitkat file selection
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-in-rID/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-in-rID/strings_turbo_client.xml
new file mode 100644
index 0000000..5f21110
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-in-rID/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Ubah tipe list
+ Salin URL
+ Potong
+ Tempel
+ Tingkat Lanjut
+ Otomatis
+ Bytes
+ Satuan untuk ukuran file
+ Buat akun baru
+ Buat akun baru untuk mulai.
+ Tipe
+ File %1$s telah dimodifikasi, apakah Anda ingin mengunggahnya?
+ Sinkronisasi
+ Tentukan folder untuk disinkronkan
+ Folder lokal untuk disinkronkan
+ Beri Peringkat
+ Backup akun
+ Restore akun
+ Backup dan berbagi akun
+ Mengimpor akun…
+ Mengekspor account...
+ Backup tidak ditemukan
+ Tidak dapat membuka file
+ Folder sementara tidak ditemukan
+ Terjadi kesalahan
+ UI
+ Hapus
+ Tanggal dimodifikasi
+ Nama
+ Ukuran
+ Urutkan
+ Gelap
+ Pilih
+ Pilih akun
+ Anda yakin?
+ Terdapat kesalahan
+ Jangan mengirim file yang sama
+ Tema aplikasi
+ Jenis koneksi
+ Tipe protokol
+ Folder lain
+ Gunakan frasa kunci
+ Unggah
+ Unggah selesai
+ Apa yang ingin anda lakukan?
+ Remote
+ Untuk mengubah tema, restart aplikasi
+ Ubah nama
+ Folder remote default
+ Nama Pengguna
+ Pasif
+ Password
+ Password
+ Biarkan kosong untuk prompt setiap sesi
+ Port
+ Lokal
+ Memasuki…
+ Edit
+ Pindah
+ Sembunyikan
+ Klien Turbo
+ Host
+ Folder lokal baru
+ Folder remote baru
+ File remote baru
+ File lokal baru
+ Putuskan
+ Folder lokal default
+ Kemana ingin mendownload?
+ Download
+ Unduhan selesai
+ Duplikat
+ Selesai
+ Beranda
+ Terang
+ Akun baru
+ Aktif
+ Hapus
+ Menghapus file…
+ Memuat…
+ Folder lokal saat ini
+ Kunci Pribadi
+ Sembunyikan iklan
+ Daftar satu baris
+ Daftar dua baris
+ Daftar sederhana
+
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 1360250..e79dc13 100644
--- a/libraries/sharedCode/src/main/res/values-it-rIT/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-it-rIT/strings.xml
@@ -81,5 +81,5 @@
Vedi il risultato markdown
Barra dei simboli
Questo file non può essere rinominato
- Use kitkat file selection
+ Utilizza il \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-it-rIT/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-it-rIT/strings_turbo_client.xml
new file mode 100644
index 0000000..9778c20
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-it-rIT/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Cambia il tipo di lista
+ Copia l\'URL
+ Taglia
+ Incolla
+ Avanzate
+ Automatico
+ Byte
+ Unità di misura per la dimensione del file
+ Crea un nuovo account
+ Creare un nuovo account per iniziare.
+ Tipo
+ Il file %1$s è stato modificato, vuoi caricarlo?
+ Sincronizza
+ Cartella remota da sincronizzare
+ Cartella locale da sincronizzare
+ Vota
+ Fai un backup degli account
+ Ripristina gli account
+ Salva e condividi gli account
+ Importando gli account…
+ Esportando gli account…
+ Nessun backup trovato
+ Impossibile aprire il file
+ La cartella temporanea non esiste
+ Si è verificato un errore
+ Interfaccia utente
+ Rimuovi
+ Data della modifica
+ Nome
+ Peso
+ Ordina
+ Scuro
+ Seleziona
+ Seleziona un account
+ Sei sicuro?
+ Qualcosa è fallito
+ Non trasferire lo stesso file
+ Tema
+ Tipo di Connessione
+ Tipo di Protocollo
+ Un altra cartella
+ Usa una frase segreta
+ Carica
+ Caricamento completato
+ Cosa vuoi fare?
+ Remoto
+ Per cambiare il tema, riavvia l applicazione
+ Rinomina
+ Root
+ Nome Utente
+ Passiva
+ Frase segreta
+ Password
+ Lasciala vuota per richiederla a ogni sessione
+ Porta
+ Locale
+ Accesso in corso…
+ Modifica
+ Sposta
+ Nascondi
+ Turbo Client
+ Host
+ Nuova cartella locale
+ Nuova cartella remota
+ Nuovo file remoto
+ Nuovo file locale
+ Disconnetti
+ Cartella locale di default
+ Dove scaricare?
+ Scarica
+ Completato il download
+ Duplica
+ Fatto
+ Home
+ Chiaro
+ Nuovo account
+ Attiva
+ Cancella
+ Cancella files…
+ Caricamento…
+ Cartella locale corrente
+ Chiave Privata
+ Nascondere gli annunci
+ Elenco di singola linea
+ Elenco di due linee
+ Elenco semplice
+
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 1e21b47..e0f826b 100644
--- a/libraries/sharedCode/src/main/res/values-iw-rIL/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-iw-rIL/strings.xml
@@ -81,5 +81,5 @@
View markdown result
Accessory view
The file cannot be renamed
- Use kitkat file selection
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-iw-rIL/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-iw-rIL/strings_turbo_client.xml
new file mode 100644
index 0000000..f26f27d
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-iw-rIL/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Change the list type
+ Copy URL
+ Cut
+ Paste
+ Advanced
+ Auto
+ Bytes
+ Unit of measurement for file size
+ Create a new account
+ Create a new account to start.
+ Type
+ The file %1$s was modified, do you want to upload it?
+ Sync
+ Remote folder to sync
+ Local folder to sync
+ דרג
+ Backup the accounts
+ Restore the accounts
+ Backup and share the accounts
+ Importing the accounts…
+ Exporting the accounts…
+ No backups found
+ Cannot open the file
+ Temporary folder does not exist
+ An error occurred
+ UI
+ Remove
+ Modification date
+ Name
+ Size
+ Sort
+ שחור
+ בחר
+ בחר חשבון
+ אתה בטוח?
+ Something failed
+ Do not transfer same file
+ עיצוב
+ סוג חיבור
+ סוג פרוטוקול
+ Another folder
+ Use a passphrase
+ העלה
+ Upload completed
+ What do you want to do?
+ Remote
+ To change the theme, restart the application
+ שנה שם
+ ראשי
+ שם משתמש
+ פסיבי
+ Passphrase
+ סיסמא
+ Leave it empty to prompt for it every session
+ יציאה
+ Local
+ מתחבר…
+ Edit
+ העבר
+ Hide
+ Turbo Client
+ שרת
+ New local folder
+ תיקייה מרוחקת חדשה
+ New remote file
+ New local file
+ התנתק
+ Default local folder
+ Where to download?
+ הורד
+ Download completed
+ Duplicate
+ Done
+ Home
+ בהיר
+ משתמש חדש
+ אקטיבי
+ מחק
+ מחק קבצים…
+ טוען…
+ Current local folder
+ מפתח פרטי
+ Hide ads
+ Single line list
+ Two lines list
+ Simple list
+
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 5942e12..bf3be9a 100644
--- a/libraries/sharedCode/src/main/res/values-ja-rJP/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-ja-rJP/strings.xml
@@ -20,7 +20,7 @@
-->
- モノスペースを使用
+ モノスペースを使用する
最近使用したファイル
フォント サイズ
接続名
@@ -79,7 +79,7 @@
ダークテーマ
ブラックテーマ
マークダウンの結果を表示
- Accessory view
- The file cannot be renamed
- Use kitkat file selection
+ アクセサリー表示
+ ファイルの名前を変更できません
+ \"ストレージ アクセス フレームワーク\" を使用する
diff --git a/libraries/sharedCode/src/main/res/values-ja-rJP/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-ja-rJP/strings_turbo_client.xml
new file mode 100644
index 0000000..93a5e2f
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-ja-rJP/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ リストの種類を変更
+ URLをコピー
+ 切り取り
+ 貼り付け
+ 詳細
+ 自動
+ バイト
+ ファイルサイズの単位
+ 新しいアカウントを作成します
+ 新しいアカウントを作成して開始します。
+ 種類
+ ファイル %1$s は変更されました、アップロードしますか?
+ 同期
+ 同期するリモートのフォルダ
+ 同期するローカルのフォルダ
+ 評価する
+ アカウントをバックアップ
+ アカウントを復元
+ アカウントのバックアップおよび共有
+ アカウントをインポートしています…
+ アカウントをインポートしています…
+ バックアップはありません
+ ファイルを開くことができません
+ 一時フォルダーが存在しません
+ エラーが発生しました
+ UI
+ 削除
+ 変更日
+ 名前
+ サイズ
+ 並べ換え
+ ダーク
+ 選択
+ アカウントを選択
+ 本当に実行しますか?
+ 何かエラーがあります
+ 同じファイルを転送できません。
+ アプリのテーマ
+ 接続のタイプ
+ プロトコルのタイプ
+ 他のフォルダ
+ パスフレーズを使用
+ アップロード
+ アップロードが完了しました
+ 下記のどれかを選択して下さい。
+ リモート
+ テーマを変更するにはアプリを再起動してください
+ 名前の変更
+ Root
+ ユーザー名
+ パッシブモード
+ パスフレーズ
+ パスワード
+ 毎回入力するには空にしてください
+ ポート番号
+ ローカル
+ ログイン中…
+ 編集
+ 移動
+ 非表示
+ ターボ クライアント
+ ホスト
+ 新しいローカル フォルダー
+ 新しいリモート フォルダー
+ 新しいリモート ファイル
+ 新しいローカル ファイル
+ 切断
+ デフォルトのローカルフォルダ
+ ここにダウンロードしますか?
+ ダウンロード
+ ダウンロードが完了しました
+ 複製
+ 完了
+ ホーム
+ ライト
+ 新しいアカウント
+ アクティブ
+ 削除
+ ファイルを削除中…
+ ローディング…
+ ローカルのカレントフォルダ
+ 秘密鍵
+ 広告を非表示
+ 1行表示のリスト
+ 2行表示のリスト
+ シンプルなリスト
+
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 3159cf3..80979e0 100644
--- a/libraries/sharedCode/src/main/res/values-ko-rKR/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-ko-rKR/strings.xml
@@ -81,5 +81,5 @@
View markdown result
Accessory view
The file cannot be renamed
- Use kitkat file selection
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-ko-rKR/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-ko-rKR/strings_turbo_client.xml
new file mode 100644
index 0000000..96f9f1f
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-ko-rKR/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ 목록 유형 변경
+ URL 복사
+ 잘라내기
+ Paste
+ 고급
+ 자동
+ 바이트
+ 파일 크기 측정
+ 새 계정 만들기
+ 시작하려면 새 계정을 만드십시오.
+ 유형
+ 파일 %1$ s 수정함. 업로드 하시겠습니까?
+ 등기화
+ 동기화 할 원격 폴더
+ 동기화 할 로컬 폴더
+ 평가
+ 계정 백업
+ 계정 복원
+ 백업 및 계정 공유
+ 계정을 가져오는 중…
+ Exporting the accounts…
+ 발견한 백업 없음
+ 파일을 열 수 없습니다
+ 임시 폴더가 존재하지 않습니다
+ 오류가 발생했습니다!
+ UI
+ 제거
+ 수정 날짜
+ 이름
+ 크기
+ 정렬
+ 다크
+ 선택
+ 계정을 선택하십시오
+ 정말로 실행하시겠습니까?
+ 실패
+ 같은 파일을 전송하지 마십시오
+ 앱 테마
+ 연결 방식
+ 프로토콜 방식
+ 다른 폴더
+ 암호 사용
+ 올리기
+ 업로드 완료
+ 무엇을 하겠습니까?
+ 원격
+ 테마 변경을 적용하려면 재시작하십시오
+ 이름 바꾸기
+ 루트
+ 사용자명
+ 패시브 모드
+ 암호
+ 비밀번호
+ 모든 섹션을 비워주십시오
+ 포트
+ 내부 저장소
+ 로그인…
+ 편집
+ 이동
+ 숨기기
+ 터보 클라이언트
+ 호스트
+ 새 로컬 폴더
+ 새 원격 폴더
+ 새 원격 파일
+ 새 로컬 파일
+ 연결 끊기
+ 기본 로컬 폴더
+ 어디에 다운로드하겠습니까?
+ 내려받기
+ 다운로드 완료
+ 복사
+ 완료
+ 홈
+ 라이트
+ 새 계정
+ 액티브(Active)
+ 삭제
+ 파일 삭제중…
+ 불러오는 중…
+ 현재 로컬 폴더
+ 개인 키
+ Hide ads
+ Single line list
+ Two lines list
+ Simple list
+
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 47d8789..2fb7d7b 100644
--- a/libraries/sharedCode/src/main/res/values-lb-rLU/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-lb-rLU/strings.xml
@@ -81,5 +81,5 @@
View markdown result
Accessory view
The file cannot be renamed
- Use kitkat file selection
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-lb-rLU/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-lb-rLU/strings_turbo_client.xml
new file mode 100644
index 0000000..4fd576e
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-lb-rLU/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Change the list type
+ Copy URL
+ Cut
+ Paste
+ Advanced
+ Auto
+ Bytes
+ Unit of measurement for file size
+ Create a new account
+ Create a new account to start.
+ Type
+ The file %1$s was modified, do you want to upload it?
+ Sync
+ Remote folder to sync
+ Local folder to sync
+ Rate
+ Backup the accounts
+ Restore the accounts
+ Backup and share the accounts
+ Importing the accounts…
+ Exporting the accounts…
+ No backups found
+ Cannot open the file
+ Temporary folder does not exist
+ An error occurred
+ UI
+ Remove
+ Modification date
+ Name
+ Size
+ Sort
+ Dark
+ Select
+ Select an account
+ Are you sure?
+ Something failed
+ Do not transfer same file
+ App theme
+ Connection type
+ Protocol type
+ Another folder
+ Use a passphrase
+ Upload
+ Upload completed
+ What do you want to do?
+ Remote
+ To change the theme, restart the application
+ Rename
+ Default remote folder
+ Username
+ Passive
+ Passphrase
+ Password
+ Leave it empty to prompt for it every session
+ Port
+ Local
+ Logging in…
+ Edit
+ Move
+ Hide
+ Turbo Client
+ Host
+ New local folder
+ New remote folder
+ New remote file
+ New local file
+ Disconnect
+ Default local folder
+ Where to download?
+ Download
+ Download completed
+ Duplicate
+ Done
+ Home
+ Light
+ New account
+ Active
+ Delete
+ Deleting files…
+ Loading…
+ Current local folder
+ Private Key
+ Hide ads
+ Single line list
+ Two lines list
+ Simple list
+
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 47d8789..2fb7d7b 100644
--- a/libraries/sharedCode/src/main/res/values-mk-rMK/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-mk-rMK/strings.xml
@@ -81,5 +81,5 @@
View markdown result
Accessory view
The file cannot be renamed
- Use kitkat file selection
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-mk-rMK/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-mk-rMK/strings_turbo_client.xml
new file mode 100644
index 0000000..4fd576e
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-mk-rMK/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Change the list type
+ Copy URL
+ Cut
+ Paste
+ Advanced
+ Auto
+ Bytes
+ Unit of measurement for file size
+ Create a new account
+ Create a new account to start.
+ Type
+ The file %1$s was modified, do you want to upload it?
+ Sync
+ Remote folder to sync
+ Local folder to sync
+ Rate
+ Backup the accounts
+ Restore the accounts
+ Backup and share the accounts
+ Importing the accounts…
+ Exporting the accounts…
+ No backups found
+ Cannot open the file
+ Temporary folder does not exist
+ An error occurred
+ UI
+ Remove
+ Modification date
+ Name
+ Size
+ Sort
+ Dark
+ Select
+ Select an account
+ Are you sure?
+ Something failed
+ Do not transfer same file
+ App theme
+ Connection type
+ Protocol type
+ Another folder
+ Use a passphrase
+ Upload
+ Upload completed
+ What do you want to do?
+ Remote
+ To change the theme, restart the application
+ Rename
+ Default remote folder
+ Username
+ Passive
+ Passphrase
+ Password
+ Leave it empty to prompt for it every session
+ Port
+ Local
+ Logging in…
+ Edit
+ Move
+ Hide
+ Turbo Client
+ Host
+ New local folder
+ New remote folder
+ New remote file
+ New local file
+ Disconnect
+ Default local folder
+ Where to download?
+ Download
+ Download completed
+ Duplicate
+ Done
+ Home
+ Light
+ New account
+ Active
+ Delete
+ Deleting files…
+ Loading…
+ Current local folder
+ Private Key
+ Hide ads
+ Single line list
+ Two lines list
+ Simple list
+
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 47d8789..2fb7d7b 100644
--- a/libraries/sharedCode/src/main/res/values-mn-rMN/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-mn-rMN/strings.xml
@@ -81,5 +81,5 @@
View markdown result
Accessory view
The file cannot be renamed
- Use kitkat file selection
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-mn-rMN/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-mn-rMN/strings_turbo_client.xml
new file mode 100644
index 0000000..4fd576e
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-mn-rMN/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Change the list type
+ Copy URL
+ Cut
+ Paste
+ Advanced
+ Auto
+ Bytes
+ Unit of measurement for file size
+ Create a new account
+ Create a new account to start.
+ Type
+ The file %1$s was modified, do you want to upload it?
+ Sync
+ Remote folder to sync
+ Local folder to sync
+ Rate
+ Backup the accounts
+ Restore the accounts
+ Backup and share the accounts
+ Importing the accounts…
+ Exporting the accounts…
+ No backups found
+ Cannot open the file
+ Temporary folder does not exist
+ An error occurred
+ UI
+ Remove
+ Modification date
+ Name
+ Size
+ Sort
+ Dark
+ Select
+ Select an account
+ Are you sure?
+ Something failed
+ Do not transfer same file
+ App theme
+ Connection type
+ Protocol type
+ Another folder
+ Use a passphrase
+ Upload
+ Upload completed
+ What do you want to do?
+ Remote
+ To change the theme, restart the application
+ Rename
+ Default remote folder
+ Username
+ Passive
+ Passphrase
+ Password
+ Leave it empty to prompt for it every session
+ Port
+ Local
+ Logging in…
+ Edit
+ Move
+ Hide
+ Turbo Client
+ Host
+ New local folder
+ New remote folder
+ New remote file
+ New local file
+ Disconnect
+ Default local folder
+ Where to download?
+ Download
+ Download completed
+ Duplicate
+ Done
+ Home
+ Light
+ New account
+ Active
+ Delete
+ Deleting files…
+ Loading…
+ Current local folder
+ Private Key
+ Hide ads
+ Single line list
+ Two lines list
+ Simple list
+
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 47d8789..2fb7d7b 100644
--- a/libraries/sharedCode/src/main/res/values-mt-rMT/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-mt-rMT/strings.xml
@@ -81,5 +81,5 @@
View markdown result
Accessory view
The file cannot be renamed
- Use kitkat file selection
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-mt-rMT/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-mt-rMT/strings_turbo_client.xml
new file mode 100644
index 0000000..4fd576e
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-mt-rMT/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Change the list type
+ Copy URL
+ Cut
+ Paste
+ Advanced
+ Auto
+ Bytes
+ Unit of measurement for file size
+ Create a new account
+ Create a new account to start.
+ Type
+ The file %1$s was modified, do you want to upload it?
+ Sync
+ Remote folder to sync
+ Local folder to sync
+ Rate
+ Backup the accounts
+ Restore the accounts
+ Backup and share the accounts
+ Importing the accounts…
+ Exporting the accounts…
+ No backups found
+ Cannot open the file
+ Temporary folder does not exist
+ An error occurred
+ UI
+ Remove
+ Modification date
+ Name
+ Size
+ Sort
+ Dark
+ Select
+ Select an account
+ Are you sure?
+ Something failed
+ Do not transfer same file
+ App theme
+ Connection type
+ Protocol type
+ Another folder
+ Use a passphrase
+ Upload
+ Upload completed
+ What do you want to do?
+ Remote
+ To change the theme, restart the application
+ Rename
+ Default remote folder
+ Username
+ Passive
+ Passphrase
+ Password
+ Leave it empty to prompt for it every session
+ Port
+ Local
+ Logging in…
+ Edit
+ Move
+ Hide
+ Turbo Client
+ Host
+ New local folder
+ New remote folder
+ New remote file
+ New local file
+ Disconnect
+ Default local folder
+ Where to download?
+ Download
+ Download completed
+ Duplicate
+ Done
+ Home
+ Light
+ New account
+ Active
+ Delete
+ Deleting files…
+ Loading…
+ Current local folder
+ Private Key
+ Hide ads
+ Single line list
+ Two lines list
+ Simple list
+
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 766993e..01896d2 100644
--- a/libraries/sharedCode/src/main/res/values-nl-rNL/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-nl-rNL/strings.xml
@@ -81,5 +81,5 @@
View markdown result
Accessory view
The file cannot be renamed
- Use kitkat file selection
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-nl-rNL/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-nl-rNL/strings_turbo_client.xml
new file mode 100644
index 0000000..1fec4b8
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-nl-rNL/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Wijzig het type lijst
+ URL kopiëren
+ Knippen
+ Plakken
+ Geavanceerd
+ Auto
+ Bytes
+ Maateenheid voor bestandsgrootte
+ Nieuwe account toevoegen
+ Maak een account aan om te beginnen.
+ Type
+ Het bestand %1$s is aangepast, wilt u het uploaden?
+ Synchroniseer
+ Map op afstand om te synchroniseren
+ Lokale map om te synchroniseren
+ Beoordelen
+ Accounts backuppen
+ Accounts herstellen
+ Accounts backuppen en delen
+ Accounts importeren…
+ Accounts exporteren…
+ Geen back-ups gevonden
+ Kan het bestand niet openen
+ Tijdelijke map bestaat niet
+ Er is een fout opgetreden
+ UI
+ Verwijder
+ Verander datum
+ Naam
+ Grote
+ Soort
+ Donker
+ Selecteren
+ Selecteer een account
+ Weet je dit zeker?
+ Er is een fout opgetreden
+ Sla hetzelfde bestand over
+ Applicatiethema
+ Verbindingstype
+ Protocoltype
+ Andere map
+ Gebruik een wachtwoord
+ Uploaden
+ Uploaden voltooid
+ Wat wil je doen?
+ Extern
+ Start de applicatie opnieuw om het thema van kracht te laten worden
+ Hernoemen
+ Root
+ Gebruikersnaam
+ Passief
+ Wachtwoord
+ Wachtwoord
+ Leeg laten om bij elke sessie te vragen
+ Poort
+ Lokaal
+ Inloggen…
+ Bewerken
+ Verplaatsen
+ Verberg
+ Turbo Client
+ Host
+ Nieuwe lokale map
+ Nieuwe externe map
+ Nieuw extern bestand
+ Nieuw lokaal bestand
+ Loskoppelen
+ Standaard lokale map
+ Waar wilt u dit bestand opslaan?
+ Downloaden
+ Download voltooid
+ Kopieer
+ Klaar
+ Home
+ Licht
+ Nieuwe account
+ Actief
+ Verwijderen
+ Bestanden verwijderen…
+ Laden…
+ Huidige lokale map
+ Privesleutel
+ Hide ads
+ Single line list
+ Two lines list
+ Simple list
+
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 7a932fc..7065a05 100644
--- a/libraries/sharedCode/src/main/res/values-no-rNO/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-no-rNO/strings.xml
@@ -81,5 +81,5 @@
View markdown result
Accessory view
The file cannot be renamed
- Use kitkat file selection
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-no-rNO/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-no-rNO/strings_turbo_client.xml
new file mode 100644
index 0000000..0fb8f31
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-no-rNO/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Change the list type
+ Copy URL
+ Cut
+ Paste
+ Advanced
+ Auto
+ Bytes
+ Unit of measurement for file size
+ Create a new account
+ Create a new account to start.
+ Type
+ The file %1$s was modified, do you want to upload it?
+ Sync
+ Ekstern mappe å synce
+ Lokal mappe å synce
+ Gi karakter
+ Backup the accounts
+ Restore the accounts
+ Backup and share the accounts
+ Importing the accounts…
+ Exporting the accounts…
+ No backups found
+ Cannot open the file
+ Temporary folder does not exist
+ An error occurred
+ UI
+ Remove
+ Modification date
+ Name
+ Size
+ Sort
+ Mørk
+ Velg
+ Velg en konto
+ Et du sikker?
+ Something failed
+ Do not transfer same file
+ App tema
+ Tilkoblingstype
+ Protokoll type
+ Annen mappe
+ Use a passphrase
+ Opplastning
+ Upload completed
+ What do you want to do?
+ Remote
+ To change the theme, restart the application
+ Gi nytt navn
+ Rot
+ Brukernavn
+ Passiv
+ Passphrase
+ Passord
+ Leave it empty to prompt for it every session
+ Port
+ Local
+ Logger på
+ Edit
+ Flytt
+ Hide
+ Turbo Klient
+ Host
+ New local folder
+ New remote folder
+ New remote file
+ New local file
+ Bryt tilkobling
+ Standard lokal mappe
+ Where to download?
+ Last ned
+ Download completed
+ Duplicate
+ Done
+ Home
+ Lys
+ New account
+ Aktiv
+ Slett
+ Sletter filer
+ laster
+ Gjeldende lokal mappe
+ Privat Nøkkel
+ Hide ads
+ Single line list
+ Two lines list
+ Simple list
+
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 4e71078..fcf47de 100644
--- a/libraries/sharedCode/src/main/res/values-pl-rPL/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-pl-rPL/strings.xml
@@ -81,5 +81,5 @@
View markdown result
Accessory view
The file cannot be renamed
- Use kitkat file selection
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-pl-rPL/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-pl-rPL/strings_turbo_client.xml
new file mode 100644
index 0000000..96ba2d2
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-pl-rPL/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Zmień typ listy
+ Kopiuj adres URL
+ Wytnij
+ Paste
+ Zaawansowane
+ Automatyczna
+ Bajty
+ Jednostka rozmiaru dla pliku
+ Utwórz nowe konto
+ Utwórz nowe konto, aby rozpocząć.
+ Typ
+ Plik %1$s został zmodyfikowany, czy chcesz go wysłać?
+ Synchronizuj
+ Synchronij folder zdalny
+ Synchronizuj folder lokalny
+ Oceń
+ Kopia zapasowa kont
+ Przywracanie kont
+ Kopia zapasowa i udostępnianie kont
+ Importowanie kont...
+ Exporting the accounts…
+ Nie znaleziono kopii zapasowych
+ Nie można otworzyć pliku
+ Tymczasowy folder nie istnieje
+ Wystąpił błąd
+ Interfejs użytkownika
+ Usuń
+ Data modyfikacji
+ Nazwa
+ Rozmiar
+ Sortuj
+ Ciemny
+ Wybierz
+ Wybierz konto
+ Jesteś pewny?
+ Coś nie powiodło się
+ Nie transferuj tego samego pliku
+ Wygląd aplikacji
+ Typ połączenia
+ Typ protokołu
+ Inny folder
+ Użyj hasła
+ Prześlij
+ Przesyłanie zakończone
+ Co chcesz zrobić?
+ Zdalny
+ Aby zmienić motyw, uruchom ponownie aplikację
+ Zmień nazwę
+ Root
+ Użytkownik
+ Pasywny
+ Hasło
+ Hasło
+ Pozostaw puste, aby pytać o nie podczas każdej sesji
+ Port
+ Lokalny
+ Loguje się…
+ Edytuj
+ Przenieś
+ Ukryj
+ Turbo Client
+ Host
+ Nowy folder lokalny
+ Nowy folder zdalny
+ Nowy plik zdalny
+ Nowy plik lokalny
+ Rozłącz
+ Domyślny folder lokalny
+ Gdzie pobrać?
+ Ściągnij
+ Pobieranie zakończone
+ Duplikuj
+ Zrobione
+ Folder domowy
+ Jasny
+ Nowe konto
+ Aktywny
+ Usuń
+ Usuwanie plików…
+ Ładuje…
+ Obecny folder lokalny
+ Klucz prywatny
+ Hide ads
+ Single line list
+ Two lines list
+ Simple list
+
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 9ecfddf..11eb3d6 100644
--- a/libraries/sharedCode/src/main/res/values-pt-rBR/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-pt-rBR/strings.xml
@@ -81,5 +81,5 @@
View markdown result
Accessory view
The file cannot be renamed
- Use kitkat file selection
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-pt-rBR/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-pt-rBR/strings_turbo_client.xml
new file mode 100644
index 0000000..f73018f
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-pt-rBR/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Mudar o tipo da lista
+ Copiar URL
+ Recortar
+ Colar
+ Avançado
+ Automático
+ Bytes
+ Unidade de medida para o tamanho do arquivo
+ Criar uma nova conta
+ Crie uma nova conta para começar.
+ Tipo
+ O arquivo %1$s foi modificado, você quer enviá-lo?
+ Sincronizar
+ Pasta remota para sincronizar
+ Pasta local para sincronizar
+ Avaliar
+ Fazer backup das contas
+ Restaurar contas
+ Backup e compartilhar as contas
+ Importando as contas...
+ Exportar as contas...
+ Nenhum backup encontrado
+ Não é possível abrir o arquivo.
+ A pasta temporária não existe
+ Ocorreu um erro
+ Interface
+ Remover
+ Data de modificação
+ Nome
+ Tamanho
+ Ordenar
+ Escuro
+ Selecionar
+ Selecione uma conta
+ Você tem certeza?
+ Algo deu errado
+ Pular o mesmo arquivo
+ Tema
+ Tipo de conexão
+ Protocolo
+ Outra pasta
+ Usar uma passphrase
+ Fazer upload
+ Upload concluído
+ O que você deseja fazer?
+ Remoto
+ Para alterar o tema, reinicie o aplicativo
+ Renomear
+ Root
+ Usuário
+ Passivo
+ Passphrase
+ Senha
+ Leave it empty to prompt for it every session
+ Porta
+ Local
+ Logando…
+ Editar
+ Mover
+ Ocultar
+ Turbo Client
+ Host
+ Nova pasta local
+ Nova pasta remota
+ Novo arquivo remoto
+ Novo arquivo local
+ Desconectar
+ Pasta local padrão
+ Onde baixar?
+ Baixar
+ Download concluído
+ Duplicar
+ Feito
+ Início
+ Claro
+ Nova conta
+ Ativo
+ Deletar
+ Deletando arquivos…
+ Carregando…
+ Pasta local atual
+ Chave Privada
+ Hide ads
+ Single line list
+ Two lines list
+ Simple list
+
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 3a8cd01..5a43163 100644
--- a/libraries/sharedCode/src/main/res/values-pt-rPT/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-pt-rPT/strings.xml
@@ -79,7 +79,7 @@
Tema escuro
Tema preto
Ver resultado markdown
- Accessory view
- The file cannot be renamed
- Use kitkat file selection
+ Barra de símbolos especiais
+ Este ficheiro não pode ser renomeado
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-pt-rPT/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-pt-rPT/strings_turbo_client.xml
new file mode 100644
index 0000000..dd38640
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-pt-rPT/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Mudar o tipo da lista
+ Copiar URL
+ Cortar
+ Colar
+ Avançadas
+ Automático
+ Bytes
+ Unidade de medida para o tamanho do ficheiro
+ Criar uma nova conta
+ Crie uma nova conta para começar.
+ Tipo
+ O ficheiro %1$s foi modificado, deseja transferi-lo?
+ Sincronizar
+ Pasta remota para sincronizar
+ Pasta local para sincronizar
+ Avaliar
+ Fazer cópia de segurança das contas
+ Restaurar contas
+ Fazer cópia de segurança das contas e partilhar
+ A importar contas…
+ A exportar contas…
+ Sem cópias de segurança
+ Não é possível abrir o ficheiro
+ Pasta temporária não existe
+ Ocorreu um erro
+ UI
+ Remover
+ Data de modificação
+ Nome
+ Tamanho
+ Ordenar
+ Escuro
+ Selecionar
+ Escolha uma conta
+ Tem a certeza?
+ Algo falhou
+ Não transferir o mesmo ficheiro
+ Tema da aplicação
+ Tipo de ligação
+ Tipo de protocolo
+ Outra pasta
+ Usar uma frase-chave
+ Enviar
+ Envio concluído
+ O que deseja fazer?
+ Remoto
+ Para mudar o tema, reinicie a aplicação
+ Mudar nome
+ Pasta remota padrão
+ Utilizador
+ Passivo
+ Frase-chave
+ Senha
+ Deixar em branco para ser pedido a cada sessão
+ Porta
+ Local
+ A iniciar sessão…
+ Editar
+ Mover
+ Ocultar
+ Turbo Client
+ Servidor
+ Nova pasta local
+ Nova pasta remota
+ Novo ficheiro remoto
+ Novo ficheiro local
+ Desligar
+ Pasta local padrão
+ Transferir para onde?
+ Transferir
+ Transferência concluída
+ Duplicar
+ Feito
+ Início
+ Claro
+ Nova conta
+ Ativo
+ Eliminar
+ A eliminar ficheiros…
+ A carregar…
+ Pasta local em utilização
+ Chave privada
+ Ocultar anúncios
+ Lista em uma linha
+ Lista em duas linhas
+ Lista simples
+
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 11f5efa..b836aae 100644
--- a/libraries/sharedCode/src/main/res/values-ro-rRO/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-ro-rRO/strings.xml
@@ -81,5 +81,5 @@
View markdown result
Accessory view
The file cannot be renamed
- Use kitkat file selection
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-ro-rRO/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-ro-rRO/strings_turbo_client.xml
new file mode 100644
index 0000000..ad2e08a
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-ro-rRO/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Schimbă tipul de listă
+ Copiază URL
+ Decupează
+ Inserează
+ Avansat
+ Auto
+ Octeţi
+ Unitatea de măsură pentru dimensiunea fişierului
+ Creează un cont nou
+ Creaţi un cont nou pentru a începe.
+ Tip
+ Fișierul %1$s a fost modificat, doriți sa îl încărcați pe server?
+ Sincronizare
+ Folder remote de sincronizat
+ Folder local de sincronizat
+ Evaluează
+ Salvează conturile
+ Restaurează conturile
+ Backup and share the accounts
+ Import conturile…
+ Exporting the accounts…
+ Nu a fost găsită nici o copie de rezervă
+ Nu pot deschide fişierul
+ Nu exista folderul temporar
+ A apărut o eroare
+ UI
+ Șterge
+ Data ultimei modificări
+ Nume
+ Mărime
+ Sortare
+ Întunecat
+ Selectați
+ Adăugați un cont
+ Sunteți sigur?
+ Ceva a eşuat
+ Nu transfera acelaşi fişier
+ Tema aplicației
+ Tipul de conexiune
+ Tipul protocolului
+ Alt folder
+ Folosește o parolă de access
+ Încărcaţi
+ Încărcare completă
+ Ce doriți să faceți?
+ La distanţă
+ Pentru a schimba tema trebuie să reporniți aplicația
+ Redenumiți
+ Root
+ Nume utilizator
+ Pasiv
+ Parola de access
+ Parola
+ Lăsați gol pentru a introduce la fiecare sesiune
+ Port
+ Local
+ Conectare în curs…
+ Editare
+ Mutați
+ Ascunde
+ Turbo Client
+ Server
+ Folder local nou
+ Folder la distanță nou
+ Fișier la distanță nou
+ Fișier local nou
+ Deconectează
+ Folder local implicit
+ Unde să descarc ?
+ Descărcați
+ Descărcare terminată
+ Duplicare
+ Finalizat
+ Acasă
+ Luminos
+ Cont nou
+ Activ
+ Stergeți
+ Stergerea fișierelor în curs…
+ Se încarcă…
+ Folder curent local
+ Cheie privată
+ Hide ads
+ Single line list
+ Two lines list
+ Listă simplă
+
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 8ad71fa..2253713 100644
--- a/libraries/sharedCode/src/main/res/values-ru-rRU/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-ru-rRU/strings.xml
@@ -80,6 +80,6 @@
Чёрная тема
Просмотреть результат уценки
Accessory view
- The file cannot be renamed
- Use kitkat file selection
+ Не удалось переименовать файл
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-ru-rRU/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-ru-rRU/strings_turbo_client.xml
new file mode 100644
index 0000000..f86bbbd
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-ru-rRU/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Внешний вид списка
+ Копировать URL-адрес
+ Вырезать
+ Вставить
+ Расширенные
+ Авто
+ Байт
+ Единица измерения размера файла
+ Создать новый аккаунт
+ Создайте новый аккаунт для начала работы.
+ Тип
+ Файл %1$s был изменен, загрузить на сервер?
+ Синхронизация
+ Удаленный каталог для синхронизации
+ Локальный каталог для синхронизации
+ Рейтинг
+ Резервное копирование учетных записей
+ Восстановить учётные записи
+ Сделать резервную копию и поделиться аккаунтами
+ Импорт учётных записей…
+ Экспорт учетных записей…
+ Резервные копии не найдены
+ Не удается открыть файл
+ Временная папка не существует
+ Произошла ошибка
+ Интерфейс
+ Удалить
+ дата изменения
+ имя
+ размер
+ сортировка
+ Темный
+ Выбор
+ Выбор аккаунта
+ Вы уверены?
+ Кажется, что-то пошло не так
+ Не передавать файл идентичный файлу на сервере
+ Тема
+ Тип соединения
+ Тип протокола
+ Другая папка
+ Использовать подсказку
+ Закачка
+ Выгрузка завершена
+ Что вы хотите сделать?
+ Удаленный
+ Чтобы изменить тему, перезапустите приложение
+ Переименовать
+ Удаленный каталог поумолчанию
+ Логин
+ Пассивный
+ Подсказка
+ Пароль
+ Оставьте пустым, чтобы вводить вручную при каждом подключении
+ Порт
+ Локальный
+ Логин в
+ Редактировать
+ Переместить
+ Скрыть
+ Turbo Client
+ Хост
+ Новая локальная папка
+ Новая папка на сервере
+ Новый файл на сервере
+ Новый локальный файл
+ Отключиться
+ локальный каталог по умолчанию
+ Где скачать?
+ Скачать
+ Загрузка завершена
+ Дублировать
+ Готово
+ Главная
+ Светлая
+ Новый аккаунт
+ Действие
+ Удалить
+ Удалить файлы
+ Загрузка
+ локальная папка поумолчанию
+ Закрытый ключ
+ Скрыть рекламу
+ Одно строчный список
+ Двух строчный список
+ Простой список
+
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 b88c3d8..9fd07c5 100644
--- a/libraries/sharedCode/src/main/res/values-sk-rSK/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-sk-rSK/strings.xml
@@ -79,7 +79,7 @@
Tmavá téma
Čierna téma
Zobraziť označené výsledky
- Accessory view
- The file cannot be renamed
- Use kitkat file selection
+ Zobraziť špeciáne znaky
+ Súbor nie je možné premenovať
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-sk-rSK/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-sk-rSK/strings_turbo_client.xml
new file mode 100644
index 0000000..b399b18
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-sk-rSK/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Zmeniť typ zoznamu
+ Kopírovať URL
+ Vystrihnúť
+ Vložiť
+ Pokročilé
+ Automatické
+ Bajtov
+ Jednotka merania pre veľkosť súboru
+ Vytvoriť nový účet
+ Vytvoriť nový účet pre začatie.
+ Typ
+ Súbor %1$s bol upravený, chcete ho nahrať?
+ Synchronizovať
+ Vzdial. zložka na synchronizáciu
+ Miestna zložka na synchronizáciu
+ Ohodnotiť
+ Zálohovať účty
+ Obnoviť účty
+ Zálohovať a zdieľať účty
+ Importovanie účtov…
+ Exportovanie účtov…
+ Nenašli sa žiadne zálohy
+ Súbor sa nedá otvoriť
+ Dočasný adresár neexistuje
+ Vyskytla sa chyba
+ Rozhranie
+ Odstrániť
+ Dátum zmeny
+ Názov
+ Veľkosť
+ Zoradiť
+ Tmavá
+ Vybrať
+ Vyberte účet
+ Ste si istý?
+ Niečo zlyhalo
+ Nepresúvať rovnaký súbor
+ Téma
+ Typ pripojenia
+ Typ protokolu
+ Ďalšia zložka
+ Použiť prístupovú frázu
+ Nahrať
+ Nahrávanie dokončené
+ Čo chcete urobiť?
+ vzdialený
+ Pre zmenu témy, reštartujte aplikáciu
+ Premenovať
+ Root
+ Užív. meno
+ Pasívny
+ Prístupová fráza
+ Heslo
+ Ponechajte prázdne, pre výzvu pri každej relácii
+ Port
+ Miestna
+ Prihlasujem sa…
+ Upraviť
+ Presunúť
+ Skryť
+ Turbo klient
+ Hosť
+ Nový miestny adresár
+ Nový vzdialený adresár
+ Nový vzdialený súbor
+ Nový miestny súbor
+ Odpojiť sa
+ Predvol. miestna zložka
+ Kam to stiahnuť?
+ Stiahnuť
+ Sťahovanie dokončené
+ Duplikovať
+ Hotovo
+ Domov
+ Svetlá
+ Nový účet
+ Aktívne
+ Vymazať
+ Mažem súbory…
+ Načítavanie…
+ Aktuálna miestna zložka
+ Súkromný kľúč
+ Skryť reklamy
+ Jednoriadkový zoznam
+ Dvojriadkový zoznam
+ Jednoduchý zoznam
+
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 ef366f8..b7cb38e 100644
--- a/libraries/sharedCode/src/main/res/values-sl-rSI/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-sl-rSI/strings.xml
@@ -81,5 +81,5 @@
View markdown result
Accessory view
The file cannot be renamed
- Use kitkat file selection
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-sl-rSI/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-sl-rSI/strings_turbo_client.xml
new file mode 100644
index 0000000..0cca8df
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-sl-rSI/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Change the list type
+ Copy URL
+ Cut
+ Paste
+ Advanced
+ Auto
+ Bytes
+ Unit of measurement for file size
+ Create a new account
+ Create a new account to start.
+ Type
+ The file %1$s was modified, do you want to upload it?
+ Sinhronizacija
+ Oddaljena mapa za sinhronizacijo
+ Lokalna mapa za sinhronizacijo
+ Oceni
+ Backup the accounts
+ Restore the accounts
+ Backup and share the accounts
+ Importing the accounts…
+ Exporting the accounts…
+ No backups found
+ Cannot open the file
+ Temporary folder does not exist
+ An error occurred
+ UI
+ Odstrani
+ Modification date
+ Name
+ Size
+ Sort
+ Temna
+ Izberi
+ Izberi račun
+ Ali ste prepričani?
+ Something failed
+ Do not transfer same file
+ Tema aplikacije
+ Vrsta povezave
+ Vrsta protokola
+ Druga mapa
+ Uporabi geslo
+ Naloži
+ Upload completed
+ What do you want to do?
+ Remote
+ To change the theme, restart the application
+ Preimenuj
+ Root
+ Uporabniško ime
+ Pasivno
+ Geslo
+ Geslo
+ Leave it empty to prompt for it every session
+ Vrata
+ Local
+ Prijavljanje
+ Edit
+ Premakni
+ Hide
+ Turbo Client
+ Gostitelj
+ New local folder
+ New remote folder
+ New remote file
+ New local file
+ Prekini
+ Privzeta lokalna mapa
+ Where to download?
+ Prenos
+ Download completed
+ Duplicate
+ Done
+ Home
+ Svetla
+ New account
+ Aktivno
+ Izbriši
+ Brisanje datotek
+ Nalaganje
+ Trenutna lokalna mapa
+ Osebni ključ
+ Hide ads
+ Single line list
+ Two lines list
+ Simple list
+
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 47d8789..2fb7d7b 100644
--- a/libraries/sharedCode/src/main/res/values-sr-rSP/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-sr-rSP/strings.xml
@@ -81,5 +81,5 @@
View markdown result
Accessory view
The file cannot be renamed
- Use kitkat file selection
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-sr-rSP/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-sr-rSP/strings_turbo_client.xml
new file mode 100644
index 0000000..4fd576e
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-sr-rSP/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Change the list type
+ Copy URL
+ Cut
+ Paste
+ Advanced
+ Auto
+ Bytes
+ Unit of measurement for file size
+ Create a new account
+ Create a new account to start.
+ Type
+ The file %1$s was modified, do you want to upload it?
+ Sync
+ Remote folder to sync
+ Local folder to sync
+ Rate
+ Backup the accounts
+ Restore the accounts
+ Backup and share the accounts
+ Importing the accounts…
+ Exporting the accounts…
+ No backups found
+ Cannot open the file
+ Temporary folder does not exist
+ An error occurred
+ UI
+ Remove
+ Modification date
+ Name
+ Size
+ Sort
+ Dark
+ Select
+ Select an account
+ Are you sure?
+ Something failed
+ Do not transfer same file
+ App theme
+ Connection type
+ Protocol type
+ Another folder
+ Use a passphrase
+ Upload
+ Upload completed
+ What do you want to do?
+ Remote
+ To change the theme, restart the application
+ Rename
+ Default remote folder
+ Username
+ Passive
+ Passphrase
+ Password
+ Leave it empty to prompt for it every session
+ Port
+ Local
+ Logging in…
+ Edit
+ Move
+ Hide
+ Turbo Client
+ Host
+ New local folder
+ New remote folder
+ New remote file
+ New local file
+ Disconnect
+ Default local folder
+ Where to download?
+ Download
+ Download completed
+ Duplicate
+ Done
+ Home
+ Light
+ New account
+ Active
+ Delete
+ Deleting files…
+ Loading…
+ Current local folder
+ Private Key
+ Hide ads
+ Single line list
+ Two lines list
+ Simple list
+
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 1badf71..ce6e755 100644
--- a/libraries/sharedCode/src/main/res/values-sv-rSE/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-sv-rSE/strings.xml
@@ -81,5 +81,5 @@
View markdown result
Accessory view
The file cannot be renamed
- Use kitkat file selection
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-sv-rSE/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-sv-rSE/strings_turbo_client.xml
new file mode 100644
index 0000000..abc6d20
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-sv-rSE/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Ändra typen av lista
+ Kopiera URL
+ Klipp ut
+ Klistra in
+ Avancerat
+ Automatisk
+ Bytes
+ Måttenhet för filstorlek
+ Skapa ett nytt konto
+ Starta ett nytt konto för att starta.
+ Skriv
+ Filen %1$s redigerades, vill du ladda upp den?
+ Synkronisera
+ Fjärrmapp att synkronisera
+ Lokal mapp att synkronisera
+ Betygsätt
+ Säkerhetskopiera konton
+ Återställa kontona
+ Säkerhetskopiera och dela konton
+ Importera konton…
+ Exporterar konton…
+ Inga säkerhetskopiering är hittade
+ Kan inte öppna filen
+ Tillfälliga mappen finns inte
+ Ett fel uppstod
+ UI
+ Ta bort
+ Senast ändrad
+ Namn
+ Storlek
+ Sortera
+ Mörk
+ Markera
+ Välj ett konto
+ Är du säker?
+ Något gick fel
+ Överför inte samma fil
+ App tema
+ Anslutningstyp
+ Protokolltyp
+ En annan mapp
+ Använd en lösenfras
+ Ladda upp
+ Uppladdning slutförd
+ Vad vill du göra?
+ Fjärr
+ För att ändra tema, starta om appen
+ Byt namn
+ Standard fjärrmapp
+ Användarnamn
+ Passiv
+ Lösenfras
+ Lösenord
+ Lämna den tom för att fråga om det vid varje session
+ Port
+ Lokal
+ Loggar in…
+ Redigera
+ Flytta
+ Göm
+ Turbo Client
+ Värd/Host
+ Ny lokal mapp
+ Ny fjärrmapp
+ Ny fjärrfil
+ Ny lokal fil
+ Koppla ifrån
+ Lokala standardmappen
+ Vart ska den laddas ner?
+ Ladda ner
+ Nedladdning slutförd
+ Duplicera
+ Färdigt
+ Hem
+ Ljus
+ Nytt konto
+ Aktiv
+ Radera
+ Raderar filer…
+ Laddar…
+ Nuvarande lokal mapp
+ Privat nyckel
+ Göm reklam
+ Enradslista
+ Tvåradslista
+ Enkel lista
+
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 fc3326a..f6aab0d 100644
--- a/libraries/sharedCode/src/main/res/values-tr-rTR/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-tr-rTR/strings.xml
@@ -79,7 +79,7 @@
Karanlık tema
Siyah tema
Etiketleme sonucunu göster
- Accessory view
- The file cannot be renamed
- Use kitkat file selection
+ Aksesuar görünümü
+ Dosya yeniden adlandırılamıyor
+ \"Depolama Erişimi Framework\"ünü kullan
diff --git a/libraries/sharedCode/src/main/res/values-tr-rTR/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-tr-rTR/strings_turbo_client.xml
new file mode 100644
index 0000000..c148753
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-tr-rTR/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Liste türünü değiştir
+ URL Kopyala
+ Kes
+ Yapıştır
+ Gelişmiş
+ Otomatik
+ Bayt
+ Dosya boyutu için ölçüm birimi
+ Yeni hesap oluşturun
+ Başlamak için yeni bir hesap oluşturun.
+ Tür
+ %1$s dosyası değiştirildi, karşıya yüklemek ister misiniz?
+ Eşitle
+ Uzak klasöre eşitle
+ Yerel dosyaya eşitle
+ Derecelendir
+ Hesapları yedekle
+ Hesapları geri yükle
+ Hesapları yedekle ve paylaş
+ Hesaplar içeri aktarılıyor…
+ Hesaplar dışa aktarılıyor…
+ Yedek bulunamadı
+ Dosya açılamıyor
+ Geçici klasör mevcut değil
+ Bir hata oluştu
+ Kullanıcı arabirimi
+ Kaldır
+ Değiştirme tarihi
+ İsim
+ Boyut
+ Sırala
+ Karanlık
+ Seç
+ Bir hesap seçin
+ Emin misiniz?
+ Bir şey başarısız oldu
+ Aynı dosyaları aktarma
+ Uygulama teması
+ Bağlantı tipi
+ Protokol tipi
+ Diğer dosya
+ Parola kullan
+ Karşıya yükle
+ Yükleme tamamlandı
+ Ne yapmak istiyorsun?
+ Uzak
+ Temayı uygulamak için, uygulamayı yeniden başlatın
+ Yeniden adlandır
+ Varsayılan uzak klasör
+ Kullanıcı adı
+ Pasif
+ Parola
+ Şifre
+ Her oturum açılışında sorması için bunu boş bırakın
+ Port
+ Yerel
+ Oturum açılıyor…
+ Düzenle
+ Taşı
+ Gizle
+ Turbo İstemci
+ Ana bilgisayar
+ Yeni yerel klasör
+ Yeni uzak klasör
+ Yeni uzak dosya
+ Yeni yerel dosya
+ Bağlantıyı kes
+ Varsayılan yerel klasör
+ Nereye indirilsin?
+ İndir
+ İndirme tamamlandı
+ Çoğalt
+ Bitti
+ Ana sayfa
+ Aydınlık
+ Yeni hesap
+ Aktif
+ Sil
+ Dosyalar siliniyor…
+ Yükleniyor...
+ Geçerli yerel klasör
+ Özel Anahtar
+ Reklamları gizle
+ Tek satır liste
+ İki satır liste
+ Basit liste
+
diff --git a/libraries/sharedCode/src/main/res/values-uk-rUA/strings.xml b/libraries/sharedCode/src/main/res/values-uk-rUA/strings.xml
index c0500a1..87da067 100644
--- a/libraries/sharedCode/src/main/res/values-uk-rUA/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-uk-rUA/strings.xml
@@ -58,13 +58,13 @@
Додаткові опції
Розділення тексту, якщо занадто довгий
Ігнорувати кнопку Назад
- Пожертвувати
Кодування
Поділитись
Інформація
Turbo Editor
Налаштування
Зберегти
+ Зберегти як
Підсвітка синтаксису
Скасувати
Повторити
@@ -73,4 +73,13 @@
Відкрити файл
Ні
Новий файл
+ Видалити поточний файл
+ Замінити всі
+ Тема оформлення
+ Темна тема
+ Чорна тема
+ Переглянути результат уцінки
+ Accessory view
+ The file cannot be renamed
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-uk-rUA/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-uk-rUA/strings_turbo_client.xml
new file mode 100644
index 0000000..d910635
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-uk-rUA/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Змінити тип списку
+ Копіювати URL
+ Вирізати
+ Вставити
+ Додатково
+ Автоматично
+ Байт
+ Одиниця вимірювання розміру файлу
+ Створити обліковий запис
+ Створіть новий обліковий запис, щоб почати.
+ Тип
+ Файл %1$s змінено, завантажити на сервер?
+ Синхронізація
+ Віддалена папка для синхронізації
+ Локальна папка для синхронізації
+ Рейтинг
+ Резервне копіювання облікових записів
+ Відновлення облікових записів
+ Зобити резервну копію і поділитися
+ Імпортувати обліковий запис…
+ Експортувати обліковий запис…
+ Резервних копій не знайдено
+ Помилка відкриття файлу
+ Тимчасової папки не існує
+ Помилка
+ Інтерфейс
+ Видалити
+ Дата редагування
+ Назва
+ Розмір
+ Сортування
+ Темна
+ Виділення
+ Вибір аккаунту
+ Ви впевнені?
+ Щось трапилось
+ Не передавати іденичний файл
+ Тема
+ Тип з\'єднання
+ Протокол
+ Інша папка
+ Використовувати парольну фразу
+ Завантаження
+ Завантаження завершено
+ Що ви бажаєте зробити?
+ Віддалений
+ Щоб змінити тему, потрібно перезавантаження
+ Переіменувати
+ Віддалена папка за промовчанням
+ Логін
+ Пасивний
+ Парольна фраза
+ Пароль
+ Залиште пустим, щоб запитувати під час кожного сеансу
+ Порт
+ Локальний
+ З\'єднання…
+ Редагувати
+ Перемістити
+ Приховати
+ Turbo Client
+ Хост
+ Нова локальна папка
+ Нова віддалена папка
+ Новий файл на сервері
+ Новий локальний файл
+ Відключитись
+ Локальна папка за промовчанням
+ Куди завантажувати?
+ Завантажити
+ Завантаження завершено
+ Дублювати
+ Готово
+ Головна
+ Світла
+ Створити новий обліковий запис
+ Активний
+ Видалити
+ Видалення файлів…
+ Завантаження…
+ Поточна локальна папка
+ Пиватний ключ
+ Приховати рекламу
+ Список в 1 рядок
+ Список в 2 рядки
+ Простий список
+
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 7e5c2d3..592a7d5 100644
--- a/libraries/sharedCode/src/main/res/values-vi-rVN/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-vi-rVN/strings.xml
@@ -58,13 +58,13 @@
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á
+ Mã hoá
Chia sẻ
Thông tin
Turbo Editor
Tuỳ chỉnh
Lưu
- Lưu như
+ Lưu thành
Tô sáng cú pháp
Trở lại
Đi tới
@@ -75,11 +75,11 @@
Tập tin mới
Xoá tập tin hiện tại
Thay thế tất cả
- Theme
- Dark theme
- Black theme
+ Chủ đề
+ Chủ đề tối
+ Chủ đề đen
View markdown result
- Accessory view
- The file cannot be renamed
- Use kitkat file selection
+ Thanh ký hiệu đặc biệt
+ Không thể đổi tên tập tin này
+ Use the \"Storage Access Framework\"
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 65a1b68..802a168 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
@@ -25,7 +25,7 @@
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.
- Đặc biệt cảm ơn đến những người đã giúp dịch hoặc đóng góp cho tôi.
+ Đặc biệt cảm ơn: Nguyễn Trung Hậu, belvpro đã giúp dịch và những người đóng góp cho tôi.
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 c07a3f6..15f7ae0 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
@@ -20,18 +20,15 @@
-->
Đó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:
- ]]>
- You\'ve donated for this item already.
- An ice cream
- Cup of coffee
- Electricity bills
+ Đóng góp cho tác giả
+ mã nguồn mở. Bạn có thể thấy sự đánh giá của bạn và hỗ trợ phát triển bằng cách tặng: ]]>
+ Bạn đã đóng góp cho khoản mục này.
+ Một kem
+ Tách cà phê
+ Hoá đơn điện
The right pillow
Solid-state drive
- Sound system
- Failed to setup in-app-billing service!
- Notice that Google is not responsible for that payments method.
+ Hệ thống âm thanh
+ Không thể thiết lập dịch vụ thanh toán trong ứng dụng!
+ Nhận thấy rằng Google không chịu trách nhiệm về phương pháp thanh toán này.
diff --git a/libraries/sharedCode/src/main/res/values-vi-rVN/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-vi-rVN/strings_turbo_client.xml
new file mode 100644
index 0000000..68c501a
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-vi-rVN/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Thay đổi kiểu danh sách
+ Sao chép URL
+ Cắt
+ Dán
+ Nâng cao
+ Tự động
+ Byte
+ Đơn vị đo lường cho kích thước tập tin
+ Tạo tài khoản mới
+ Tạo một tài khoản mới để bắt đầu.
+ Kiểu
+ Tập tin %1$s đã chỉnh sửa, bạn có muốn tải lên nó?
+ Đồng bộ
+ Thư mục từ xa để đồng bộ
+ Thư mục nội bộ để đồng bộ
+ Đánh giá
+ Sao lưu tài khoản
+ Khôi phục tài khoản
+ Sao lưu và chia sẻ tài khoản
+ Đang nhập tài khoản...
+ Đang xuất tài khoản...
+ Không tìm thấy sao lưu
+ Không thể mở tập tin
+ Thư mục tạm thời không tồn tại
+ Một lỗi đã xảy ra
+ Giao diện
+ Xoá
+ Ngày sửa đổi
+ Tên
+ Kích thước
+ Sắp xếp
+ Tối
+ Chọn
+ Chọn một tài khoản
+ Bạn có chắc chắn?
+ Một cái gì đó thất bại
+ Không nên chuyển cùng một tập tin
+ Chủ đề ứng dụng
+ Kiểu kết nối
+ Kiểu giao thức
+ Một thư mục khác
+ Dùng một cụm từ mật khẩu
+ Tải lên
+ Tải lên hoàn tất
+ Bạn muốn làm gì?
+ Từ xa
+ Để thay đổi chủ đề, khởi động lại ứng dụng
+ Đổi tên
+ Thư mục từ xa mặc định
+ Tên người dùng
+ Passive
+ Passphrase
+ Mật khẩu
+ Để trống sẽ nhắc nhở cho mỗi phiên
+ Cổng
+ Nội bộ
+ Đăng nhập...
+ Sửa
+ Chuyển
+ Ẩn
+ Turbo Client
+ Máy chủ
+ Thư mục nội bộ mới
+ Thư mục từ xa mới
+ Tập tin từ xa mới
+ Tập tin nội bộ mới
+ Ngắt kết nối
+ Thư mục nội bộ mặc định
+ Nơi để tải về?
+ Tải về
+ Tải về hoàn tất
+ Duplicate
+ Xong
+ Trang chủ
+ Sáng
+ Tài khoản mới
+ Hoạt động
+ Xóa
+ Xóa các tập tin...
+ Đang tải...
+ Thư mục nội bộ hiện tại
+ Private Key
+ Hide ads
+ Single line list
+ Two lines list
+ Simple list
+
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 47d8789..2fb7d7b 100644
--- a/libraries/sharedCode/src/main/res/values-vls-rBE/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-vls-rBE/strings.xml
@@ -81,5 +81,5 @@
View markdown result
Accessory view
The file cannot be renamed
- Use kitkat file selection
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-vls-rBE/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-vls-rBE/strings_turbo_client.xml
new file mode 100644
index 0000000..4fd576e
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-vls-rBE/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Change the list type
+ Copy URL
+ Cut
+ Paste
+ Advanced
+ Auto
+ Bytes
+ Unit of measurement for file size
+ Create a new account
+ Create a new account to start.
+ Type
+ The file %1$s was modified, do you want to upload it?
+ Sync
+ Remote folder to sync
+ Local folder to sync
+ Rate
+ Backup the accounts
+ Restore the accounts
+ Backup and share the accounts
+ Importing the accounts…
+ Exporting the accounts…
+ No backups found
+ Cannot open the file
+ Temporary folder does not exist
+ An error occurred
+ UI
+ Remove
+ Modification date
+ Name
+ Size
+ Sort
+ Dark
+ Select
+ Select an account
+ Are you sure?
+ Something failed
+ Do not transfer same file
+ App theme
+ Connection type
+ Protocol type
+ Another folder
+ Use a passphrase
+ Upload
+ Upload completed
+ What do you want to do?
+ Remote
+ To change the theme, restart the application
+ Rename
+ Default remote folder
+ Username
+ Passive
+ Passphrase
+ Password
+ Leave it empty to prompt for it every session
+ Port
+ Local
+ Logging in…
+ Edit
+ Move
+ Hide
+ Turbo Client
+ Host
+ New local folder
+ New remote folder
+ New remote file
+ New local file
+ Disconnect
+ Default local folder
+ Where to download?
+ Download
+ Download completed
+ Duplicate
+ Done
+ Home
+ Light
+ New account
+ Active
+ Delete
+ Deleting files…
+ Loading…
+ Current local folder
+ Private Key
+ Hide ads
+ Single line list
+ Two lines list
+ Simple list
+
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 b24c16f..6db56e9 100644
--- a/libraries/sharedCode/src/main/res/values-zh-rCN/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-zh-rCN/strings.xml
@@ -81,5 +81,5 @@
View markdown result
Accessory view
The file cannot be renamed
- Use kitkat file selection
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-zh-rCN/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-zh-rCN/strings_turbo_client.xml
new file mode 100644
index 0000000..c95413c
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-zh-rCN/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ 更改列表类型
+ 复制链接
+ 剪切
+ Paste
+ 高级
+ 自动
+ Bytes
+ 文件大小单位
+ 创建一个新帐户
+ 创建一个新的帐户启动。
+ 类型
+ 文件%1$s已被修改,你想要上传吗?
+ 同步
+ 需要同步的远程文件夹
+ 需要同步的本地文件夹
+ 发表评分
+ 备份帐户
+ 还原帐户
+ 备份并共享帐户
+ 正在导入帐户...
+ Exporting the accounts…
+ 没有找到备份
+ 无法打开文件
+ 临时文件夹不存在
+ 出错
+ 用户界面
+ 移除
+ 修改日期
+ 名称
+ 大小
+ 排序
+ 暗的
+ 选择
+ 选择账户
+ 确定吗?
+ 失败
+ 不要移交相同的文件
+ 应用主题
+ 连接类型
+ 协议类型
+ 另一个文件夹
+ 使用密码
+ 上传
+ 上传完毕
+ 你想要撤销什么?
+ 远程
+ 改变主题后,重新启动应用程序
+ 重命名
+ 默认的远程文件夹
+ 用户名
+ 被动
+ 密码
+ 密码
+ 留空则每个会话都会提示输入
+ 端口
+ 本地
+ 正在登陆…
+ 编辑
+ 移动
+ 隐藏
+ Turbo客户端
+ 主机
+ 新建本地文件夹
+ 新建远程文件夹
+ 新建远程文件
+ 新建本地文件
+ 断开
+ 默认的本地文件夹
+ 在哪里下载?
+ 下载
+ 下载已完成
+ 制作副本
+ 完成
+ 首页
+ 亮的
+ 新帐户
+ 活跃
+ 删除
+ 正在删除文件
+ 加载...
+ 当前本地文件夹
+ 个人密钥
+ Hide ads
+ Single line list
+ Two lines list
+ Simple list
+
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 47d8789..2fb7d7b 100644
--- a/libraries/sharedCode/src/main/res/values-zh-rTW/strings.xml
+++ b/libraries/sharedCode/src/main/res/values-zh-rTW/strings.xml
@@ -81,5 +81,5 @@
View markdown result
Accessory view
The file cannot be renamed
- Use kitkat file selection
+ Use the \"Storage Access Framework\"
diff --git a/libraries/sharedCode/src/main/res/values-zh-rTW/strings_turbo_client.xml b/libraries/sharedCode/src/main/res/values-zh-rTW/strings_turbo_client.xml
new file mode 100644
index 0000000..4fd576e
--- /dev/null
+++ b/libraries/sharedCode/src/main/res/values-zh-rTW/strings_turbo_client.xml
@@ -0,0 +1,108 @@
+
+
+
+
+ Change the list type
+ Copy URL
+ Cut
+ Paste
+ Advanced
+ Auto
+ Bytes
+ Unit of measurement for file size
+ Create a new account
+ Create a new account to start.
+ Type
+ The file %1$s was modified, do you want to upload it?
+ Sync
+ Remote folder to sync
+ Local folder to sync
+ Rate
+ Backup the accounts
+ Restore the accounts
+ Backup and share the accounts
+ Importing the accounts…
+ Exporting the accounts…
+ No backups found
+ Cannot open the file
+ Temporary folder does not exist
+ An error occurred
+ UI
+ Remove
+ Modification date
+ Name
+ Size
+ Sort
+ Dark
+ Select
+ Select an account
+ Are you sure?
+ Something failed
+ Do not transfer same file
+ App theme
+ Connection type
+ Protocol type
+ Another folder
+ Use a passphrase
+ Upload
+ Upload completed
+ What do you want to do?
+ Remote
+ To change the theme, restart the application
+ Rename
+ Default remote folder
+ Username
+ Passive
+ Passphrase
+ Password
+ Leave it empty to prompt for it every session
+ Port
+ Local
+ Logging in…
+ Edit
+ Move
+ Hide
+ Turbo Client
+ Host
+ New local folder
+ New remote folder
+ New remote file
+ New local file
+ Disconnect
+ Default local folder
+ Where to download?
+ Download
+ Download completed
+ Duplicate
+ Done
+ Home
+ Light
+ New account
+ Active
+ Delete
+ Deleting files…
+ Loading…
+ Current local folder
+ Private Key
+ Hide ads
+ Single line list
+ Two lines list
+ Simple list
+
diff --git a/libraries/sharedCode/src/main/res/values/ids.xml b/libraries/sharedCode/src/main/res/values/ids.xml
index 7232f4f..c68f64f 100644
--- a/libraries/sharedCode/src/main/res/values/ids.xml
+++ b/libraries/sharedCode/src/main/res/values/ids.xml
@@ -67,7 +67,6 @@
-