Compare commits
13 Commits
Author | SHA1 | Date | |
---|---|---|---|
2c62965a02 | |||
eaab21069b | |||
2dbab5220a | |||
520c4c53c0 | |||
2fefb3963c | |||
e0eb01168e | |||
30294f72b5 | |||
ed621d369e | |||
6507331360 | |||
ec4742149b | |||
97dd211dc2 | |||
fc67e5930e | |||
44d4a2828b |
2
.gitignore
vendored
2
.gitignore
vendored
@ -18,8 +18,6 @@ proguard/
|
||||
# Log Files
|
||||
*.log
|
||||
|
||||
app-pro/
|
||||
|
||||
# Built application files
|
||||
/*/build/
|
||||
|
||||
|
36
README.md
36
README.md
@ -1,38 +1,32 @@
|
||||
# Turbo Editor
|
||||
[](https://crowdin.com/project/turbo-client)
|
||||
|
||||
Simple, powerful and Open Source file editor for Android licensed under the GPLv3 license.
|
||||
Simple, powerful and Open Source text editor for Android licensed under the GPLv3 license.
|
||||
|
||||
### Download
|
||||
[](http://play.google.com/store/apps/details?id=com.maskyn.fileeditorpro)
|
||||
|
||||
[](https://f-droid.org/repository/browse/?fdid=com.maskyn.fileeditorpro)
|
||||
|
||||
### Contribute
|
||||
You can contribute to this project in many ways:
|
||||
* Browse our issues, comment on proposals, report bugs.
|
||||
* Clone the balanced-dashboard repo, make some changes according to our
|
||||
development guidelines and issue a pull-request with your changes.
|
||||
* Help to translate the application on [Crowdin][crowdin]
|
||||
* [Donate][donate]
|
||||
|
||||
------
|
||||
|
||||
### Development guidelines
|
||||
1. Fork it (`git clone git://github.com/vmihalachi/turbo-editor.git`)
|
||||
2. Create your feature branch (`git checkout -b my-new-feature`)
|
||||
3. Write your code
|
||||
4. Commit your changes (`git commit -am 'Add some feature'`)
|
||||
5. Push to the branch (`git push origin my-new-feature`)
|
||||
6. Create new [pull request](https://help.github.com/articles/using-pull-requests)
|
||||
* Be a part of the Google Plus [Community][community googleplus]
|
||||
* Discuss with us on [XDA thread][xda thread]
|
||||
* Help to maintain this project active and [Donate][donate]
|
||||
|
||||
------
|
||||
|
||||
###Donate
|
||||
* Make a [Paypal][donate paypal] donation
|
||||
* Flattr this project [](https://flattr.com/submit/auto?user_id=vmihalachi&url=https://raw.github.com/vmihalachi/turbo-editor&title=Turbo Editor&language=&tags=github&category=software)
|
||||
[](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=26VWS2TSAMUJA)
|
||||
|
||||
[](https://flattr.com/submit/auto?user_id=vmihalachi&url=https://github.com/vmihalachi/turbo-editor&title=Turbo Editor&language=java&tags=github&category=software)
|
||||
|
||||
------
|
||||
|
||||
###Download
|
||||
* From the [Play Store][download playstore]
|
||||
* Want to try beta releases? Be a part of the Google Plus [Community][community googleplus]!
|
||||
|
||||
###Images
|
||||

|
||||
------
|
||||
|
||||
### Developer
|
||||
@ -56,8 +50,8 @@ See the [LICENSE][license] file that accompanies this distribution for the full
|
||||
[license]: https://github.com/vmihalachi/turbo-editor/LICENSE
|
||||
[donate]: https://github.com/vmihalachi/turbo-editor#donate
|
||||
[donate paypal]: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=PUQXSX6MTXHZ2
|
||||
[xda thread]: http://forum.xda-developers.com/android/apps-games/app-turbo-editor-text-editor-t2832016
|
||||
[community googleplus]: https://plus.google.com/u/0/communities/111974095419108178946
|
||||
[download playstore]: https://play.google.com/store/apps/details?id=com.maskyn.fileeditor
|
||||
[crowdin]: https://crowdin.net/project/turbo-client
|
||||
[developer site]: http://vmihalachi.com/
|
||||
[crowdin]: https://crowdin.net/project/turbo-client
|
||||
|
1
app-pro/.gitignore
vendored
Normal file
1
app-pro/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
/build
|
49
app-pro/build.gradle
Normal file
49
app-pro/build.gradle
Normal file
@ -0,0 +1,49 @@
|
||||
/*
|
||||
* Copyright (C) 2014 Vlad Mihalachi
|
||||
*
|
||||
* This file is part of Turbo Editor.
|
||||
*
|
||||
* Turbo Editor is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Turbo Editor is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
apply plugin: 'com.android.application'
|
||||
|
||||
android {
|
||||
compileSdkVersion 19
|
||||
buildToolsVersion "19.1.0"
|
||||
|
||||
defaultConfig {
|
||||
applicationId "com.maskyn.fileeditorpro"
|
||||
minSdkVersion 14
|
||||
targetSdkVersion 19
|
||||
versionCode 27
|
||||
versionName "1.11"
|
||||
}
|
||||
|
||||
compileOptions {
|
||||
sourceCompatibility JavaVersion.VERSION_1_7
|
||||
targetCompatibility JavaVersion.VERSION_1_7
|
||||
}
|
||||
buildTypes {
|
||||
release {
|
||||
runProguard false
|
||||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compile fileTree(dir: 'libs', include: ['*.jar'])
|
||||
compile project(':libraries:sharedCode')
|
||||
}
|
17
app-pro/proguard-rules.pro
vendored
Normal file
17
app-pro/proguard-rules.pro
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
# Add project specific ProGuard rules here.
|
||||
# By default, the flags in this file are appended to flags specified
|
||||
# in C:/Users/Vlad/AppData/Local/Android/android-sdk/tools/proguard/proguard-android.txt
|
||||
# You can edit the include path and order by changing the proguardFiles
|
||||
# directive in build.gradle.
|
||||
#
|
||||
# For more details, see
|
||||
# http://developer.android.com/guide/developing/tools/proguard.html
|
||||
|
||||
# Add any project specific keep options here:
|
||||
|
||||
# If your project uses WebView with JS, uncomment the following
|
||||
# and specify the fully qualified class name to the JavaScript interface
|
||||
# class:
|
||||
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
||||
# public *;
|
||||
#}
|
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Copyright (C) 2014 Vlad Mihalachi
|
||||
*
|
||||
* This file is part of Turbo Editor.
|
||||
*
|
||||
* Turbo Editor is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Turbo Editor is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package com.maskyn.fileeditorpro;
|
||||
|
||||
import android.app.Application;
|
||||
import android.test.ApplicationTestCase;
|
||||
|
||||
/**
|
||||
* <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a>
|
||||
*/
|
||||
public class ApplicationTest extends ApplicationTestCase<Application> {
|
||||
public ApplicationTest() {
|
||||
super(Application.class);
|
||||
}
|
||||
}
|
139
app-pro/src/main/AndroidManifest.xml
Normal file
139
app-pro/src/main/AndroidManifest.xml
Normal file
@ -0,0 +1,139 @@
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
~ This file is part of Turbo Editor.
|
||||
~
|
||||
~ Turbo Editor is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 3 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Turbo Editor is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.maskyn.fileeditorpro"
|
||||
android:installLocation="auto">
|
||||
|
||||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
||||
<uses-permission android:name="android.permission.ACCESS_SUPERUSER" />
|
||||
|
||||
<supports-screens
|
||||
android:anyDensity="true"
|
||||
android:largeScreens="true"
|
||||
android:normalScreens="true"
|
||||
android:resizeable="true"
|
||||
android:smallScreens="true"
|
||||
android:xlargeScreens="true" />
|
||||
|
||||
<application
|
||||
android:allowBackup="true"
|
||||
android:icon="@drawable/ic_launcher"
|
||||
android:label="@string/nome_app_turbo_editor"
|
||||
android:hardwareAccelerated="false"
|
||||
android:largeHeap="true"
|
||||
android:supportsRtl="true"
|
||||
>
|
||||
|
||||
<!-- android:alwaysRetainTaskState="true" -->
|
||||
|
||||
<activity
|
||||
android:name=".HomeActivity"
|
||||
android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen"
|
||||
android:launchMode="singleTop"
|
||||
android:windowSoftInputMode="stateUnspecified|adjustResize"
|
||||
android:theme="@style/AppTheme.Light.Editor">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
<category android:name="android.intent.category.MULTIWINDOW_LAUNCHER" />
|
||||
</intent-filter>
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.VIEW" />
|
||||
<action android:name="android.intent.action.EDIT" />
|
||||
<action android:name="android.intent.action.PICK" />
|
||||
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<category android:name="android.intent.category.BROWSABLE" />
|
||||
|
||||
<data android:scheme="file" />
|
||||
<data android:mimeType="text/*" />
|
||||
<data android:pathPattern="*.txt" />
|
||||
<data android:pathPattern="*.html" />
|
||||
<data android:pathPattern="*.css" />
|
||||
<data android:pathPattern="*.js" />
|
||||
<data android:pathPattern="*.md"/>
|
||||
<data android:pathPattern="*.php" />
|
||||
</intent-filter>
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.SEND" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<data android:mimeType="text/plain" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity
|
||||
android:name="sharedcode.turboeditor.activity.PreferenceAbout"
|
||||
android:configChanges="keyboardHidden|orientation|screenSize"
|
||||
android:label="@string/info"
|
||||
android:parentActivityName=".HomeActivity"
|
||||
android:theme="@style/AppTheme.Dark">
|
||||
<meta-data
|
||||
android:name="android.support.PARENT_ACTIVITY"
|
||||
android:value=".HomeActivity" />
|
||||
</activity>
|
||||
<activity
|
||||
android:name="sharedcode.turboeditor.activity.LicensesActivity"
|
||||
android:configChanges="keyboardHidden|orientation|screenSize"
|
||||
android:label="@string/open_source_license"
|
||||
android:parentActivityName="sharedcode.turboeditor.activity.PreferenceAbout"
|
||||
android:theme="@style/AppTheme.Light">
|
||||
<meta-data
|
||||
android:name="android.support.PARENT_ACTIVITY"
|
||||
android:value=".PreferenceAbout" />
|
||||
</activity>
|
||||
<activity
|
||||
android:name="sharedcode.turboeditor.activity.SelectFileActivity"
|
||||
android:configChanges="keyboardHidden|orientation|screenSize"
|
||||
android:label="@string/open_a_file"
|
||||
android:parentActivityName=".HomeActivity"
|
||||
android:theme="@style/AppTheme.Light">
|
||||
<meta-data
|
||||
android:name="android.support.PARENT_ACTIVITY"
|
||||
android:value=".HomeActivity" />
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name="sharedcode.turboeditor.preferences.ExtraSettingsActivity"
|
||||
android:label="@string/extra_options"
|
||||
android:parentActivityName=".HomeActivity">
|
||||
<meta-data
|
||||
android:name="android.support.PARENT_ACTIVITY"
|
||||
android:value=".HomeActivity" />
|
||||
</activity>
|
||||
|
||||
<meta-data
|
||||
android:name="com.sec.android.support.multiwindow"
|
||||
android:value="true" />
|
||||
<meta-data
|
||||
android:name="com.sec.android.multiwindow.DEFAULT_SIZE_W"
|
||||
android:value="632.0dip" />
|
||||
<meta-data
|
||||
android:name="com.sec.android.multiwindow.DEFAULT_SIZE_H"
|
||||
android:value="598.0dip" />
|
||||
<meta-data
|
||||
android:name="com.sec.android.multiwindow.MINIMUM_SIZE_W"
|
||||
android:value="632.0dip" />
|
||||
<meta-data
|
||||
android:name="com.sec.android.multiwindow.MINIMUM_SIZE_H"
|
||||
android:value="598.0dip" />
|
||||
|
||||
</application>
|
||||
|
||||
</manifest>
|
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Copyright (C) 2014 Vlad Mihalachi
|
||||
*
|
||||
* This file is part of Turbo Editor.
|
||||
*
|
||||
* Turbo Editor is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Turbo Editor is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package com.maskyn.fileeditorpro;
|
||||
|
||||
import android.os.Bundle;
|
||||
|
||||
import sharedcode.turboeditor.activity.BaseHomeActivity;
|
||||
|
||||
public class HomeActivity extends BaseHomeActivity {
|
||||
|
||||
@Override
|
||||
public void displayInterstitial() {
|
||||
// nothing to do here
|
||||
}
|
||||
}
|
@ -38,14 +38,14 @@ repositories {
|
||||
|
||||
|
||||
android {
|
||||
compileSdkVersion 20
|
||||
buildToolsVersion "20.0.0"
|
||||
compileSdkVersion 19
|
||||
buildToolsVersion "19.1.0"
|
||||
defaultConfig {
|
||||
applicationId "com.maskyn.fileeditor"
|
||||
minSdkVersion 14
|
||||
targetSdkVersion 20
|
||||
versionCode 26
|
||||
versionName "1.10"
|
||||
targetSdkVersion 19
|
||||
versionCode 27
|
||||
versionName "1.11"
|
||||
}
|
||||
compileOptions {
|
||||
sourceCompatibility JavaVersion.VERSION_1_7
|
||||
|
@ -52,7 +52,7 @@
|
||||
android:name=".HomeActivity"
|
||||
android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen"
|
||||
android:launchMode="singleTop"
|
||||
android:windowSoftInputMode="stateUnspecified|adjustPan"
|
||||
android:windowSoftInputMode="stateUnspecified|adjustResize"
|
||||
android:theme="@style/AppTheme.Light.Editor">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
@ -91,7 +91,7 @@
|
||||
android:theme="@style/AppTheme.Dark">
|
||||
<meta-data
|
||||
android:name="android.support.PARENT_ACTIVITY"
|
||||
android:value="com.maskyn.fileeditor.activity.HomeActivity" />
|
||||
android:value=".HomeActivity" />
|
||||
</activity>
|
||||
<activity
|
||||
android:name="sharedcode.turboeditor.activity.LicensesActivity"
|
||||
@ -101,7 +101,7 @@
|
||||
android:theme="@style/AppTheme.Light">
|
||||
<meta-data
|
||||
android:name="android.support.PARENT_ACTIVITY"
|
||||
android:value="com.maskyn.fileeditor.activity.PreferenceAbout" />
|
||||
android:value=".PreferenceAbout" />
|
||||
</activity>
|
||||
<activity
|
||||
android:name="sharedcode.turboeditor.activity.SelectFileActivity"
|
||||
@ -111,7 +111,16 @@
|
||||
android:theme="@style/AppTheme.Light">
|
||||
<meta-data
|
||||
android:name="android.support.PARENT_ACTIVITY"
|
||||
android:value="com.maskyn.fileeditor.activity.HomeActivity" />
|
||||
android:value=".HomeActivity" />
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name="sharedcode.turboeditor.preferences.ExtraSettingsActivity"
|
||||
android:label="@string/extra_options"
|
||||
android:parentActivityName=".HomeActivity">
|
||||
<meta-data
|
||||
android:name="android.support.PARENT_ACTIVITY"
|
||||
android:value=".HomeActivity" />
|
||||
</activity>
|
||||
|
||||
<meta-data
|
||||
|
@ -20,6 +20,8 @@
|
||||
package com.maskyn.fileeditor;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.preference.PreferenceManager;
|
||||
|
||||
import com.google.android.gms.ads.AdRequest;
|
||||
import com.google.android.gms.ads.InterstitialAd;
|
||||
|
||||
@ -33,24 +35,24 @@ public class AdsHelper {
|
||||
|
||||
public AdsHelper(Activity activity) {
|
||||
this.activity = activity;
|
||||
int today = Calendar.getInstance().get(Calendar.DAY_OF_MONTH);
|
||||
int lastDayAdShowed = PreferenceHelper.getLastDayAdShowed(activity);
|
||||
boolean showAd = today != lastDayAdShowed;
|
||||
if (showAd) {
|
||||
|
||||
interstitial = new InterstitialAd(activity);
|
||||
interstitial.setAdUnitId("ca-app-pub-5679083452234719/7178038180");
|
||||
interstitial = new InterstitialAd(activity);
|
||||
interstitial.setAdUnitId("ca-app-pub-5679083452234719/7178038180");
|
||||
|
||||
// Create ad request.
|
||||
AdRequest adRequest = new AdRequest.Builder().build();
|
||||
// Create ad request.
|
||||
AdRequest adRequest = new AdRequest.Builder().build();
|
||||
|
||||
// Begin loading your interstitial.
|
||||
interstitial.loadAd(adRequest);
|
||||
}
|
||||
// Begin loading your interstitial.
|
||||
interstitial.loadAd(adRequest);
|
||||
}
|
||||
|
||||
public void displayInterstitial() {
|
||||
if (interstitial != null && interstitial.isLoaded()) {
|
||||
|
||||
int numberOfAdsRequested = PreferenceHelper.getNumberOfAdsRequested(activity);
|
||||
numberOfAdsRequested++;
|
||||
PreferenceHelper.setNumberOfAdsRequested(activity, numberOfAdsRequested);
|
||||
|
||||
if (numberOfAdsRequested % 3 == 0 && interstitial != null && interstitial.isLoaded()) {
|
||||
interstitial.show();
|
||||
int today = Calendar.getInstance().get(Calendar.DAY_OF_MONTH);
|
||||
PreferenceHelper.setLastDayAdShowed(activity, today);
|
||||
|
@ -1,23 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
~ This file is part of Turbo Editor.
|
||||
~
|
||||
~ Turbo Editor is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 3 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Turbo Editor is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<pre-dex-items>
|
||||
|
||||
<item
|
||||
@ -27,17 +8,35 @@
|
||||
revision="20.0.0"
|
||||
sha1="a18ff12a9ab5ae52fd30d42f134517997568231e"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app-pro\build\intermediates\pre-dexed\debug\juniversalchardet-1.0.3-24b647622164ce26bc5d0be361e05056efc68e13.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app-pro\build\intermediates\exploded-aar\TurboMaterialEditor.libraries\sharedCode\unspecified\libs\juniversalchardet-1.0.3.jar"
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app-pro\build\intermediates\pre-dexed\debug\classes-9b612f0cb16e63277808158fe971bb4f40c98d29.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app-pro\build\intermediates\exploded-aar\com.github.gabrielemariotti.changeloglib\library\1.5.1\classes.jar"
|
||||
jumboMode="false"
|
||||
revision="20.0.0"
|
||||
sha1="591d72211acc0b909b79c840e0b3ed9a0982d807"/>
|
||||
revision="19.1.0"
|
||||
sha1="74a89f0f8b56d9f11d70b8d8134cf4109f4797dc"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app-pro\build\intermediates\pre-dexed\debug\support-v4-19.0.1-f87b13e7ed00736c2050eda75093bf42b0503c64.jar"
|
||||
jar="C:\Users\Vlad\AppData\Local\Android\android-sdk\extras\android\m2repository\com\android\support\support-v4\19.0.1\support-v4-19.0.1.jar"
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app\build\intermediates\pre-dexed\release\classes-579992e349b2c32e50f8907b9538ad0aa6df57b4.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app\build\intermediates\exploded-aar\com.google.android.gms\play-services\5.0.89\classes.jar"
|
||||
jumboMode="false"
|
||||
revision="20.0.0"
|
||||
sha1="587da9a481ffd341d2fa091704489b89845ddacd"/>
|
||||
revision="19.1.0"
|
||||
sha1="d71573c9c5ea98a8db47ad6ff993a63d492b3bfa"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app-pro\build\intermediates\pre-dexed\debug\support-annotations-20.0.0-be727b9c9ce08c6ee055559b9506b675c13db989.jar"
|
||||
jar="C:\Users\Vlad\AppData\Local\Android\android-sdk\extras\android\m2repository\com\android\support\support-annotations\20.0.0\support-annotations-20.0.0.jar"
|
||||
jumboMode="false"
|
||||
revision="19.1.0"
|
||||
sha1="9d9013e9ff35fc3756411e62873c363c70c638fa"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app\build\intermediates\pre-dexed\release\juniversalchardet-1.0.3-sources-436707958bb47977373cb4a2d842cdbf635fd840.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app\build\intermediates\exploded-aar\turbo-editor.libraries\sharedCode\unspecified\libs\juniversalchardet-1.0.3-sources.jar"
|
||||
jumboMode="false"
|
||||
revision="19.1.0"
|
||||
sha1="77979eaa98f90806f984155f44f63cc1fb60ac25"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app\build\intermediates\pre-dexed\release\crashlytics-1.1.13-7bbec76a44aa9cc3279ec6bff22b2c929a8abf67.jar"
|
||||
jar="C:\Users\Vlad\.gradle\caches\modules-2\files-2.1\com.crashlytics.android\crashlytics\1.1.13\e821eafa1bf489a26bdb71f95078c26785b37a1\crashlytics-1.1.13.jar"
|
||||
jumboMode="false"
|
||||
revision="19.1.0"
|
||||
sha1="0e821eafa1bf489a26bdb71f95078c26785b37a1"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app\build\intermediates\pre-dexed\debug\commons-io-2.4-63b64e68cd19031cd252ac65a3ef94421c1bf0f4.jar"
|
||||
jar="C:\Users\Vlad\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.4\b1b6ea3b7e4aa4f492509a4952029cd8e48019ad\commons-io-2.4.jar"
|
||||
@ -51,53 +50,23 @@
|
||||
revision="20.0.0"
|
||||
sha1="2f3117da0016b1126fafe7fb332a45d2f910d76c"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app-pro\build\intermediates\pre-dexed\debug\classes-a52f37b7ca7cde7ab02ff10bba80d1c496284125.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app-pro\build\intermediates\exploded-aar\TurboMaterialEditor.libraries\FloatingActionButton\unspecified\classes.jar"
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app-pro\build\intermediates\pre-dexed\debug\juniversalchardet-1.0.3-sources-58cfedaebe3b94ec0eaa2ede4e66aae8dbe309b0.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app-pro\build\intermediates\exploded-aar\turbo-editor.libraries\sharedCode\unspecified\libs\juniversalchardet-1.0.3-sources.jar"
|
||||
jumboMode="false"
|
||||
revision="20.0.0"
|
||||
sha1="2f3117da0016b1126fafe7fb332a45d2f910d76c"/>
|
||||
revision="19.1.0"
|
||||
sha1="77979eaa98f90806f984155f44f63cc1fb60ac25"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app\build\intermediates\pre-dexed\debug\support-v4-19.1.0-cf7033c44b86e758f85990185111614bac3ecfa8.jar"
|
||||
jar="C:\Users\Vlad\AppData\Local\Android\android-sdk\extras\android\m2repository\com\android\support\support-v4\19.1.0\support-v4-19.1.0.jar"
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app\build\intermediates\pre-dexed\release\classes-7a329e7f23515542bf02d96773d08da1d2333a7b.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app\build\intermediates\exploded-aar\turbo-editor.libraries\FloatingActionButton\unspecified\classes.jar"
|
||||
jumboMode="false"
|
||||
revision="20.0.0"
|
||||
sha1="85f201b380937e61a9dce6ca90ccf6872abbfb67"/>
|
||||
revision="19.1.0"
|
||||
sha1="22b92dd8763ce4c1a9bd71a25d6270a6398ac955"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app\build\intermediates\pre-dexed\debug\juniversalchardet-1.0.3-2e38d54a78dd518320bb6abe3d8931a19ff26792.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app\build\intermediates\exploded-aar\TurboMaterialEditor.libraries\sharedCode\unspecified\libs\juniversalchardet-1.0.3.jar"
|
||||
jumboMode="false"
|
||||
revision="20.0.0"
|
||||
sha1="591d72211acc0b909b79c840e0b3ed9a0982d807"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app\build\intermediates\pre-dexed\debug\classes-2ad27a3265673aeeb8f40e4322d8e19509329c96.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app\build\intermediates\exploded-aar\com.github.gabrielemariotti.changeloglib\library\1.5.1\classes.jar"
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app-pro\build\intermediates\pre-dexed\debug\classes-9b612f0cb16e63277808158fe971bb4f40c98d29.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app-pro\build\intermediates\exploded-aar\com.github.gabrielemariotti.changeloglib\library\1.5.1\classes.jar"
|
||||
jumboMode="false"
|
||||
revision="20.0.0"
|
||||
sha1="74a89f0f8b56d9f11d70b8d8134cf4109f4797dc"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app-pro\build\intermediates\pre-dexed\debug\classes-bfc447e4dbe83598b94dbdc8e38492cbbda6ebb2.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app-pro\build\intermediates\exploded-aar\TurboMaterialEditor.libraries\RootCommands\unspecified\classes.jar"
|
||||
jumboMode="false"
|
||||
revision="20.0.0"
|
||||
sha1="cdecd8167dfb75d5785decb911fc4516445dd6a6"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app\build\intermediates\pre-dexed\release\classes-579a5ce52888f504a812e0f68758a11f20a21c15.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app\build\intermediates\exploded-aar\TurboMaterialEditor.libraries\sharedCode\unspecified\classes.jar"
|
||||
jumboMode="false"
|
||||
revision="20.0.0"
|
||||
sha1="a593d4ce7ccdfa1eac8d97a82db64f23614b59a1"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app-pro\build\intermediates\pre-dexed\debug\classes-0a2ec632e1127b260f2b888ca5539fd41a1a638b.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app-pro\build\intermediates\exploded-aar\com.github.gabrielemariotti.changeloglib\library\1.5.1\classes.jar"
|
||||
jumboMode="false"
|
||||
revision="20.0.0"
|
||||
sha1="74a89f0f8b56d9f11d70b8d8134cf4109f4797dc"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app\build\intermediates\pre-dexed\debug\classes-a8678f35ea62f18f2f7b60a15203aa6c74b5e559.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app\build\intermediates\exploded-aar\com.google.android.gms\play-services\5.0.89\classes.jar"
|
||||
jumboMode="false"
|
||||
revision="20.0.0"
|
||||
sha1="d71573c9c5ea98a8db47ad6ff993a63d492b3bfa"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app-pro\build\intermediates\pre-dexed\release\classes-3e47e18f46719c7bf296f4b49ff03aaa3d406ba6.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app-pro\build\intermediates\exploded-aar\TurboMaterialEditor.libraries\sharedCode\unspecified\classes.jar"
|
||||
@ -110,6 +79,174 @@
|
||||
jumboMode="false"
|
||||
revision="20.0.0"
|
||||
sha1="0e821eafa1bf489a26bdb71f95078c26785b37a1"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app\build\intermediates\pre-dexed\release\juniversalchardet-1.0.3-9db20cdcb8ae72104757d81297c98978c65bd91b.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app\build\intermediates\exploded-aar\turbo-editor.libraries\sharedCode\unspecified\libs\juniversalchardet-1.0.3.jar"
|
||||
jumboMode="false"
|
||||
revision="19.1.0"
|
||||
sha1="591d72211acc0b909b79c840e0b3ed9a0982d807"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app-pro\build\intermediates\pre-dexed\debug\juniversalchardet-1.0.3-65b2b356e3f2da4b67e00aba70923d6321852204.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app-pro\build\intermediates\exploded-aar\turbo-editor.libraries\sharedCode\unspecified\libs\juniversalchardet-1.0.3.jar"
|
||||
jumboMode="false"
|
||||
revision="20.0.0"
|
||||
sha1="591d72211acc0b909b79c840e0b3ed9a0982d807"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app-pro\build\intermediates\pre-dexed\debug\internal_impl-20.0.0-edeafbea8ee49aead89729b1fc0541af3708b834.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app-pro\build\intermediates\exploded-aar\com.android.support\support-v4\20.0.0\libs\internal_impl-20.0.0.jar"
|
||||
jumboMode="false"
|
||||
revision="19.1.0"
|
||||
sha1="e40b3078e3fbd353c9f44da8df25a8fc0078209d"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app\build\intermediates\pre-dexed\release\classes-91de6979bb6be1b46cde32b462c23831eadd01d4.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app\build\intermediates\exploded-aar\com.github.gabrielemariotti.changeloglib\library\1.5.1\classes.jar"
|
||||
jumboMode="false"
|
||||
revision="19.1.0"
|
||||
sha1="74a89f0f8b56d9f11d70b8d8134cf4109f4797dc"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app-pro\build\intermediates\pre-dexed\debug\classes-0dd78bfcbe1a497e15390bba3a50f41cf42d9162.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app-pro\build\intermediates\exploded-aar\com.android.support\support-v4\20.0.0\classes.jar"
|
||||
jumboMode="false"
|
||||
revision="19.1.0"
|
||||
sha1="8694693636ab36910c8100ce527c258ff3ebece0"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app-pro\build\intermediates\pre-dexed\debug\support-v4-19.0.1-f87b13e7ed00736c2050eda75093bf42b0503c64.jar"
|
||||
jar="C:\Users\Vlad\AppData\Local\Android\android-sdk\extras\android\m2repository\com\android\support\support-v4\19.0.1\support-v4-19.0.1.jar"
|
||||
jumboMode="false"
|
||||
revision="20.0.0"
|
||||
sha1="587da9a481ffd341d2fa091704489b89845ddacd"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app-pro\build\intermediates\pre-dexed\debug\classes-a52f37b7ca7cde7ab02ff10bba80d1c496284125.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app-pro\build\intermediates\exploded-aar\TurboMaterialEditor.libraries\FloatingActionButton\unspecified\classes.jar"
|
||||
jumboMode="false"
|
||||
revision="20.0.0"
|
||||
sha1="2f3117da0016b1126fafe7fb332a45d2f910d76c"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app\build\intermediates\pre-dexed\debug\support-v4-19.1.0-cf7033c44b86e758f85990185111614bac3ecfa8.jar"
|
||||
jar="C:\Users\Vlad\AppData\Local\Android\android-sdk\extras\android\m2repository\com\android\support\support-v4\19.1.0\support-v4-19.1.0.jar"
|
||||
jumboMode="false"
|
||||
revision="20.0.0"
|
||||
sha1="85f201b380937e61a9dce6ca90ccf6872abbfb67"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app\build\intermediates\pre-dexed\release\classes-e7e86cab56b519ef20b4d01792717ffcddcc577b.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app\build\intermediates\exploded-aar\com.android.support\support-v4\20.0.0\classes.jar"
|
||||
jumboMode="false"
|
||||
revision="19.1.0"
|
||||
sha1="8694693636ab36910c8100ce527c258ff3ebece0"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app-pro\build\intermediates\pre-dexed\debug\classes-bfc447e4dbe83598b94dbdc8e38492cbbda6ebb2.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app-pro\build\intermediates\exploded-aar\TurboMaterialEditor.libraries\RootCommands\unspecified\classes.jar"
|
||||
jumboMode="false"
|
||||
revision="20.0.0"
|
||||
sha1="cdecd8167dfb75d5785decb911fc4516445dd6a6"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app-pro\build\intermediates\pre-dexed\debug\eventbus-2.2.1-32e81c5612ed132ff771b5425053d87f4f6c68c5.jar"
|
||||
jar="C:\Users\Vlad\.gradle\caches\modules-2\files-2.1\de.greenrobot\eventbus\2.2.1\a18ff12a9ab5ae52fd30d42f134517997568231e\eventbus-2.2.1.jar"
|
||||
jumboMode="false"
|
||||
revision="19.1.0"
|
||||
sha1="a18ff12a9ab5ae52fd30d42f134517997568231e"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app\build\intermediates\pre-dexed\release\classes-579a5ce52888f504a812e0f68758a11f20a21c15.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app\build\intermediates\exploded-aar\TurboMaterialEditor.libraries\sharedCode\unspecified\classes.jar"
|
||||
jumboMode="false"
|
||||
revision="20.0.0"
|
||||
sha1="a593d4ce7ccdfa1eac8d97a82db64f23614b59a1"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app-pro\build\intermediates\pre-dexed\debug\classes-30cc9565ecef1e8ae8577530d7ddd41993d192d7.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app-pro\build\intermediates\exploded-aar\turbo-editor.libraries\RootCommands\unspecified\classes.jar"
|
||||
jumboMode="false"
|
||||
revision="19.1.0"
|
||||
sha1="cb3d22565863773944a8c15de408e864e34d6da1"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app-pro\build\intermediates\pre-dexed\debug\juniversalchardet-1.0.3-24b647622164ce26bc5d0be361e05056efc68e13.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app-pro\build\intermediates\exploded-aar\TurboMaterialEditor.libraries\sharedCode\unspecified\libs\juniversalchardet-1.0.3.jar"
|
||||
jumboMode="false"
|
||||
revision="20.0.0"
|
||||
sha1="591d72211acc0b909b79c840e0b3ed9a0982d807"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app-pro\build\intermediates\pre-dexed\debug\classes-30cc9565ecef1e8ae8577530d7ddd41993d192d7.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app-pro\build\intermediates\exploded-aar\turbo-editor.libraries\RootCommands\unspecified\classes.jar"
|
||||
jumboMode="false"
|
||||
revision="20.0.0"
|
||||
sha1="f449c5674e0427708d4fb17c4a2ec74c267e74d6"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app-pro\build\intermediates\pre-dexed\debug\classes-bcfe21eb1248db73c27c811996e28274cf39b024.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app-pro\build\intermediates\exploded-aar\turbo-editor.libraries\sharedCode\unspecified\classes.jar"
|
||||
jumboMode="false"
|
||||
revision="19.1.0"
|
||||
sha1="41e61b62a19d60195de1b91dff0438d2a8e68f1a"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app-pro\build\intermediates\pre-dexed\debug\classes-82d5b6cab7f16bad663de7c7008673037efb0e1b.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app-pro\build\intermediates\exploded-aar\turbo-editor.libraries\FloatingActionButton\unspecified\classes.jar"
|
||||
jumboMode="false"
|
||||
revision="19.1.0"
|
||||
sha1="22b92dd8763ce4c1a9bd71a25d6270a6398ac955"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app\build\intermediates\pre-dexed\debug\classes-2ad27a3265673aeeb8f40e4322d8e19509329c96.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app\build\intermediates\exploded-aar\com.github.gabrielemariotti.changeloglib\library\1.5.1\classes.jar"
|
||||
jumboMode="false"
|
||||
revision="20.0.0"
|
||||
sha1="74a89f0f8b56d9f11d70b8d8134cf4109f4797dc"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app-pro\build\intermediates\pre-dexed\debug\classes-bcfe21eb1248db73c27c811996e28274cf39b024.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app-pro\build\intermediates\exploded-aar\turbo-editor.libraries\sharedCode\unspecified\classes.jar"
|
||||
jumboMode="false"
|
||||
revision="20.0.0"
|
||||
sha1="e7a26359f635a1353de0aa8492f56f1f47c42c1a"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app-pro\build\intermediates\pre-dexed\debug\classes-82d5b6cab7f16bad663de7c7008673037efb0e1b.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app-pro\build\intermediates\exploded-aar\turbo-editor.libraries\FloatingActionButton\unspecified\classes.jar"
|
||||
jumboMode="false"
|
||||
revision="20.0.0"
|
||||
sha1="c9508d53a0ddc7399493e4c7ad474718c5ed196e"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app\build\intermediates\pre-dexed\release\classes-515446996fed08836a9331ef47b508a0383ffa22.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app\build\intermediates\exploded-aar\turbo-editor.libraries\RootCommands\unspecified\classes.jar"
|
||||
jumboMode="false"
|
||||
revision="19.1.0"
|
||||
sha1="cb3d22565863773944a8c15de408e864e34d6da1"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app-pro\build\intermediates\pre-dexed\debug\juniversalchardet-1.0.3-65b2b356e3f2da4b67e00aba70923d6321852204.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app-pro\build\intermediates\exploded-aar\turbo-editor.libraries\sharedCode\unspecified\libs\juniversalchardet-1.0.3.jar"
|
||||
jumboMode="false"
|
||||
revision="19.1.0"
|
||||
sha1="591d72211acc0b909b79c840e0b3ed9a0982d807"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app\build\intermediates\pre-dexed\debug\juniversalchardet-1.0.3-2e38d54a78dd518320bb6abe3d8931a19ff26792.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app\build\intermediates\exploded-aar\TurboMaterialEditor.libraries\sharedCode\unspecified\libs\juniversalchardet-1.0.3.jar"
|
||||
jumboMode="false"
|
||||
revision="20.0.0"
|
||||
sha1="591d72211acc0b909b79c840e0b3ed9a0982d807"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app\build\intermediates\pre-dexed\release\classes-4dd6beddde59ff8bd6c22bd0d65ac974f7e489d2.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app\build\intermediates\exploded-aar\turbo-editor.libraries\sharedCode\unspecified\classes.jar"
|
||||
jumboMode="false"
|
||||
revision="19.1.0"
|
||||
sha1="41e61b62a19d60195de1b91dff0438d2a8e68f1a"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app\build\intermediates\pre-dexed\release\internal_impl-20.0.0-2cc5dec0eb9c4e1671dc84ade9411d50c227e9ae.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app\build\intermediates\exploded-aar\com.android.support\support-v4\20.0.0\libs\internal_impl-20.0.0.jar"
|
||||
jumboMode="false"
|
||||
revision="19.1.0"
|
||||
sha1="e40b3078e3fbd353c9f44da8df25a8fc0078209d"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app-pro\build\intermediates\pre-dexed\debug\classes-0a2ec632e1127b260f2b888ca5539fd41a1a638b.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app-pro\build\intermediates\exploded-aar\com.github.gabrielemariotti.changeloglib\library\1.5.1\classes.jar"
|
||||
jumboMode="false"
|
||||
revision="20.0.0"
|
||||
sha1="74a89f0f8b56d9f11d70b8d8134cf4109f4797dc"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app\build\intermediates\pre-dexed\debug\classes-a8678f35ea62f18f2f7b60a15203aa6c74b5e559.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app\build\intermediates\exploded-aar\com.google.android.gms\play-services\5.0.89\classes.jar"
|
||||
jumboMode="false"
|
||||
revision="20.0.0"
|
||||
sha1="d71573c9c5ea98a8db47ad6ff993a63d492b3bfa"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\turbo-editor\app-pro\build\intermediates\pre-dexed\debug\commons-io-2.4-63b64e68cd19031cd252ac65a3ef94421c1bf0f4.jar"
|
||||
jar="C:\Users\Vlad\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.4\b1b6ea3b7e4aa4f492509a4952029cd8e48019ad\commons-io-2.4.jar"
|
||||
jumboMode="false"
|
||||
revision="19.1.0"
|
||||
sha1="b1b6ea3b7e4aa4f492509a4952029cd8e48019ad"/>
|
||||
<item
|
||||
dex="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app\build\intermediates\pre-dexed\debug\classes-c9a98cf79b48106440348a9fa210060d1b8b2647.jar"
|
||||
jar="C:\Users\Vlad\Documents\AndroidStudioProjects\TurboMaterialEditor\app\build\intermediates\exploded-aar\TurboMaterialEditor.libraries\RootCommands\unspecified\classes.jar"
|
||||
|
Binary file not shown.
@ -1,7 +1,7 @@
|
||||
apply plugin: 'com.android.library'
|
||||
android {
|
||||
compileSdkVersion 19
|
||||
buildToolsVersion "20.0.0"
|
||||
buildToolsVersion '19.1.0'
|
||||
|
||||
defaultConfig {
|
||||
applicationId 'com.faizmalkani.floatingactionbutton'
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -15,8 +15,8 @@ dependencies {
|
||||
}
|
||||
|
||||
android {
|
||||
compileSdkVersion 20
|
||||
buildToolsVersion "20.0.0"
|
||||
compileSdkVersion 19
|
||||
buildToolsVersion '19.1.0'
|
||||
|
||||
defaultConfig {
|
||||
minSdkVersion 7
|
||||
|
@ -24,13 +24,13 @@ android {
|
||||
disable 'MissingTranslation', 'ExtraTranslation'
|
||||
}
|
||||
|
||||
compileSdkVersion 20
|
||||
buildToolsVersion "20.0.0"
|
||||
compileSdkVersion 19
|
||||
buildToolsVersion "19.1.0"
|
||||
|
||||
defaultConfig {
|
||||
applicationId "sharedcode.turboeditor"
|
||||
minSdkVersion 14
|
||||
targetSdkVersion 20
|
||||
targetSdkVersion 19
|
||||
versionCode 1
|
||||
versionName "1.0"
|
||||
}
|
||||
@ -51,11 +51,12 @@ dependencies {
|
||||
compile fileTree(dir: 'libs', include: ['*.jar'])
|
||||
compile project(':libraries:RootCommands')
|
||||
compile project(':libraries:FloatingActionButton')
|
||||
compile "com.android.support:support-v4:19.0.+"
|
||||
compile('de.greenrobot:eventbus:2.2.1') {
|
||||
exclude module: 'support-v4'
|
||||
}
|
||||
// compile 'com.googlecode.juniversalchardet:juniversalchardet:1.0.3'
|
||||
compile files('libs/juniversalchardet-1.0.3.jar')
|
||||
compile 'com.android.support:support-v4:20.0.0'
|
||||
compile 'com.github.gabrielemariotti.changeloglib:library:1.5.1'
|
||||
compile 'commons-io:commons-io:2.4'
|
||||
|
||||
}
|
||||
|
BIN
libraries/sharedCode/libs/juniversalchardet-1.0.3-sources.jar
Normal file
BIN
libraries/sharedCode/libs/juniversalchardet-1.0.3-sources.jar
Normal file
Binary file not shown.
@ -1,3 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@ -15,10 +16,8 @@
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
-->
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="sharedcode.turboeditor">
|
||||
|
||||
package="sharedcode.turboeditor" >
|
||||
|
||||
</manifest>
|
||||
|
@ -33,8 +33,6 @@ import android.os.IBinder;
|
||||
import android.preference.PreferenceManager;
|
||||
import android.support.v4.app.ActionBarDrawerToggle;
|
||||
import android.support.v4.app.ActivityOptionsCompat;
|
||||
import android.text.TextUtils;
|
||||
import android.util.Log;
|
||||
import android.view.Gravity;
|
||||
import android.view.KeyEvent;
|
||||
import android.view.MenuItem;
|
||||
@ -43,19 +41,6 @@ import android.view.inputmethod.InputMethodManager;
|
||||
import android.widget.EditText;
|
||||
import android.widget.Toast;
|
||||
|
||||
import sharedcode.turboeditor.R;
|
||||
import sharedcode.turboeditor.fragment.ChangelogDialogFragment;
|
||||
import sharedcode.turboeditor.fragment.EditorFragment;
|
||||
import sharedcode.turboeditor.fragment.NoFileOpenedFragment;
|
||||
import sharedcode.turboeditor.preferences.SettingsFragment;
|
||||
import sharedcode.turboeditor.util.AppInfoHelper;
|
||||
import sharedcode.turboeditor.util.Constants;
|
||||
import sharedcode.turboeditor.util.ProCheckUtils;
|
||||
import sharedcode.turboeditor.views.CustomDrawerLayout;
|
||||
import sharedcode.turboeditor.util.EventBusEvents;
|
||||
import sharedcode.turboeditor.preferences.PreferenceHelper;
|
||||
import sharedcode.turboeditor.util.ThemeHelper;
|
||||
|
||||
import org.apache.commons.io.FilenameUtils;
|
||||
import org.sufficientlysecure.rootcommands.Shell;
|
||||
import org.sufficientlysecure.rootcommands.Toolbox;
|
||||
@ -63,6 +48,16 @@ import org.sufficientlysecure.rootcommands.Toolbox;
|
||||
import java.io.File;
|
||||
|
||||
import de.greenrobot.event.EventBus;
|
||||
import sharedcode.turboeditor.R;
|
||||
import sharedcode.turboeditor.fragment.ChangelogDialogFragment;
|
||||
import sharedcode.turboeditor.fragment.EditorFragment;
|
||||
import sharedcode.turboeditor.fragment.NoFileOpenedFragment;
|
||||
import sharedcode.turboeditor.preferences.PreferenceHelper;
|
||||
import sharedcode.turboeditor.util.AppInfoHelper;
|
||||
import sharedcode.turboeditor.util.EventBusEvents;
|
||||
import sharedcode.turboeditor.util.ProCheckUtils;
|
||||
import sharedcode.turboeditor.util.ThemeHelper;
|
||||
import sharedcode.turboeditor.views.CustomDrawerLayout;
|
||||
|
||||
public abstract class BaseHomeActivity extends Activity {
|
||||
|
||||
@ -145,7 +140,18 @@ public abstract class BaseHomeActivity extends Activity {
|
||||
|
||||
@Override
|
||||
public void onBackPressed() {
|
||||
if (getFragmentManager().findFragmentById(R.id.fragment_editor) instanceof EditorFragment) {
|
||||
|
||||
// if we should ignore the back button
|
||||
if(PreferenceHelper.getIgnoreBackButton(this))
|
||||
return;
|
||||
|
||||
|
||||
boolean fileOpened = getFragmentManager().findFragmentById(R.id.fragment_editor) instanceof EditorFragment;
|
||||
if (mDrawerLayout.isDrawerOpen(Gravity.START) && fileOpened) {
|
||||
mDrawerLayout.closeDrawer(Gravity.START);
|
||||
} else if (mDrawerLayout.isDrawerOpen(Gravity.END) && fileOpened) {
|
||||
mDrawerLayout.closeDrawer(Gravity.END);
|
||||
} else if (fileOpened) {
|
||||
|
||||
// remove editor fragment
|
||||
getFragmentManager()
|
||||
@ -178,12 +184,12 @@ public abstract class BaseHomeActivity extends Activity {
|
||||
// this will happen on first key pressed on hard-keyboard only. Once myInputField
|
||||
// gets the focus again, it will automatically receive further key presses.
|
||||
|
||||
try{
|
||||
try {
|
||||
if (editor != null && !editor.hasFocus()) {
|
||||
editor.requestFocus();
|
||||
editor.onKeyDown(keyCode, event);
|
||||
}
|
||||
} catch (NullPointerException ex){
|
||||
} catch (NullPointerException ex) {
|
||||
|
||||
}
|
||||
|
||||
@ -204,7 +210,7 @@ public abstract class BaseHomeActivity extends Activity {
|
||||
File file = new File(path);
|
||||
if (file.isFile() && file.exists()) {
|
||||
EventBus.getDefault().postSticky(new EventBusEvents.NewFileToOpen(new File(path)));
|
||||
} else if(file.isDirectory()) {
|
||||
} else if (file.isDirectory()) {
|
||||
|
||||
}
|
||||
}
|
||||
@ -234,7 +240,7 @@ public abstract class BaseHomeActivity extends Activity {
|
||||
subActivity.putExtra("action", SelectFileActivity.Actions.SelectFile);
|
||||
Bundle scaleBundle = ActivityOptionsCompat.makeScaleUpAnimation(
|
||||
view, 0, 0, view.getWidth(), view.getHeight()).toBundle();
|
||||
if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN)
|
||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN)
|
||||
startActivityForResult(subActivity, SELECT_FILE_CODE, scaleBundle);
|
||||
else
|
||||
startActivityForResult(subActivity, SELECT_FILE_CODE);
|
||||
@ -249,7 +255,7 @@ public abstract class BaseHomeActivity extends Activity {
|
||||
Intent subActivity = new Intent(BaseHomeActivity.this, PreferenceAbout.class);
|
||||
Bundle scaleBundle = ActivityOptionsCompat.makeScaleUpAnimation(
|
||||
view, 0, 0, view.getWidth(), view.getHeight()).toBundle();
|
||||
if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN)
|
||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN)
|
||||
startActivity(subActivity, scaleBundle);
|
||||
else
|
||||
startActivity(subActivity);
|
||||
@ -269,6 +275,7 @@ public abstract class BaseHomeActivity extends Activity {
|
||||
File file;
|
||||
String message;
|
||||
String fileText;
|
||||
String encoding;
|
||||
ProgressDialog progressDialog;
|
||||
|
||||
@Override
|
||||
@ -312,20 +319,17 @@ public abstract class BaseHomeActivity extends Activity {
|
||||
}
|
||||
|
||||
boolean autoencoding = PreferenceHelper.getAutoEncoding(BaseHomeActivity.this);
|
||||
|
||||
if (autoencoding) {
|
||||
|
||||
String encoding = sharedcode.turboeditor.util.FileUtils.getDetectedEncoding(file);
|
||||
if (!TextUtils.isEmpty(encoding)) {
|
||||
encoding = SettingsFragment.sCurrentEncoding;
|
||||
} else {
|
||||
SettingsFragment.sCurrentEncoding = encoding;
|
||||
encoding = sharedcode.turboeditor.util.FileUtils.getDetectedEncoding(file);
|
||||
if (encoding.isEmpty()) {
|
||||
encoding = PreferenceHelper.getEncoding(BaseHomeActivity.this);
|
||||
}
|
||||
|
||||
fileText = org.apache.commons.io.FileUtils.readFileToString(file, encoding);
|
||||
} else {
|
||||
fileText = org.apache.commons.io.FileUtils.readFileToString(file, SettingsFragment.sCurrentEncoding);
|
||||
encoding = PreferenceHelper.getEncoding(BaseHomeActivity.this);
|
||||
}
|
||||
|
||||
fileText = org.apache.commons.io.FileUtils.readFileToString(file, encoding);
|
||||
} catch (Exception e) {
|
||||
message = e.getMessage();
|
||||
fileText = "";
|
||||
@ -351,7 +355,7 @@ public abstract class BaseHomeActivity extends Activity {
|
||||
} else {
|
||||
getFragmentManager()
|
||||
.beginTransaction()
|
||||
.replace(R.id.fragment_editor, EditorFragment.newInstance(event.getFile().getAbsolutePath(), fileText))
|
||||
.replace(R.id.fragment_editor, EditorFragment.newInstance(event.getFile().getAbsolutePath(), fileText, encoding))
|
||||
.commit();
|
||||
|
||||
}
|
||||
@ -386,9 +390,9 @@ public abstract class BaseHomeActivity extends Activity {
|
||||
displayInterstitial();
|
||||
}
|
||||
|
||||
public void onEvent(EventBusEvents.AFileIsSelected event){
|
||||
public void onEvent(EventBusEvents.AFileIsSelected event) {
|
||||
String name = FilenameUtils.getName(event.getPath());
|
||||
if(name.isEmpty())
|
||||
if (name.isEmpty())
|
||||
getActionBar().setTitle(R.string.nome_app_turbo_editor);
|
||||
else
|
||||
getActionBar().setTitle(name);
|
||||
@ -414,7 +418,7 @@ public abstract class BaseHomeActivity extends Activity {
|
||||
|
||||
public void onEvent(EventBusEvents.APreferenceValueWasChanged event) {
|
||||
|
||||
if (event.getType() == EventBusEvents.APreferenceValueWasChanged.Type.THEME_CHANGE) {
|
||||
if (event.hasType(EventBusEvents.APreferenceValueWasChanged.Type.THEME_CHANGE)) {
|
||||
ThemeHelper.setWindowsBackground(this);
|
||||
}
|
||||
}
|
||||
@ -506,8 +510,7 @@ public abstract class BaseHomeActivity extends Activity {
|
||||
&& type != null) {
|
||||
// Post event
|
||||
EventBus.getDefault().postSticky(new EventBusEvents.NewFileToOpen(new File(intent.getData().getPath())));
|
||||
}
|
||||
else if (Intent.ACTION_SEND.equals(action) && type != null) {
|
||||
} else if (Intent.ACTION_SEND.equals(action) && type != null) {
|
||||
if ("text/plain".equals(type)) {
|
||||
onEvent(new EventBusEvents.NewFileToOpen(intent.getStringExtra(Intent.EXTRA_TEXT)));
|
||||
onEvent(new EventBusEvents.AFileIsSelected("")); // simulate click on the list
|
||||
|
@ -37,13 +37,14 @@ public class LicensesActivity extends Activity implements AdapterView.OnItemClic
|
||||
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
boolean light = PreferenceHelper.getLightTheme(this);
|
||||
if (light) {
|
||||
setTheme(R.style.AppTheme_Light);
|
||||
} else {
|
||||
setTheme(R.style.AppTheme_Dark);
|
||||
}
|
||||
super.onCreate(savedInstanceState);
|
||||
|
||||
setContentView(R.layout.activity_licenses);
|
||||
ListView listView = (ListView) findViewById(android.R.id.list);
|
||||
listView.setOnItemClickListener(this);
|
||||
|
@ -20,14 +20,10 @@
|
||||
package sharedcode.turboeditor.activity;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.app.AlertDialog;
|
||||
import android.content.DialogInterface;
|
||||
import android.content.Intent;
|
||||
import android.content.pm.PackageManager;
|
||||
import android.net.Uri;
|
||||
import android.os.Bundle;
|
||||
import android.view.Menu;
|
||||
import android.view.MenuItem;
|
||||
import android.view.View;
|
||||
import android.widget.TextView;
|
||||
|
||||
@ -53,7 +49,7 @@ public class PreferenceAbout extends Activity {
|
||||
e.printStackTrace();
|
||||
}
|
||||
|
||||
proVersionText.setVisibility(ProCheckUtils.isPro(getBaseContext()) ? View.GONE : View.VISIBLE);
|
||||
proVersionText.setText(ProCheckUtils.isPro(getBaseContext()) ? getString(R.string.donate) : getString(R.string.pro_version));
|
||||
|
||||
}
|
||||
|
||||
@ -79,8 +75,14 @@ public class PreferenceAbout extends Activity {
|
||||
|
||||
public void GoToProVersion(View view) {
|
||||
try {
|
||||
if(ProCheckUtils.isPro(getBaseContext())) {
|
||||
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=26VWS2TSAMUJA"))
|
||||
.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK));
|
||||
} else {
|
||||
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=com.maskyn.fileeditorpro"))
|
||||
.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK));
|
||||
}
|
||||
|
||||
} catch (Exception e) {
|
||||
}
|
||||
}
|
||||
|
@ -35,13 +35,6 @@ import android.widget.TextView;
|
||||
import android.widget.Toast;
|
||||
|
||||
import com.faizmalkani.floatingactionbutton.FloatingActionButton;
|
||||
import sharedcode.turboeditor.R;
|
||||
import sharedcode.turboeditor.adapter.AdapterDetailedList;
|
||||
import sharedcode.turboeditor.fragment.EditDialogFragment;
|
||||
import sharedcode.turboeditor.util.AlphanumComparator;
|
||||
import sharedcode.turboeditor.util.Constants;
|
||||
import sharedcode.turboeditor.preferences.PreferenceHelper;
|
||||
import sharedcode.turboeditor.util.RootUtils;
|
||||
|
||||
import org.apache.commons.io.FileUtils;
|
||||
import org.apache.commons.io.FilenameUtils;
|
||||
@ -57,6 +50,14 @@ import java.util.Comparator;
|
||||
import java.util.LinkedList;
|
||||
import java.util.concurrent.TimeoutException;
|
||||
|
||||
import sharedcode.turboeditor.R;
|
||||
import sharedcode.turboeditor.adapter.AdapterDetailedList;
|
||||
import sharedcode.turboeditor.fragment.EditDialogFragment;
|
||||
import sharedcode.turboeditor.preferences.PreferenceHelper;
|
||||
import sharedcode.turboeditor.util.AlphanumComparator;
|
||||
import sharedcode.turboeditor.util.Constants;
|
||||
import sharedcode.turboeditor.util.RootUtils;
|
||||
|
||||
public class SelectFileActivity extends Activity implements SearchView.OnQueryTextListener, AdapterView.OnItemClickListener, EditDialogFragment.EditDialogListener {
|
||||
private String currentFolder;
|
||||
private ListView listView;
|
||||
@ -87,7 +88,7 @@ public class SelectFileActivity extends Activity implements SearchView.OnQueryTe
|
||||
listView.setOnItemClickListener(this);
|
||||
listView.setTextFilterEnabled(true);
|
||||
|
||||
FloatingActionButton mFab = (FloatingActionButton)findViewById(R.id.fabbutton);
|
||||
FloatingActionButton mFab = (FloatingActionButton) findViewById(R.id.fabbutton);
|
||||
mFab.setColor(getResources().getColor(R.color.fab_light));
|
||||
mFab.setDrawable(getResources().getDrawable(R.drawable.ic_fab_add));
|
||||
|
||||
@ -218,15 +219,15 @@ public class SelectFileActivity extends Activity implements SearchView.OnQueryTe
|
||||
MenuItem imSetAsWorkingFolder = menu.findItem(R.id.im_set_as_working_folder);
|
||||
MenuItem imIsWorkingFolder = menu.findItem(R.id.im_is_working_folder);
|
||||
MenuItem imSelectFolder = menu.findItem(R.id.im_select_folder);
|
||||
if(imSetAsWorkingFolder != null){
|
||||
if (imSetAsWorkingFolder != null) {
|
||||
// set the imSetAsWorkingFolder visible only if the two folder dont concide
|
||||
imSetAsWorkingFolder.setVisible(!currentFolder.equals(PreferenceHelper.getWorkingFolder(SelectFileActivity.this)));
|
||||
}
|
||||
if(imIsWorkingFolder != null) {
|
||||
if (imIsWorkingFolder != null) {
|
||||
// set visible is the other is invisible
|
||||
imIsWorkingFolder.setVisible(!imSetAsWorkingFolder.isVisible());
|
||||
}
|
||||
if(imSelectFolder != null) {
|
||||
if (imSelectFolder != null) {
|
||||
imSelectFolder.setVisible(!wantAFile);
|
||||
}
|
||||
return super.onPrepareOptionsMenu(menu);
|
||||
@ -329,8 +330,8 @@ public class SelectFileActivity extends Activity implements SearchView.OnQueryTe
|
||||
getString(R.string.folder),
|
||||
""));
|
||||
} else if (f.isFile()
|
||||
&& !FilenameUtils.isExtension(f.getName().toLowerCase(), unopenableExtensions)
|
||||
&& FileUtils.sizeOf(f) <= Constants.MAX_FILE_SIZE * FileUtils.ONE_KB) {
|
||||
&& !FilenameUtils.isExtension(f.getName().toLowerCase(), unopenableExtensions)
|
||||
&& FileUtils.sizeOf(f) <= Constants.MAX_FILE_SIZE * FileUtils.ONE_KB) {
|
||||
final long fileSize = f.length();
|
||||
SimpleDateFormat format = new SimpleDateFormat("MMM dd, yyyy hh:mm a");
|
||||
String date = format.format(f.lastModified());
|
||||
|
@ -29,14 +29,14 @@ import android.widget.Filter;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.TextView;
|
||||
|
||||
import sharedcode.turboeditor.R;
|
||||
import sharedcode.turboeditor.util.MimeTypes;
|
||||
|
||||
import org.apache.commons.io.FilenameUtils;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.LinkedList;
|
||||
|
||||
import sharedcode.turboeditor.R;
|
||||
import sharedcode.turboeditor.util.MimeTypes;
|
||||
|
||||
public class AdapterDetailedList extends
|
||||
ArrayAdapter<AdapterDetailedList.FileDetail> {
|
||||
|
||||
|
@ -29,11 +29,11 @@ import android.widget.ArrayAdapter;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.TextView;
|
||||
|
||||
import sharedcode.turboeditor.R;
|
||||
|
||||
import java.io.File;
|
||||
import java.util.ArrayList;
|
||||
|
||||
import sharedcode.turboeditor.R;
|
||||
|
||||
public class AdapterDrawer extends
|
||||
ArrayAdapter<File> {
|
||||
|
||||
@ -111,6 +111,7 @@ public class AdapterDrawer extends
|
||||
|
||||
public interface Callbacks {
|
||||
void CancelItem(int position, boolean andCloseOpenedFile);
|
||||
|
||||
void ItemSelected(String path);
|
||||
}
|
||||
|
||||
|
@ -31,9 +31,8 @@ import android.net.Uri;
|
||||
import android.os.Bundle;
|
||||
import android.view.LayoutInflater;
|
||||
|
||||
import sharedcode.turboeditor.R;
|
||||
|
||||
import it.gmariotti.changelibs.library.view.ChangeLogListView;
|
||||
import sharedcode.turboeditor.R;
|
||||
import sharedcode.turboeditor.util.Constants;
|
||||
|
||||
public class ChangelogDialogFragment extends DialogFragment {
|
||||
|
@ -25,6 +25,7 @@ import android.content.ActivityNotFoundException;
|
||||
import android.content.Context;
|
||||
import android.content.Intent;
|
||||
import android.content.SharedPreferences;
|
||||
import android.content.res.Configuration;
|
||||
import android.graphics.Canvas;
|
||||
import android.graphics.Typeface;
|
||||
import android.net.Uri;
|
||||
@ -63,8 +64,8 @@ import sharedcode.turboeditor.preferences.SettingsFragment;
|
||||
import sharedcode.turboeditor.util.EditorInterface;
|
||||
import sharedcode.turboeditor.util.EdittextPadding;
|
||||
import sharedcode.turboeditor.util.EventBusEvents;
|
||||
import sharedcode.turboeditor.views.GoodScrollView;
|
||||
import sharedcode.turboeditor.util.LineUtils;
|
||||
import sharedcode.turboeditor.views.GoodScrollView;
|
||||
import sharedcode.turboeditor.util.MimeTypes;
|
||||
import sharedcode.turboeditor.util.PageSystem;
|
||||
import sharedcode.turboeditor.util.PageSystemButtons;
|
||||
@ -105,6 +106,7 @@ public class EditorFragment extends Fragment implements FindTextDialogFragment.S
|
||||
private SearchResult searchResult;
|
||||
private PageSystem pageSystem;
|
||||
private PageSystemButtons pageSystemButtons;
|
||||
private String currentEncoding;
|
||||
|
||||
private static final int SYNTAX_DELAY_MILLIS_SHORT = 250;
|
||||
private static final int SYNTAX_DELAY_MILLIS_LONG = 1500;
|
||||
@ -115,7 +117,7 @@ public class EditorFragment extends Fragment implements FindTextDialogFragment.S
|
||||
static final int ID_PASTE = android.R.id.paste;
|
||||
private static final int ID_UNDO = R.id.im_undo;
|
||||
private static final int ID_REDO = R.id.im_redo;
|
||||
private static final int CHARS_TO_COLOR = 2000;
|
||||
private static final int CHARS_TO_COLOR = 2500;
|
||||
|
||||
private final Handler updateHandler = new Handler();
|
||||
private final Runnable colorRunnable_duringEditing =
|
||||
@ -134,11 +136,12 @@ public class EditorFragment extends Fragment implements FindTextDialogFragment.S
|
||||
};
|
||||
//endregion
|
||||
|
||||
public static EditorFragment newInstance(String filePath, String fileText) {
|
||||
public static EditorFragment newInstance(String filePath, String fileText, String encoding) {
|
||||
EditorFragment frag = new EditorFragment();
|
||||
Bundle args = new Bundle();
|
||||
args.putString("filePath", filePath);
|
||||
args.putString("fileText", fileText);
|
||||
args.putString("encoding", encoding);
|
||||
frag.setArguments(args);
|
||||
return frag;
|
||||
}
|
||||
@ -150,7 +153,8 @@ public class EditorFragment extends Fragment implements FindTextDialogFragment.S
|
||||
super.onCreate(savedInstanceState);
|
||||
setHasOptionsMenu(true);
|
||||
sFilePath = getArguments().getString("filePath");
|
||||
pageSystem = new PageSystem(this, getArguments().getString("fileText"));
|
||||
pageSystem = new PageSystem(getActivity(), this, getArguments().getString("fileText"));
|
||||
currentEncoding = getArguments().getString("encoding");
|
||||
getArguments().remove("fileText");
|
||||
}
|
||||
|
||||
@ -164,49 +168,49 @@ public class EditorFragment extends Fragment implements FindTextDialogFragment.S
|
||||
|
||||
mEditor.setEditorInterface(this);
|
||||
|
||||
if (SettingsFragment.sWrapContent) {
|
||||
if (PreferenceHelper.getWrapContent(getActivity())) {
|
||||
horizontalScroll.removeView(mEditor);
|
||||
verticalScroll.removeView(horizontalScroll);
|
||||
verticalScroll.addView(mEditor);
|
||||
} else {
|
||||
// else show what is in the xml file fragment_editor.xml-
|
||||
}
|
||||
if (SettingsFragment.sLightTheme) {
|
||||
if (PreferenceHelper.getLightTheme(getActivity())) {
|
||||
mEditor.setTextColor(getResources().getColor(R.color.textColorInverted));
|
||||
} else {
|
||||
mEditor.setTextColor(getResources().getColor(R.color.textColor));
|
||||
}
|
||||
if (SettingsFragment.sLineNumbers) {
|
||||
mEditor.setPadding(EdittextPadding.getPaddingWithLineNumbers(getActivity(), SettingsFragment.sFontSize), EdittextPadding.getPaddingTop(getActivity()), 0, 0);
|
||||
if (PreferenceHelper.getLineNumbers(getActivity())) {
|
||||
mEditor.setPadding(EdittextPadding.getPaddingWithLineNumbers(getActivity(), PreferenceHelper.getFontSize(getActivity())), EdittextPadding.getPaddingTop(getActivity()), 0, 0);
|
||||
} else {
|
||||
mEditor.setPadding(EdittextPadding.getPaddingWithoutLineNumbers(getActivity()), EdittextPadding.getPaddingTop(getActivity()), 0, 0);
|
||||
}
|
||||
|
||||
if(SettingsFragment.sReadOnly) {
|
||||
if(PreferenceHelper.getReadOnly(getActivity())) {
|
||||
getActivity().getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
|
||||
mEditor.setReadOnly(true);
|
||||
} else {
|
||||
getActivity().getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_UNSPECIFIED);
|
||||
mEditor.setReadOnly(false);
|
||||
if (SettingsFragment.sSuggestionsActive) {
|
||||
if (PreferenceHelper.getSuggestionActive(getActivity())) {
|
||||
mEditor.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_FLAG_MULTI_LINE | InputType.TYPE_TEXT_FLAG_IME_MULTI_LINE);
|
||||
} else {
|
||||
mEditor.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_FLAG_MULTI_LINE | InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS | InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD | InputType.TYPE_TEXT_FLAG_IME_MULTI_LINE);
|
||||
}
|
||||
}
|
||||
|
||||
if (SettingsFragment.sUseMonospace) {
|
||||
if (PreferenceHelper.getUseMonospace(getActivity())) {
|
||||
mEditor.setTypeface(Typeface.MONOSPACE);
|
||||
} else {
|
||||
mEditor.setTypeface(Typeface.DEFAULT);
|
||||
}
|
||||
mEditor.setTextSize(SettingsFragment.sFontSize);
|
||||
mEditor.setTextSize(PreferenceHelper.getFontSize(getActivity()));
|
||||
|
||||
mEditor.setFocusable(true);
|
||||
mEditor.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
if(!SettingsFragment.sReadOnly) {
|
||||
if(!PreferenceHelper.getReadOnly(getActivity())) {
|
||||
((InputMethodManager) getActivity().getSystemService(Context.INPUT_METHOD_SERVICE))
|
||||
.showSoftInput(mEditor, InputMethodManager.SHOW_IMPLICIT);
|
||||
}
|
||||
@ -216,7 +220,7 @@ public class EditorFragment extends Fragment implements FindTextDialogFragment.S
|
||||
mEditor.setOnFocusChangeListener(new View.OnFocusChangeListener() {
|
||||
@Override
|
||||
public void onFocusChange(View v, boolean hasFocus) {
|
||||
if(hasFocus && !SettingsFragment.sReadOnly) {
|
||||
if(hasFocus && !PreferenceHelper.getReadOnly(getActivity())) {
|
||||
((InputMethodManager) getActivity().getSystemService(Context.INPUT_METHOD_SERVICE))
|
||||
.showSoftInput(mEditor, InputMethodManager.SHOW_IMPLICIT);
|
||||
}
|
||||
@ -249,7 +253,7 @@ public class EditorFragment extends Fragment implements FindTextDialogFragment.S
|
||||
// Unregister the Event Bus
|
||||
EventBus.getDefault().unregister(this);
|
||||
|
||||
if(SettingsFragment.sAutoSave && mEditor.canSaveFile()) {
|
||||
if(PreferenceHelper.getAutoSave(getActivity()) && mEditor.canSaveFile()) {
|
||||
onEvent(new EventBusEvents.SaveAFile());
|
||||
mEditor.fileSaved(); // so it doesn't ask to save in onDetach
|
||||
}
|
||||
@ -260,7 +264,7 @@ public class EditorFragment extends Fragment implements FindTextDialogFragment.S
|
||||
super.onDetach();
|
||||
|
||||
if (!getActivity().isFinishing() && mEditor.canSaveFile())
|
||||
SaveFileDialogFragment.newInstance(sFilePath, pageSystem.getAllText(mEditor.getText().toString())).show(getFragmentManager(), "dialog");
|
||||
SaveFileDialogFragment.newInstance(sFilePath, pageSystem.getAllText(mEditor.getText().toString()), currentEncoding).show(getFragmentManager(), "dialog");
|
||||
}
|
||||
|
||||
//endregion
|
||||
@ -286,8 +290,8 @@ public class EditorFragment extends Fragment implements FindTextDialogFragment.S
|
||||
|
||||
if (searchingText) {
|
||||
MenuItem imReplace = menu.findItem(R.id.im_replace);
|
||||
if (imReplace != null)
|
||||
imReplace.setVisible(searchResult.isReplace);
|
||||
if (imReplace != null)
|
||||
imReplace.setVisible(searchResult.isReplace);
|
||||
|
||||
} else {
|
||||
MenuItem imSave = menu.findItem(R.id.im_save);
|
||||
@ -387,7 +391,7 @@ public class EditorFragment extends Fragment implements FindTextDialogFragment.S
|
||||
|
||||
@Override
|
||||
public void updateTextSyntax() {
|
||||
if (!SettingsFragment.sColorSyntax || mEditor.hasSelection() || updateHandler == null || colorRunnable_duringEditing == null)
|
||||
if (!PreferenceHelper.getSyntaxHiglight(getActivity()) || mEditor.hasSelection() || updateHandler == null || colorRunnable_duringEditing == null)
|
||||
return;
|
||||
|
||||
updateHandler.removeCallbacks(colorRunnable_duringEditing);
|
||||
@ -492,7 +496,7 @@ public class EditorFragment extends Fragment implements FindTextDialogFragment.S
|
||||
public void onScrollChanged(int l, int t, int oldl, int oldt) {
|
||||
pageSystemButtons.updateVisibility(Math.abs(t) > 10);
|
||||
|
||||
if (!SettingsFragment.sColorSyntax || (mEditor.hasSelection() && !searchingText) || updateHandler == null || colorRunnable_duringScroll == null)
|
||||
if (!PreferenceHelper.getSyntaxHiglight(getActivity()) || (mEditor.hasSelection() && !searchingText) || updateHandler == null || colorRunnable_duringScroll == null)
|
||||
return;
|
||||
|
||||
updateHandler.removeCallbacks(colorRunnable_duringEditing);
|
||||
@ -592,8 +596,8 @@ public class EditorFragment extends Fragment implements FindTextDialogFragment.S
|
||||
//region Eventbus
|
||||
public void onEvent(EventBusEvents.APreferenceValueWasChanged event) {
|
||||
|
||||
if (event.getType() == WRAP_CONTENT) {
|
||||
if (SettingsFragment.sWrapContent) {
|
||||
if (event.hasType(WRAP_CONTENT)) {
|
||||
if (PreferenceHelper.getWrapContent(getActivity())) {
|
||||
horizontalScroll.removeView(mEditor);
|
||||
verticalScroll.removeView(horizontalScroll);
|
||||
verticalScroll.addView(mEditor);
|
||||
@ -602,65 +606,65 @@ public class EditorFragment extends Fragment implements FindTextDialogFragment.S
|
||||
verticalScroll.addView(horizontalScroll);
|
||||
horizontalScroll.addView(mEditor);
|
||||
}
|
||||
} else if (event.getType() == LINE_NUMERS) {
|
||||
} else if (event.hasType(LINE_NUMERS)) {
|
||||
mEditor.disableTextChangedListener();
|
||||
mEditor.replaceTextKeepCursor(null, true);
|
||||
mEditor.enableTextChangedListener();
|
||||
if (SettingsFragment.sLineNumbers) {
|
||||
mEditor.setPadding(EdittextPadding.getPaddingWithLineNumbers(getActivity(), SettingsFragment.sFontSize), EdittextPadding.getPaddingTop(getActivity()), 0, 0);
|
||||
if (PreferenceHelper.getLineNumbers(getActivity())) {
|
||||
mEditor.setPadding(EdittextPadding.getPaddingWithLineNumbers(getActivity(), PreferenceHelper.getFontSize(getActivity())), EdittextPadding.getPaddingTop(getActivity()), 0, 0);
|
||||
} else {
|
||||
mEditor.setPadding(EdittextPadding.getPaddingWithoutLineNumbers(getActivity()), EdittextPadding.getPaddingTop(getActivity()), 0, 0);
|
||||
}
|
||||
} else if (event.getType() == SYNTAX) {
|
||||
} else if (event.hasType(SYNTAX)) {
|
||||
mEditor.disableTextChangedListener();
|
||||
mEditor.replaceTextKeepCursor(null, true);
|
||||
mEditor.enableTextChangedListener();
|
||||
} else if (event.getType() == MONOSPACE) {
|
||||
if (SettingsFragment.sUseMonospace)
|
||||
} else if (event.hasType(MONOSPACE)) {
|
||||
if (PreferenceHelper.getUseMonospace(getActivity()))
|
||||
this.mEditor.setTypeface(Typeface.MONOSPACE);
|
||||
else
|
||||
this.mEditor.setTypeface(Typeface.DEFAULT);
|
||||
} else if (event.getType() == THEME_CHANGE) {
|
||||
if (SettingsFragment.sLightTheme) {
|
||||
} else if (event.hasType(THEME_CHANGE)) {
|
||||
if (PreferenceHelper.getLightTheme(getActivity())) {
|
||||
mEditor.setTextColor(getResources().getColor(R.color.textColorInverted));
|
||||
} else {
|
||||
mEditor.setTextColor(getResources().getColor(R.color.textColor));
|
||||
}
|
||||
} else if (event.getType() == TEXT_SUGGESTIONS || event.getType() == READ_ONLY) {
|
||||
if(SettingsFragment.sReadOnly) {
|
||||
} else if (event.hasType(TEXT_SUGGESTIONS) || event.hasType(READ_ONLY)) {
|
||||
if(PreferenceHelper.getReadOnly(getActivity())) {
|
||||
getActivity().getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
|
||||
mEditor.setReadOnly(true);
|
||||
} else {
|
||||
getActivity().getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_UNSPECIFIED);
|
||||
mEditor.setReadOnly(false);
|
||||
if (SettingsFragment.sSuggestionsActive) {
|
||||
if (PreferenceHelper.getSuggestionActive(getActivity())) {
|
||||
mEditor.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_FLAG_MULTI_LINE | InputType.TYPE_TEXT_FLAG_IME_MULTI_LINE);
|
||||
} else {
|
||||
mEditor.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_FLAG_MULTI_LINE | InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS | InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD | InputType.TYPE_TEXT_FLAG_IME_MULTI_LINE);
|
||||
}
|
||||
}
|
||||
// sometimes it becomes monospace after setting the input type
|
||||
if (SettingsFragment.sUseMonospace)
|
||||
if (PreferenceHelper.getUseMonospace(getActivity()))
|
||||
this.mEditor.setTypeface(Typeface.MONOSPACE);
|
||||
else
|
||||
this.mEditor.setTypeface(Typeface.DEFAULT);
|
||||
} else if (event.getType() == FONT_SIZE) {
|
||||
if (SettingsFragment.sLineNumbers) {
|
||||
mEditor.setPadding(EdittextPadding.getPaddingWithLineNumbers(getActivity(), SettingsFragment.sFontSize), EdittextPadding.getPaddingTop(getActivity()), 0, 0);
|
||||
} else if (event.hasType(FONT_SIZE)) {
|
||||
if (PreferenceHelper.getLineNumbers(getActivity())) {
|
||||
mEditor.setPadding(EdittextPadding.getPaddingWithLineNumbers(getActivity(), PreferenceHelper.getFontSize(getActivity())), EdittextPadding.getPaddingTop(getActivity()), 0, 0);
|
||||
} else {
|
||||
mEditor.setPadding(EdittextPadding.getPaddingWithoutLineNumbers(getActivity()), EdittextPadding.getPaddingTop(getActivity()), 0, 0);
|
||||
}
|
||||
this.mEditor.setTextSize(SettingsFragment.sFontSize);
|
||||
} else if (event.getType() == ENCODING) {
|
||||
this.mEditor.setTextSize(PreferenceHelper.getFontSize(getActivity()));
|
||||
} else if (event.hasType(ENCODING)) {
|
||||
String oldEncoding, newEncoding;
|
||||
oldEncoding = SettingsFragment.sCurrentEncoding;
|
||||
oldEncoding = currentEncoding;
|
||||
newEncoding = PreferenceHelper.getEncoding(getActivity());
|
||||
try {
|
||||
final byte[] oldText = this.mEditor.getText().toString().getBytes(oldEncoding);
|
||||
mEditor.disableTextChangedListener();
|
||||
mEditor.replaceTextKeepCursor(new String(oldText, newEncoding), true);
|
||||
mEditor.enableTextChangedListener();
|
||||
SettingsFragment.sCurrentEncoding = newEncoding;
|
||||
currentEncoding = newEncoding;
|
||||
} catch (UnsupportedEncodingException ignored) {
|
||||
try {
|
||||
final byte[] oldText = this.mEditor.getText().toString().getBytes(oldEncoding);
|
||||
@ -676,9 +680,9 @@ public class EditorFragment extends Fragment implements FindTextDialogFragment.S
|
||||
public void onEvent(EventBusEvents.SaveAFile event) {
|
||||
File file = new File(sFilePath);
|
||||
if(!file.getName().isEmpty())
|
||||
new SaveFileTask(getActivity(), sFilePath, pageSystem.getAllText(mEditor.getText().toString()), SettingsFragment.sCurrentEncoding).execute();
|
||||
new SaveFileTask(getActivity(), sFilePath, pageSystem.getAllText(mEditor.getText().toString()), currentEncoding).execute();
|
||||
else {
|
||||
NewFileDetailsDialogFragment dialogFrag = NewFileDetailsDialogFragment.newInstance(pageSystem.getAllText(mEditor.getText().toString()), SettingsFragment.sCurrentEncoding);
|
||||
NewFileDetailsDialogFragment dialogFrag = NewFileDetailsDialogFragment.newInstance(pageSystem.getAllText(mEditor.getText().toString()), currentEncoding);
|
||||
dialogFrag.show(getFragmentManager().beginTransaction(), "dialog");
|
||||
}
|
||||
}
|
||||
@ -724,6 +728,7 @@ public class EditorFragment extends Fragment implements FindTextDialogFragment.S
|
||||
private boolean canSaveFile = false;
|
||||
private KeyListener keyListener;
|
||||
private int firstVisibleIndex = 0, firstColoredIndex = 0;
|
||||
private int deviceHeight;
|
||||
//endregion
|
||||
|
||||
//region CONSTRUCTOR
|
||||
@ -733,6 +738,8 @@ public class EditorFragment extends Fragment implements FindTextDialogFragment.S
|
||||
mChangeListener = new EditTextChangeListener();
|
||||
lineUtils = new LineUtils();
|
||||
|
||||
deviceHeight = getResources().getDisplayMetrics().heightPixels;
|
||||
|
||||
this.mPaintNumbers.setAntiAlias(true);
|
||||
this.mPaintNumbers.setDither(false);
|
||||
|
||||
@ -846,21 +853,23 @@ public class EditorFragment extends Fragment implements FindTextDialogFragment.S
|
||||
@Override
|
||||
public void onDraw(final Canvas canvas) {
|
||||
|
||||
if (SettingsFragment.sLineNumbers) {
|
||||
if (PreferenceHelper.getLineNumbers(getContext())) {
|
||||
if (lineCount != getLineCount()) {
|
||||
lineCount = getLineCount();
|
||||
|
||||
lineUtils.updateHasNewLineArray(editorInterface.getPageSystem().getStartingLine(), lineCount, getLayout(), getText().toString());
|
||||
}
|
||||
|
||||
int i = lineUtils.getFirstVisibleLine(editorInterface.getVerticalScrollView(), lineCount);
|
||||
int lastLine = lineUtils.getLastVisibleLine(i, lineCount);
|
||||
int editorHeight = getHeight();
|
||||
int i = lineUtils.getFirstVisibleLine(editorInterface.getVerticalScrollView(), editorHeight, lineCount);
|
||||
int lastLine = lineUtils.getLastVisibleLine(editorInterface.getVerticalScrollView(), editorHeight, lineCount, deviceHeight);
|
||||
boolean[] hasNewLineArray = lineUtils.getToCountLinesArray();
|
||||
int[] realLines = lineUtils.getRealLines();
|
||||
boolean wrapContent = PreferenceHelper.getWrapContent(getContext());
|
||||
|
||||
while (i < lastLine) {
|
||||
// if last line we count it anyway
|
||||
if (!SettingsFragment.sWrapContent
|
||||
if (!wrapContent
|
||||
|| hasNewLineArray[i]
|
||||
|| i == lastLine - 1) {
|
||||
if (i == lastLine - 1)
|
||||
@ -994,7 +1003,7 @@ public class EditorFragment extends Fragment implements FindTextDialogFragment.S
|
||||
|
||||
|
||||
|
||||
if(SettingsFragment.sColorSyntax)
|
||||
if(PreferenceHelper.getSyntaxHiglight(getContext()))
|
||||
setText(highlight(textToUpdate == null ? getEditableText() : Editable.Factory.getInstance().newEditable(textToUpdate)));
|
||||
else
|
||||
setText(textToUpdate == null ? getText().toString() : textToUpdate);
|
||||
@ -1022,12 +1031,18 @@ public class EditorFragment extends Fragment implements FindTextDialogFragment.S
|
||||
}
|
||||
|
||||
firstVisibleIndex = 0;
|
||||
if(getHeight() > 0)
|
||||
firstVisibleIndex = getLayout().getLineStart(getLineUtils().getFirstVisibleLine(editorInterface.getVerticalScrollView(), getHeight(), getLineCount()));
|
||||
int end = CHARS_TO_COLOR;
|
||||
int height = getHeight();
|
||||
|
||||
if(height > 0) {
|
||||
firstVisibleIndex = getLayout().getLineStart(getLineUtils().getFirstVisibleLine(editorInterface.getVerticalScrollView(), height, getLineCount()));
|
||||
end = getLayout().getLineStart(getLineUtils().getLastVisibleLine(editorInterface.getVerticalScrollView(), height, lineCount, deviceHeight));
|
||||
//int end = firstColoredIndex + CHARS_TO_COLOR;
|
||||
}
|
||||
|
||||
firstColoredIndex = firstVisibleIndex - (CHARS_TO_COLOR / 5);
|
||||
if (firstColoredIndex < 0)
|
||||
firstColoredIndex = 0;
|
||||
int end = firstColoredIndex + CHARS_TO_COLOR;
|
||||
if (end > editable.length())
|
||||
end = editable.length();
|
||||
|
||||
@ -1550,4 +1565,4 @@ public class EditorFragment extends Fragment implements FindTextDialogFragment.S
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
}
|
@ -22,23 +22,18 @@ package sharedcode.turboeditor.fragment;
|
||||
import android.app.AlertDialog;
|
||||
import android.app.Dialog;
|
||||
import android.app.DialogFragment;
|
||||
import android.content.DialogInterface;
|
||||
import android.os.Bundle;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.AdapterView;
|
||||
import android.widget.ArrayAdapter;
|
||||
import android.widget.CompoundButton;
|
||||
import android.widget.ListView;
|
||||
import android.widget.Switch;
|
||||
|
||||
import org.mozilla.universalchardet.Constants;
|
||||
|
||||
import sharedcode.turboeditor.R;
|
||||
import sharedcode.turboeditor.preferences.PreferenceHelper;
|
||||
import sharedcode.turboeditor.preferences.SettingsFragment;
|
||||
import sharedcode.turboeditor.util.SaveFileTask;
|
||||
|
||||
import org.mozilla.universalchardet.Constants;
|
||||
|
||||
public class EncodingDialogFragment extends DialogFragment implements AdapterView.OnItemClickListener {
|
||||
|
||||
|
@ -32,14 +32,13 @@ import android.widget.CompoundButton;
|
||||
import android.widget.EditText;
|
||||
import android.widget.Toast;
|
||||
|
||||
import sharedcode.turboeditor.R;
|
||||
|
||||
import sharedcode.turboeditor.util.SearchResult;
|
||||
|
||||
import java.util.LinkedList;
|
||||
import java.util.regex.Matcher;
|
||||
import java.util.regex.Pattern;
|
||||
|
||||
import sharedcode.turboeditor.R;
|
||||
import sharedcode.turboeditor.util.SearchResult;
|
||||
|
||||
// ...
|
||||
public class FindTextDialogFragment extends DialogFragment {
|
||||
|
||||
@ -91,30 +90,24 @@ public class FindTextDialogFragment extends DialogFragment {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onStart()
|
||||
{
|
||||
public void onStart() {
|
||||
super.onStart(); //super.onStart() is where dialog.show() is actually called on the underlying dialog, so we have to do it after this point
|
||||
AlertDialog d = (AlertDialog)getDialog();
|
||||
if(d != null)
|
||||
{
|
||||
AlertDialog d = (AlertDialog) getDialog();
|
||||
if (d != null) {
|
||||
Button positiveButton = (Button) d.getButton(Dialog.BUTTON_POSITIVE);
|
||||
positiveButton.setText(getString(R.string.find));
|
||||
positiveButton.setOnClickListener(new View.OnClickListener()
|
||||
{
|
||||
positiveButton.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v)
|
||||
{
|
||||
public void onClick(View v) {
|
||||
returnData();
|
||||
}
|
||||
});
|
||||
|
||||
Button negativeButton = (Button) d.getButton(Dialog.BUTTON_NEGATIVE);
|
||||
negativeButton.setText(getString(android.R.string.cancel));
|
||||
negativeButton.setOnClickListener(new View.OnClickListener()
|
||||
{
|
||||
negativeButton.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v)
|
||||
{
|
||||
public void onClick(View v) {
|
||||
dismiss();
|
||||
}
|
||||
});
|
||||
@ -122,7 +115,7 @@ public class FindTextDialogFragment extends DialogFragment {
|
||||
}
|
||||
|
||||
void returnData() {
|
||||
if(textToFind.getText().toString().isEmpty()) {
|
||||
if (textToFind.getText().toString().isEmpty()) {
|
||||
this.dismiss();
|
||||
} else {
|
||||
// we disable the okButton while we search
|
||||
@ -130,7 +123,11 @@ public class FindTextDialogFragment extends DialogFragment {
|
||||
}
|
||||
}
|
||||
|
||||
private class SearchTask extends AsyncTask<Void, Void, Void>{
|
||||
public interface SearchDialogInterface {
|
||||
void onSearchDone(SearchResult searchResult);
|
||||
}
|
||||
|
||||
private class SearchTask extends AsyncTask<Void, Void, Void> {
|
||||
|
||||
LinkedList<Integer> foundIndex;
|
||||
boolean foundSomething;
|
||||
@ -145,9 +142,9 @@ public class FindTextDialogFragment extends DialogFragment {
|
||||
Matcher matcher = null;
|
||||
foundSomething = false;
|
||||
|
||||
if(isRegex) {
|
||||
if (isRegex) {
|
||||
try {
|
||||
if(caseSensitive)
|
||||
if (caseSensitive)
|
||||
matcher = Pattern.compile(whatToSearch, Pattern.MULTILINE).matcher(allText);
|
||||
else
|
||||
matcher = Pattern.compile(whatToSearch, Pattern.CASE_INSENSITIVE | Pattern.MULTILINE).matcher(allText);
|
||||
@ -156,14 +153,14 @@ public class FindTextDialogFragment extends DialogFragment {
|
||||
}
|
||||
}
|
||||
|
||||
if(isRegex) {
|
||||
if (isRegex) {
|
||||
while (matcher.find()) {
|
||||
foundSomething = true;
|
||||
|
||||
foundIndex.add(matcher.start());
|
||||
}
|
||||
} else {
|
||||
if(caseSensitive == false) { // by default is case sensitive
|
||||
if (caseSensitive == false) { // by default is case sensitive
|
||||
whatToSearch = whatToSearch.toLowerCase();
|
||||
allText = allText.toLowerCase();
|
||||
}
|
||||
@ -183,15 +180,15 @@ public class FindTextDialogFragment extends DialogFragment {
|
||||
@Override
|
||||
protected void onPostExecute(Void aVoid) {
|
||||
super.onPostExecute(aVoid);
|
||||
if(foundSomething) {
|
||||
if (foundSomething) {
|
||||
// the class that called this Dialog should implement the SearchDialogIterface
|
||||
SearchDialogInterface searchDialogInterface;
|
||||
searchDialogInterface = ((SearchDialogInterface) getTargetFragment());
|
||||
if(searchDialogInterface == null)
|
||||
searchDialogInterface = ((SearchDialogInterface) getTargetFragment());
|
||||
if (searchDialogInterface == null)
|
||||
searchDialogInterface = ((SearchDialogInterface) getActivity());
|
||||
|
||||
// if who called this has not implemented the interface we return nothing
|
||||
if(searchDialogInterface == null)
|
||||
if (searchDialogInterface == null)
|
||||
return;
|
||||
// else we return positions and other things
|
||||
else {
|
||||
@ -206,8 +203,4 @@ public class FindTextDialogFragment extends DialogFragment {
|
||||
FindTextDialogFragment.this.dismiss();
|
||||
}
|
||||
}
|
||||
|
||||
public interface SearchDialogInterface {
|
||||
void onSearchDone(SearchResult searchResult);
|
||||
}
|
||||
}
|
@ -27,15 +27,14 @@ import android.view.ViewGroup;
|
||||
import android.widget.AdapterView;
|
||||
import android.widget.ListView;
|
||||
|
||||
import sharedcode.turboeditor.R;
|
||||
import sharedcode.turboeditor.adapter.AdapterDrawer;
|
||||
import sharedcode.turboeditor.util.EventBusEvents;
|
||||
import sharedcode.turboeditor.preferences.PreferenceHelper;
|
||||
|
||||
import java.io.File;
|
||||
import java.util.ArrayList;
|
||||
|
||||
import de.greenrobot.event.EventBus;
|
||||
import sharedcode.turboeditor.R;
|
||||
import sharedcode.turboeditor.adapter.AdapterDrawer;
|
||||
import sharedcode.turboeditor.preferences.PreferenceHelper;
|
||||
import sharedcode.turboeditor.util.EventBusEvents;
|
||||
|
||||
|
||||
public class NavigationDrawerListFragment extends Fragment implements AdapterView.OnItemClickListener, AdapterDrawer.Callbacks {
|
||||
|
@ -24,17 +24,13 @@ import android.app.Dialog;
|
||||
import android.app.DialogFragment;
|
||||
import android.content.DialogInterface;
|
||||
import android.os.Bundle;
|
||||
import android.view.KeyEvent;
|
||||
import android.view.View;
|
||||
import android.view.WindowManager;
|
||||
import android.view.inputmethod.EditorInfo;
|
||||
import android.widget.EditText;
|
||||
import android.widget.TextView;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
import sharedcode.turboeditor.R;
|
||||
import sharedcode.turboeditor.activity.PreferenceAbout;
|
||||
import sharedcode.turboeditor.preferences.PreferenceHelper;
|
||||
import sharedcode.turboeditor.util.SaveFileTask;
|
||||
|
||||
@ -72,7 +68,7 @@ public class NewFileDetailsDialogFragment extends DialogFragment {
|
||||
new DialogInterface.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(DialogInterface dialog, int which) {
|
||||
if(!mName.getText().toString().isEmpty() && !mFolder.getText().toString().isEmpty()) {
|
||||
if (!mName.getText().toString().isEmpty() && !mFolder.getText().toString().isEmpty()) {
|
||||
File file = new File(mFolder.getText().toString(), mName.getText().toString());
|
||||
new SaveFileTask(getActivity(), file.getPath(), getArguments().getString("fileText"), getArguments().getString("fileEncoding")).execute();
|
||||
}
|
||||
|
@ -25,21 +25,21 @@ import android.app.DialogFragment;
|
||||
import android.content.DialogInterface;
|
||||
import android.os.Bundle;
|
||||
|
||||
import sharedcode.turboeditor.R;
|
||||
import sharedcode.turboeditor.preferences.SettingsFragment;
|
||||
import sharedcode.turboeditor.util.SaveFileTask;
|
||||
|
||||
import org.apache.commons.io.FilenameUtils;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
import sharedcode.turboeditor.R;
|
||||
import sharedcode.turboeditor.util.SaveFileTask;
|
||||
|
||||
public class SaveFileDialogFragment extends DialogFragment {
|
||||
|
||||
public static SaveFileDialogFragment newInstance(String filePath, String text) {
|
||||
public static SaveFileDialogFragment newInstance(String filePath, String text, String encoding) {
|
||||
SaveFileDialogFragment frag = new SaveFileDialogFragment();
|
||||
Bundle args = new Bundle();
|
||||
args.putString("filePath", filePath);
|
||||
args.putString("text", text);
|
||||
args.putString("encoding", encoding);
|
||||
frag.setArguments(args);
|
||||
return frag;
|
||||
}
|
||||
@ -48,6 +48,7 @@ public class SaveFileDialogFragment extends DialogFragment {
|
||||
public Dialog onCreateDialog(Bundle savedInstanceState) {
|
||||
final String filePath = getArguments().getString("filePath");
|
||||
final String text = getArguments().getString("text");
|
||||
final String encoding = getArguments().getString("encoding");
|
||||
final String fileName = FilenameUtils.getName(filePath);
|
||||
final File file = new File(filePath);
|
||||
|
||||
@ -57,10 +58,10 @@ public class SaveFileDialogFragment extends DialogFragment {
|
||||
new DialogInterface.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(DialogInterface dialog, int which) {
|
||||
if(!fileName.isEmpty())
|
||||
new SaveFileTask(getActivity(), filePath, text, SettingsFragment.sCurrentEncoding).execute();
|
||||
if (!fileName.isEmpty())
|
||||
new SaveFileTask(getActivity(), filePath, text, encoding).execute();
|
||||
else {
|
||||
NewFileDetailsDialogFragment dialogFrag = NewFileDetailsDialogFragment.newInstance(text, SettingsFragment.sCurrentEncoding);
|
||||
NewFileDetailsDialogFragment dialogFrag = NewFileDetailsDialogFragment.newInstance(text, encoding);
|
||||
dialogFrag.show(getFragmentManager().beginTransaction(), "dialog");
|
||||
}
|
||||
}
|
||||
|
@ -0,0 +1,215 @@
|
||||
/*
|
||||
* Copyright (C) 2014 Vlad Mihalachi
|
||||
*
|
||||
* This file is part of Turbo Editor.
|
||||
*
|
||||
* Turbo Editor is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Turbo Editor is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package sharedcode.turboeditor.preferences;
|
||||
|
||||
import android.content.Context;
|
||||
import android.content.res.Configuration;
|
||||
import android.os.Build;
|
||||
import android.os.Bundle;
|
||||
import android.preference.ListPreference;
|
||||
import android.preference.Preference;
|
||||
import android.preference.PreferenceActivity;
|
||||
import android.preference.PreferenceFragment;
|
||||
import android.preference.PreferenceManager;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import de.greenrobot.event.EventBus;
|
||||
import sharedcode.turboeditor.R;
|
||||
import sharedcode.turboeditor.util.EventBusEvents;
|
||||
|
||||
/**
|
||||
* A {@link PreferenceActivity} that presents a set of application settings. On
|
||||
* handset devices, settings are presented as a single list. On tablets,
|
||||
* settings are split by category, with category headers shown to the left of
|
||||
* the list of settings.
|
||||
* <p/>
|
||||
* See <a href="http://developer.android.com/design/patterns/settings.html">
|
||||
* Android Design: Settings</a> for design guidelines and the <a
|
||||
* href="http://developer.android.com/guide/topics/ui/settings.html">Settings
|
||||
* API Guide</a> for more information on developing a Settings UI.
|
||||
*/
|
||||
public class ExtraSettingsActivity extends PreferenceActivity {
|
||||
/**
|
||||
* Determines whether to always show the simplified settings UI, where
|
||||
* settings are presented in a single list. When false, settings are shown
|
||||
* as a master/detail two-pane view on tablets. When true, a single pane is
|
||||
* shown on tablets.
|
||||
*/
|
||||
private static final boolean ALWAYS_SIMPLE_PREFS = true;
|
||||
boolean encodingChanged = false,
|
||||
themeChanged = false,
|
||||
keyboardSuggestionsChanged = false;
|
||||
/**
|
||||
* A preference value change listener that updates the preference's summary
|
||||
* to reflect its new value.
|
||||
*/
|
||||
private Preference.OnPreferenceChangeListener sBindPreferenceSummaryToValueListener = new Preference.OnPreferenceChangeListener() {
|
||||
@Override
|
||||
public boolean onPreferenceChange(Preference preference, Object value) {
|
||||
String stringValue = value.toString();
|
||||
|
||||
if (preference instanceof ListPreference) {
|
||||
// For list preferences, look up the correct display value in
|
||||
// the preference's 'entries' list.
|
||||
ListPreference listPreference = (ListPreference) preference;
|
||||
int index = listPreference.findIndexOfValue(stringValue);
|
||||
|
||||
// Set the summary to reflect the new value.
|
||||
preference.setSummary(
|
||||
index >= 0
|
||||
? listPreference.getEntries()[index]
|
||||
: null);
|
||||
|
||||
}
|
||||
switch (preference.getKey()) {
|
||||
case "light_theme":
|
||||
themeChanged = !themeChanged;
|
||||
break;
|
||||
case "suggestion_active":
|
||||
keyboardSuggestionsChanged = !keyboardSuggestionsChanged;
|
||||
break;
|
||||
case "editor_encoding":
|
||||
encodingChanged = true;
|
||||
break;
|
||||
|
||||
}
|
||||
return true;
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Helper method to determine if the device has an extra-large screen. For
|
||||
* example, 10" tablets are extra-large.
|
||||
*/
|
||||
private static boolean isXLargeTablet(Context context) {
|
||||
return (context.getResources().getConfiguration().screenLayout
|
||||
& Configuration.SCREENLAYOUT_SIZE_MASK) >= Configuration.SCREENLAYOUT_SIZE_XLARGE;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
boolean light = PreferenceHelper.getLightTheme(this);
|
||||
if (light) {
|
||||
setTheme(R.style.AppTheme_Light);
|
||||
} else {
|
||||
setTheme(R.style.AppTheme_Dark);
|
||||
}
|
||||
super.onCreate(savedInstanceState);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onPostCreate(Bundle savedInstanceState) {
|
||||
super.onPostCreate(savedInstanceState);
|
||||
|
||||
setupSimplePreferencesScreen();
|
||||
}
|
||||
|
||||
/**
|
||||
* Shows the simplified settings UI if the device configuration if the
|
||||
* device configuration dictates that a simplified, single-pane UI should be
|
||||
* shown.
|
||||
*/
|
||||
private void setupSimplePreferencesScreen() {
|
||||
if (!isSimplePreferences(this)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// In the simplified UI, fragments are not used at all and we instead
|
||||
// use the older PreferenceActivity APIs.
|
||||
|
||||
// Add 'general' preferences.
|
||||
addPreferencesFromResource(R.xml.extra_options);
|
||||
|
||||
// Bind the summaries of EditText/List/Dialog/Ringtone preferences to
|
||||
// their values. When their values change, their summaries are updated
|
||||
// to reflect the new value, per the Android Design guidelines.
|
||||
bindPreferenceSummaryToValue(findPreference("editor_encoding"));
|
||||
|
||||
String[] checkBoxPreferences = {"light_theme", "suggestion_active"};
|
||||
for (String key : checkBoxPreferences) {
|
||||
// Set the listener to watch for value changes.
|
||||
findPreference(key).setOnPreferenceChangeListener(sBindPreferenceSummaryToValueListener);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public boolean onIsMultiPane() {
|
||||
return isXLargeTablet(this) && !isSimplePreferences(this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Determines whether the simplified settings UI should be shown. This is
|
||||
* true if this is forced via {@link #ALWAYS_SIMPLE_PREFS}, or the device
|
||||
* doesn't have newer APIs like {@link PreferenceFragment}, or the device
|
||||
* doesn't have an extra-large screen. In these cases, a single-pane
|
||||
* "simplified" settings UI should be shown.
|
||||
*/
|
||||
private boolean isSimplePreferences(Context context) {
|
||||
return ALWAYS_SIMPLE_PREFS
|
||||
|| Build.VERSION.SDK_INT < Build.VERSION_CODES.HONEYCOMB
|
||||
|| !isXLargeTablet(context);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onDestroy() {
|
||||
List<EventBusEvents.APreferenceValueWasChanged.Type> listOfChanges = new ArrayList<>();
|
||||
if (themeChanged) {
|
||||
listOfChanges.add(EventBusEvents.APreferenceValueWasChanged.Type.THEME_CHANGE);
|
||||
}
|
||||
if (keyboardSuggestionsChanged) {
|
||||
listOfChanges.add(EventBusEvents.APreferenceValueWasChanged.Type.TEXT_SUGGESTIONS);
|
||||
}
|
||||
if (encodingChanged) {
|
||||
listOfChanges.add(EventBusEvents.APreferenceValueWasChanged.Type.ENCODING);
|
||||
}
|
||||
|
||||
|
||||
if (listOfChanges.size() > 0) {
|
||||
EventBus.getDefault().postSticky(new EventBusEvents.APreferenceValueWasChanged(listOfChanges));
|
||||
}
|
||||
super.onDestroy();
|
||||
}
|
||||
|
||||
/**
|
||||
* Binds a preference's summary to its value. More specifically, when the
|
||||
* preference's value is changed, its summary (line of text below the
|
||||
* preference title) is updated to reflect the value. The summary is also
|
||||
* immediately updated upon calling this method. The exact display format is
|
||||
* dependent on the type of preference.
|
||||
*
|
||||
* @see #sBindPreferenceSummaryToValueListener
|
||||
*/
|
||||
private void bindPreferenceSummaryToValue(Preference preference) {
|
||||
// Set the listener to watch for value changes.
|
||||
preference.setOnPreferenceChangeListener(sBindPreferenceSummaryToValueListener);
|
||||
|
||||
// Trigger the listener immediately with the preference's
|
||||
// current value.
|
||||
sBindPreferenceSummaryToValueListener.onPreferenceChange(preference,
|
||||
PreferenceManager
|
||||
.getDefaultSharedPreferences(preference.getContext())
|
||||
.getString(preference.getKey(), ""));
|
||||
}
|
||||
}
|
@ -105,6 +105,18 @@ public final class PreferenceHelper {
|
||||
return getPrefs(context).getBoolean("read_only", false);
|
||||
}
|
||||
|
||||
public static boolean getIgnoreBackButton(Context context) {
|
||||
return getPrefs(context).getBoolean("ignore_back_button", false);
|
||||
}
|
||||
|
||||
public static boolean getPageSystemEnabled(Context context) {
|
||||
return getPrefs(context).getBoolean("page_system_active", true);
|
||||
}
|
||||
|
||||
public static int getNumberOfAdsRequested(Context context) {
|
||||
return getPrefs(context).getInt("number_of_ads_requested", 0);
|
||||
}
|
||||
|
||||
// Setter methods
|
||||
|
||||
public static void setUseMonospace(Context context, boolean value) {
|
||||
@ -123,30 +135,14 @@ public final class PreferenceHelper {
|
||||
getEditor(context).putBoolean("editor_wrap_content", value).commit();
|
||||
}
|
||||
|
||||
public static void setLightTheme(Context context, boolean value) {
|
||||
getEditor(context).putBoolean("light_theme", value).commit();
|
||||
}
|
||||
|
||||
public static void setSuggestionActive(Context context, boolean value) {
|
||||
getEditor(context).putBoolean("suggestion_active", value).commit();
|
||||
}
|
||||
|
||||
public static void setAutoencoding(Context context, boolean value) {
|
||||
getEditor(context).putBoolean("autoencoding", value).commit();
|
||||
}
|
||||
|
||||
public static void setSendErrorReports(Context context, boolean value) {
|
||||
getEditor(context).putBoolean("send_error_reports", value).commit();
|
||||
}
|
||||
|
||||
public static void setLastDayAdShowed(Context context, int value) {
|
||||
getEditor(context).putInt("last_day_ad_showed", value).commit();
|
||||
}
|
||||
|
||||
public static void setEncoding(Context context, String value) {
|
||||
getEditor(context).putString("editor_encoding", value).commit();
|
||||
}
|
||||
|
||||
public static void setFontSize(Context context, int value) {
|
||||
getEditor(context).putInt("font_size", value).commit();
|
||||
}
|
||||
@ -163,12 +159,12 @@ public final class PreferenceHelper {
|
||||
getEditor(context).putBoolean("page_system_button_popup_shown", value).commit();
|
||||
}
|
||||
|
||||
public static void setAutoSave(Context context, boolean value) {
|
||||
getEditor(context).putBoolean("auto_save", value).commit();
|
||||
}
|
||||
|
||||
public static void setReadOnly(Context context, boolean value) {
|
||||
getEditor(context).putBoolean("read_only", value).commit();
|
||||
}
|
||||
|
||||
public static void setNumberOfAdsRequested(Context context, int value) {
|
||||
getEditor(context).putInt("number_of_ads_requested", value).commit();
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -27,59 +27,39 @@ import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.CheckBox;
|
||||
import android.widget.CheckedTextView;
|
||||
import android.widget.CompoundButton;
|
||||
import android.widget.Switch;
|
||||
import android.widget.TextView;
|
||||
|
||||
import sharedcode.turboeditor.R;
|
||||
import sharedcode.turboeditor.fragment.EncodingDialogFragment;
|
||||
import sharedcode.turboeditor.fragment.SeekbarDialogFragment;
|
||||
|
||||
import de.greenrobot.event.EventBus;
|
||||
import sharedcode.turboeditor.R;
|
||||
import sharedcode.turboeditor.fragment.SeekbarDialogFragment;
|
||||
import sharedcode.turboeditor.util.ProCheckUtils;
|
||||
|
||||
import static sharedcode.turboeditor.util.EventBusEvents.APreferenceValueWasChanged;
|
||||
import static sharedcode.turboeditor.util.EventBusEvents.APreferenceValueWasChanged.Type.AUTO_SAVE;
|
||||
import static sharedcode.turboeditor.util.EventBusEvents.APreferenceValueWasChanged.Type.ENCODING;
|
||||
import static sharedcode.turboeditor.util.EventBusEvents.APreferenceValueWasChanged.Type.FONT_SIZE;
|
||||
import static sharedcode.turboeditor.util.EventBusEvents.APreferenceValueWasChanged.Type.LINE_NUMERS;
|
||||
import static sharedcode.turboeditor.util.EventBusEvents.APreferenceValueWasChanged.Type.MONOSPACE;
|
||||
import static sharedcode.turboeditor.util.EventBusEvents.APreferenceValueWasChanged.Type.READ_ONLY;
|
||||
import static sharedcode.turboeditor.util.EventBusEvents.APreferenceValueWasChanged.Type.SYNTAX;
|
||||
import static sharedcode.turboeditor.util.EventBusEvents.APreferenceValueWasChanged.Type.TEXT_SUGGESTIONS;
|
||||
import static sharedcode.turboeditor.util.EventBusEvents.APreferenceValueWasChanged.Type.THEME_CHANGE;
|
||||
import static sharedcode.turboeditor.util.EventBusEvents.APreferenceValueWasChanged.Type.WRAP_CONTENT;
|
||||
|
||||
public class SettingsFragment extends Fragment implements EncodingDialogFragment.DialogListener, SeekbarDialogFragment.onSeekbarDialogDismissed {
|
||||
public class SettingsFragment extends Fragment implements SeekbarDialogFragment.onSeekbarDialogDismissed {
|
||||
|
||||
public static String sCurrentEncoding;
|
||||
// Editor Variables
|
||||
public static boolean sLineNumbers;
|
||||
public static boolean sColorSyntax;
|
||||
public static boolean sWrapContent;
|
||||
public static int sFontSize;
|
||||
public static boolean sUseMonospace;
|
||||
public static boolean sLightTheme;
|
||||
public static boolean sSuggestionsActive;
|
||||
public static boolean sAutoSave;
|
||||
public static boolean sReadOnly;
|
||||
public static boolean sSendErrorReports;
|
||||
private boolean sLineNumbers;
|
||||
private boolean sColorSyntax;
|
||||
private boolean sWrapContent;
|
||||
private boolean sUseMonospace;
|
||||
private boolean sReadOnly;
|
||||
|
||||
@Override
|
||||
public void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
SettingsFragment.sCurrentEncoding = PreferenceHelper.getEncoding(getActivity());
|
||||
SettingsFragment.sUseMonospace = PreferenceHelper.getUseMonospace(getActivity());
|
||||
SettingsFragment.sColorSyntax = PreferenceHelper.getSyntaxHiglight(getActivity());
|
||||
SettingsFragment.sWrapContent = PreferenceHelper.getWrapContent(getActivity());
|
||||
SettingsFragment.sLineNumbers = PreferenceHelper.getLineNumbers(getActivity());
|
||||
SettingsFragment.sFontSize = PreferenceHelper.getFontSize(getActivity());
|
||||
SettingsFragment.sSuggestionsActive = PreferenceHelper.getSuggestionActive(getActivity());
|
||||
SettingsFragment.sLightTheme = PreferenceHelper.getLightTheme(getActivity());
|
||||
SettingsFragment.sAutoSave = PreferenceHelper.getAutoSave(getActivity());
|
||||
SettingsFragment.sReadOnly = PreferenceHelper.getReadOnly(getActivity());
|
||||
SettingsFragment.sSendErrorReports = PreferenceHelper.getReadOnly(getActivity());
|
||||
sUseMonospace = PreferenceHelper.getUseMonospace(getActivity());
|
||||
sColorSyntax = PreferenceHelper.getSyntaxHiglight(getActivity());
|
||||
sWrapContent = PreferenceHelper.getWrapContent(getActivity());
|
||||
sLineNumbers = PreferenceHelper.getLineNumbers(getActivity());
|
||||
sReadOnly = PreferenceHelper.getReadOnly(getActivity());
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -92,25 +72,17 @@ public class SettingsFragment extends Fragment implements EncodingDialogFragment
|
||||
switchSyntax = (CheckBox) rootView.findViewById(R.id.switch_syntax);
|
||||
switchWrapContent = (CheckBox) rootView.findViewById(R.id.switch_wrap_content);
|
||||
switchMonospace = (CheckBox) rootView.findViewById(R.id.switch_monospace);
|
||||
switchLightTheme = (CheckBox) rootView.findViewById(R.id.switch_light_theme);
|
||||
switchSuggestionsActive = (CheckBox) rootView.findViewById(R.id.switch_suggestions_active);
|
||||
switchAutoSave = (CheckBox) rootView.findViewById(R.id.switch_auto_save);
|
||||
switchReadOnly = (CheckBox) rootView.findViewById(R.id.switch_read_only);
|
||||
switchSendErrorReports = (CheckBox) rootView.findViewById(R.id.switch_send_error_reports);
|
||||
|
||||
switchLineNumbers.setChecked(sLineNumbers);
|
||||
switchSyntax.setChecked(sColorSyntax);
|
||||
switchWrapContent.setChecked(sWrapContent);
|
||||
switchMonospace.setChecked(sUseMonospace);
|
||||
switchLightTheme.setChecked(sLightTheme);
|
||||
switchSuggestionsActive.setChecked(sSuggestionsActive);
|
||||
switchAutoSave.setChecked(sAutoSave);
|
||||
switchReadOnly.setChecked(sReadOnly);
|
||||
|
||||
|
||||
TextView encodingView, fontSizeView, goProView;
|
||||
encodingView = (TextView) rootView.findViewById(R.id.drawer_button_encoding);
|
||||
TextView fontSizeView, goProView, extraOptionsView;
|
||||
fontSizeView = (TextView) rootView.findViewById(R.id.drawer_button_font_size);
|
||||
extraOptionsView = (TextView) rootView.findViewById(R.id.drawer_button_extra_options);
|
||||
goProView = (TextView) rootView.findViewById(R.id.drawer_button_go_pro);
|
||||
|
||||
switchLineNumbers.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
|
||||
@ -151,33 +123,6 @@ public class SettingsFragment extends Fragment implements EncodingDialogFragment
|
||||
}
|
||||
});
|
||||
|
||||
switchLightTheme.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
|
||||
@Override
|
||||
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
|
||||
sLightTheme = isChecked;
|
||||
PreferenceHelper.setLightTheme(getActivity(), isChecked);
|
||||
EventBus.getDefault().post(new APreferenceValueWasChanged(THEME_CHANGE));
|
||||
}
|
||||
});
|
||||
|
||||
switchSuggestionsActive.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
|
||||
@Override
|
||||
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
|
||||
sSuggestionsActive = isChecked;
|
||||
PreferenceHelper.setSuggestionActive(getActivity(), isChecked);
|
||||
EventBus.getDefault().post(new APreferenceValueWasChanged(TEXT_SUGGESTIONS));
|
||||
}
|
||||
});
|
||||
|
||||
switchAutoSave.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
|
||||
@Override
|
||||
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
|
||||
sAutoSave = isChecked;
|
||||
PreferenceHelper.setAutoSave(getActivity(), isChecked);
|
||||
EventBus.getDefault().post(new APreferenceValueWasChanged(AUTO_SAVE));
|
||||
}
|
||||
});
|
||||
|
||||
switchReadOnly.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
|
||||
@Override
|
||||
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
|
||||
@ -187,23 +132,6 @@ public class SettingsFragment extends Fragment implements EncodingDialogFragment
|
||||
}
|
||||
});
|
||||
|
||||
switchSendErrorReports.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
|
||||
@Override
|
||||
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
|
||||
sSendErrorReports = isChecked;
|
||||
PreferenceHelper.setSendErrorReports(getActivity(), isChecked);
|
||||
}
|
||||
});
|
||||
|
||||
encodingView.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
EncodingDialogFragment dialogFrag = EncodingDialogFragment.newInstance();
|
||||
dialogFrag.setTargetFragment(SettingsFragment.this, 0);
|
||||
dialogFrag.show(getFragmentManager().beginTransaction(), "dialog");
|
||||
}
|
||||
});
|
||||
|
||||
fontSizeView.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
@ -217,6 +145,13 @@ public class SettingsFragment extends Fragment implements EncodingDialogFragment
|
||||
}
|
||||
});
|
||||
|
||||
extraOptionsView.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
startActivity(new Intent(getActivity(), ExtraSettingsActivity.class));
|
||||
}
|
||||
});
|
||||
|
||||
goProView.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
@ -232,33 +167,10 @@ public class SettingsFragment extends Fragment implements EncodingDialogFragment
|
||||
return rootView;
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public void onEncodingSelected(String value) {
|
||||
PreferenceHelper.setEncoding(getActivity(), value);
|
||||
EventBus.getDefault().post(new APreferenceValueWasChanged(ENCODING));
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onSeekbarDialogDismissed(SeekbarDialogFragment.Actions action, int value) {
|
||||
sFontSize = value;
|
||||
PreferenceHelper.setFontSize(getActivity(), value);
|
||||
EventBus.getDefault().post(new APreferenceValueWasChanged(FONT_SIZE));
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* This interface must be implemented by activities that contain this
|
||||
* fragment to allow an interaction in this fragment to be communicated
|
||||
* to the activity and potentially other fragments contained in that
|
||||
* activity.
|
||||
* <p/>
|
||||
* See the Android Training lesson <a href=
|
||||
* "http://developer.android.com/training/basics/fragments/communicating.html"
|
||||
* >Communicating with Other Fragments</a> for more information.
|
||||
*/
|
||||
public interface OnFragmentInteractionListener {
|
||||
// TODO: Update argument type and name
|
||||
public void onFragmentInteraction(Uri uri);
|
||||
}
|
||||
}
|
||||
|
@ -19,13 +19,14 @@
|
||||
|
||||
package sharedcode.turboeditor.util;
|
||||
|
||||
import android.widget.ScrollView;
|
||||
|
||||
import sharedcode.turboeditor.views.GoodScrollView;
|
||||
|
||||
public interface EditorInterface {
|
||||
public GoodScrollView getVerticalScrollView();
|
||||
public String getFilePath();
|
||||
public PageSystem getPageSystem();
|
||||
public void updateTextSyntax();
|
||||
}
|
||||
public GoodScrollView getVerticalScrollView();
|
||||
|
||||
public String getFilePath();
|
||||
|
||||
public PageSystem getPageSystem();
|
||||
|
||||
public void updateTextSyntax();
|
||||
}
|
@ -20,6 +20,7 @@
|
||||
package sharedcode.turboeditor.util;
|
||||
|
||||
import java.io.File;
|
||||
import java.util.List;
|
||||
|
||||
public class EventBusEvents {
|
||||
public static class CannotOpenAFile {
|
||||
@ -65,21 +66,28 @@ public class EventBusEvents {
|
||||
|
||||
public static class APreferenceValueWasChanged {
|
||||
private Type type;
|
||||
private List<Type> types;
|
||||
|
||||
public APreferenceValueWasChanged(Type type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public Type getType() {
|
||||
return type;
|
||||
public APreferenceValueWasChanged(List<Type> types) {
|
||||
this.types = types;
|
||||
}
|
||||
|
||||
public void setType(Type type) {
|
||||
this.type = type;
|
||||
public boolean hasType(Type value) {
|
||||
|
||||
if (type != null) {
|
||||
return value == type;
|
||||
} else {
|
||||
return types.contains(value);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public enum Type {
|
||||
FONT_SIZE, ENCODING, SYNTAX, WRAP_CONTENT, MONOSPACE, LINE_NUMERS, THEME_CHANGE, TEXT_SUGGESTIONS, AUTO_SAVE, READ_ONLY
|
||||
FONT_SIZE, ENCODING, SYNTAX, WRAP_CONTENT, MONOSPACE, LINE_NUMERS, THEME_CHANGE, TEXT_SUGGESTIONS, READ_ONLY
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -48,9 +48,8 @@ public class LineUtils {
|
||||
return line;
|
||||
}
|
||||
|
||||
public int getLastVisibleLine(int firstVisibleLine, int lineCount) {
|
||||
int line;
|
||||
line = firstVisibleLine + 150;
|
||||
public int getLastVisibleLine(ScrollView scrollView, int childHeight, int lineCount, int deviceHeight) {
|
||||
int line = ((scrollView.getScrollY() + deviceHeight) * lineCount) / childHeight;
|
||||
if (line > lineCount) line = lineCount;
|
||||
return line;
|
||||
}
|
||||
|
@ -19,24 +19,21 @@
|
||||
|
||||
package sharedcode.turboeditor.util;
|
||||
|
||||
import android.content.Context;
|
||||
|
||||
import java.util.LinkedList;
|
||||
import java.util.List;
|
||||
|
||||
import sharedcode.turboeditor.preferences.PreferenceHelper;
|
||||
|
||||
public class PageSystem {
|
||||
|
||||
public interface PageSystemInterface {
|
||||
void onPageChanged(int page);
|
||||
}
|
||||
|
||||
private List<String> pages;
|
||||
|
||||
private int[] startingLines;
|
||||
|
||||
private int currentPage = 0;
|
||||
|
||||
private PageSystemInterface pageSystemInterface;
|
||||
|
||||
public PageSystem(PageSystemInterface pageSystemInterface, String text) {
|
||||
public PageSystem(Context context, PageSystemInterface pageSystemInterface, String text) {
|
||||
this.pageSystemInterface = pageSystemInterface;
|
||||
pages = new LinkedList<>();
|
||||
|
||||
@ -46,8 +43,9 @@ public class PageSystem {
|
||||
int to;
|
||||
int indexOfReturn;
|
||||
int textLenght = text.length();
|
||||
if(textLenght > maxLenghtInOnePage) {
|
||||
while (i < textLenght) {
|
||||
boolean pageSystemEnabled = PreferenceHelper.getPageSystemEnabled(context);
|
||||
if (pageSystemEnabled && textLenght > maxLenghtInOnePage) {
|
||||
while (i < textLenght && pageSystemEnabled) {
|
||||
to = i + charForPage;
|
||||
indexOfReturn = text.indexOf("\n", to);
|
||||
if (indexOfReturn > to) to = indexOfReturn;
|
||||
@ -78,8 +76,8 @@ public class PageSystem {
|
||||
public String getTextOfNextPages(boolean includeCurrent, int nOfPages) {
|
||||
StringBuilder stringBuilder = new StringBuilder();
|
||||
int i;
|
||||
for(i = includeCurrent ? 0 : 1; i < nOfPages; i++){
|
||||
if(pages.size() > (currentPage + i)) {
|
||||
for (i = includeCurrent ? 0 : 1; i < nOfPages; i++) {
|
||||
if (pages.size() > (currentPage + i)) {
|
||||
stringBuilder.append(pages.get(currentPage + 1));
|
||||
}
|
||||
}
|
||||
@ -92,25 +90,25 @@ public class PageSystem {
|
||||
}
|
||||
|
||||
public void nextPage() {
|
||||
if(!canReadNextPage()) return;
|
||||
if (!canReadNextPage()) return;
|
||||
goToPage(currentPage + 1);
|
||||
}
|
||||
|
||||
public void prevPage() {
|
||||
if(!canReadPrevPage()) return;
|
||||
if (!canReadPrevPage()) return;
|
||||
goToPage(currentPage - 1);
|
||||
}
|
||||
|
||||
public void goToPage(int page) {
|
||||
if(page >= pages.size()) page = pages.size() - 1;
|
||||
if(page < 0) page = 0;
|
||||
if (page >= pages.size()) page = pages.size() - 1;
|
||||
if (page < 0) page = 0;
|
||||
boolean shouldUpdateLines = page > currentPage && canReadNextPage();
|
||||
if(shouldUpdateLines) {
|
||||
if (shouldUpdateLines) {
|
||||
String text = getCurrentPageText();
|
||||
int nOfNewLineNow = (text.length() - text.replace("\n", "").length()) + 1; // normally the last line is not counted so we have to add 1
|
||||
int nOfNewLineBefore = startingLines[currentPage+1] - startingLines[currentPage];
|
||||
int difference = nOfNewLineNow - nOfNewLineBefore;
|
||||
updateStartingLines(currentPage+1, difference);
|
||||
int nOfNewLineBefore = startingLines[currentPage + 1] - startingLines[currentPage];
|
||||
int difference = nOfNewLineNow - nOfNewLineBefore;
|
||||
updateStartingLines(currentPage + 1, difference);
|
||||
}
|
||||
currentPage = page;
|
||||
pageSystemInterface.onPageChanged(page);
|
||||
@ -122,8 +120,8 @@ public class PageSystem {
|
||||
int nOfNewLines;
|
||||
String text;
|
||||
startingLines[0] = 0;
|
||||
for(i = 1; i < pages.size(); i++) {
|
||||
text = pages.get(i-1);
|
||||
for (i = 1; i < pages.size(); i++) {
|
||||
text = pages.get(i - 1);
|
||||
nOfNewLines = text.length() - text.replace("\n", "").length() + 1;
|
||||
startingLine = startingLines[i - 1] + nOfNewLines;
|
||||
startingLines[i] = startingLine;
|
||||
@ -131,11 +129,11 @@ public class PageSystem {
|
||||
}
|
||||
|
||||
public void updateStartingLines(int fromPage, int difference) {
|
||||
if(difference == 0)
|
||||
if (difference == 0)
|
||||
return;
|
||||
int i;
|
||||
if(fromPage < 1) fromPage = 1;
|
||||
for(i = fromPage; i < pages.size(); i++) {
|
||||
if (fromPage < 1) fromPage = 1;
|
||||
for (i = fromPage; i < pages.size(); i++) {
|
||||
startingLines[i] += difference;
|
||||
}
|
||||
}
|
||||
@ -144,13 +142,15 @@ public class PageSystem {
|
||||
return pages.size() - 1;
|
||||
}
|
||||
|
||||
public int getCurrentPage() { return currentPage; }
|
||||
public int getCurrentPage() {
|
||||
return currentPage;
|
||||
}
|
||||
|
||||
public String getAllText(String currentPageText) {
|
||||
pages.set(currentPage, currentPageText);
|
||||
int i;
|
||||
StringBuilder allText = new StringBuilder();
|
||||
for(i = 0; i < pages.size(); i++) {
|
||||
for (i = 0; i < pages.size(); i++) {
|
||||
allText.append(pages.get(i)).append("\n");
|
||||
}
|
||||
return allText.toString();
|
||||
@ -163,4 +163,8 @@ public class PageSystem {
|
||||
public boolean canReadPrevPage() {
|
||||
return currentPage >= 1;
|
||||
}
|
||||
|
||||
public interface PageSystemInterface {
|
||||
void onPageChanged(int page);
|
||||
}
|
||||
}
|
||||
|
@ -24,21 +24,20 @@ import android.os.Handler;
|
||||
import android.view.View;
|
||||
|
||||
import com.faizmalkani.floatingactionbutton.FloatingActionButton;
|
||||
|
||||
import sharedcode.turboeditor.R;
|
||||
|
||||
public class PageSystemButtons {
|
||||
|
||||
private static final int TIME_TO_SHOW_FABS = 2000;
|
||||
|
||||
public interface PageButtonsInterface {
|
||||
public void nextPageClicked();
|
||||
public void prevPageClicked();
|
||||
public void pageSystemButtonLongClicked();
|
||||
|
||||
public boolean canReadNextPage();
|
||||
public boolean canReadPrevPage();
|
||||
}
|
||||
|
||||
final Handler handler = new Handler();
|
||||
final Runnable runnable = new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
PageSystemButtons.this.next.setVisibility(View.GONE);
|
||||
PageSystemButtons.this.prev.setVisibility(View.GONE);
|
||||
}
|
||||
};
|
||||
FloatingActionButton prev, next;
|
||||
PageButtonsInterface pageButtonsInterface;
|
||||
|
||||
@ -53,10 +52,10 @@ public class PageSystemButtons {
|
||||
this.prev.setColor(context.getResources().getColor(R.color.fab_light));
|
||||
this.prev.setDrawable(context.getResources().getDrawable(R.drawable.ic_keyboard_arrow_left));
|
||||
|
||||
if(pageButtonsInterface.canReadNextPage())
|
||||
if (pageButtonsInterface.canReadNextPage())
|
||||
next.setVisibility(View.VISIBLE);
|
||||
|
||||
if(pageButtonsInterface.canReadPrevPage())
|
||||
if (pageButtonsInterface.canReadPrevPage())
|
||||
prev.setVisibility(View.VISIBLE);
|
||||
|
||||
this.next.setOnClickListener(new View.OnClickListener() {
|
||||
@ -90,23 +89,14 @@ public class PageSystemButtons {
|
||||
});
|
||||
}
|
||||
|
||||
final Handler handler = new Handler();
|
||||
final Runnable runnable = new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
PageSystemButtons.this.next.setVisibility(View.GONE);
|
||||
PageSystemButtons.this.prev.setVisibility(View.GONE);
|
||||
}
|
||||
};
|
||||
|
||||
public void updateVisibility(boolean autoHide) {
|
||||
|
||||
if(pageButtonsInterface.canReadNextPage())
|
||||
if (pageButtonsInterface.canReadNextPage())
|
||||
PageSystemButtons.this.next.setVisibility(View.VISIBLE);
|
||||
else
|
||||
PageSystemButtons.this.next.setVisibility(View.GONE);
|
||||
|
||||
if(pageButtonsInterface.canReadPrevPage())
|
||||
if (pageButtonsInterface.canReadPrevPage())
|
||||
PageSystemButtons.this.prev.setVisibility(View.VISIBLE);
|
||||
else
|
||||
PageSystemButtons.this.prev.setVisibility(View.GONE);
|
||||
@ -121,7 +111,7 @@ public class PageSystemButtons {
|
||||
else
|
||||
prev.hideFab();*/
|
||||
|
||||
if(autoHide) {
|
||||
if (autoHide) {
|
||||
handler.removeCallbacks(runnable);
|
||||
handler.postDelayed(runnable, TIME_TO_SHOW_FABS);
|
||||
} else {
|
||||
@ -129,4 +119,16 @@ public class PageSystemButtons {
|
||||
}
|
||||
}
|
||||
|
||||
public interface PageButtonsInterface {
|
||||
public void nextPageClicked();
|
||||
|
||||
public void prevPageClicked();
|
||||
|
||||
public void pageSystemButtonLongClicked();
|
||||
|
||||
public boolean canReadNextPage();
|
||||
|
||||
public boolean canReadPrevPage();
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -69,9 +69,9 @@ public class Patterns {
|
||||
"\\b(int|float|long|complex|str|unicode|list|tuple|bytearray|buffer|xrange|set|frozenset|dict|bool)|(True|False|None|self|NotImplemented|Ellipsis|__debug__|__file__)|(and|del|from|not|while|as|elif|global|or|with|assert|else|if|pass|yield|break|except|import|print|class|exec|in|raise|continue|finally|is|return|def|for|lambda|try)|(ArithmeticError|AssertionError|AttributeError|BaseException|DeprecationWarning|EnvironmentError|EOFError|Exception|FloatingPointError|FutureWarning|GeneratorExit|IOError|ImportError|ImportWarning|IndexError|KeyError|KeyboardInterrupt|LookupError|MemoryError|NameError|NotImplementedError|OSError|OverflowError|PendingDeprecationWarning|ReferenceError|RuntimeError|RuntimeWarning|StandardError|StopIteration|SyntaxError|SyntaxWarning|SystemError|SystemExit|TypeError|UnboundLocalError|UserWarning|UnicodeError|UnicodeWarning|UnicodeEncodeError|UnicodeDecodeError|UnicodeTranslateError|ValueError|Warning|WindowsError|ZeroDivisionError)\\b", Pattern.CASE_INSENSITIVE);
|
||||
|
||||
public static final Pattern LUA_KEYWORDS = Pattern.compile(
|
||||
"@[A-Za-z0-9_\\.]*|\\b(local|global|boolean|number|userdata)\\b|\\b(true|false|nil)\\b|\\b(return|then|while|and|break|do|else|elseif|end|for|function|if|in|not|or|repeat|until|thread|table)\\b" +
|
||||
"|(?i)\\b(editsetText|editText|inkey|touch|system.exit|system.expCall|system.getAppPath|system.getCardMnt|system.getSec|system.impCallActionSend|system.impCallActionView|system.setrun|system.setScreen|system.version|El_Psy_Congroo|canvas.drawCircle|canvas.drawCls|canvas.drawLine|canvas.drawRect|canvas.getBmpSize|canvas.getColor|canvas.getg|canvas.getviewSize|canvas.loadBmp|canvas.putCircle|canvas.putCls|canvas.putflush|canvas.putg|canvas.putLine|canvas.putRect|canvas.putrotg|canvas.putWork|canvas.saveBmp|canvas.setMainBmp|canvas.setWorkBmp|canvas.workCls|canvas.workflush|color|canvas.drawText|canvas.drawTextBox|canvas.drawTextCenter|canvas.drawTextRotate|canvas.putText|canvas.putTextBox|canvas.putTextRotate|http.addHeader|http.addParam|http.clrHeader|http.clrParam|http.get|http.post|http.setContentType|http.setPostFile|http.status|dialog|item.add|item.check|item.clear|item.list|item.radio|toast|sensor.getAccel|sensor.setdevAccel|sensor.setdevMagnet|sensor.setdevOrient|sensor.getGdirection|sensor.getMagnet|sensor.getOrient|sound.beep|sound.isPlay|sound.pause|sound.restart|sound.setSoundFile|sound.start|sound.stop|zip.addFile|zip.exec|zip.status|sock.close|sock.connectOpen|sock.getAddress|sock.listenOpen|sock.recv|sock.send|sprite.clear|sprite.define|sprite.init|sprite.move|sprite.put)\\b" +
|
||||
"|(?i)\\b(assert|collectgarbage|coroutine.create|coroutine.resume|coroutine.running|coroutine.status|coroutine.wrap|coroutine.yield|debug.debug|debug.getfenv|debug.gethook|debug.getinfo|debug.getlocal|debug.getmetatable|debug.getregistry|debug.getupvalue|debug.setfenv|debug.sethook|debug.setlocal|debug.setmetatable|debug.setupvalue|debug.traceback|dofile|error|file:close|file:flush|file:lines|file:read|file:seek|file:setvbuf|file:write|getfenv|getmetatable|io.close|io.flush|io.input|io.lines|io.open|io.output|io.popen|io.read|io.tmpfile|io.type|io.write|ipairs|load|loadfile|loadstring|math.abs|math.acos|math.asin|math.atan2|math.atan|math.ceil|math.cosh|math.cos|math.deg|math.exp|math.floor|math.fmod|math.frexp|math.ldexp|math.log10|math.log|math.max|math.min|math.modf|math.pow|math.rad|math.random|math.randomseed|math.sinh|math.sin|math.sqrt|math.tanh|math.tan|module|next|os.clock|os.date|os.difftime|os.execute|os.exit|os.getenv|os.remove|os.rename|os.setlocale|os.time|os.tmpname|package.cpath|package.loaded|package.loadlib|package.path|package.preload|package.seeal|pairs|pcall|print|rawequal|rawget|rawset|require|select|setfenv|setmetatable|string.byte|string.char|string.dump|string.find|string.format|string.gmatch|string.gsub|string.len|string.lower|string.match|string.rep|string.reverse|string.sub|string.upper|table.concat|table.insert|table.maxn|table.remove|table.sort|tonumber|tostring|type|unpack|xpcall)\\b"
|
||||
"@[A-Za-z0-9_\\.]*|\\b(local|global|boolean|number|userdata)\\b|\\b(true|false|nil)\\b|\\b(return|then|while|and|break|do|else|elseif|end|for|function|if|in|not|or|repeat|until|thread|table)\\b" +
|
||||
"|(?i)\\b(editsetText|editText|inkey|touch|system.exit|system.expCall|system.getAppPath|system.getCardMnt|system.getSec|system.impCallActionSend|system.impCallActionView|system.setrun|system.setScreen|system.version|El_Psy_Congroo|canvas.drawCircle|canvas.drawCls|canvas.drawLine|canvas.drawRect|canvas.getBmpSize|canvas.getColor|canvas.getg|canvas.getviewSize|canvas.loadBmp|canvas.putCircle|canvas.putCls|canvas.putflush|canvas.putg|canvas.putLine|canvas.putRect|canvas.putrotg|canvas.putWork|canvas.saveBmp|canvas.setMainBmp|canvas.setWorkBmp|canvas.workCls|canvas.workflush|color|canvas.drawText|canvas.drawTextBox|canvas.drawTextCenter|canvas.drawTextRotate|canvas.putText|canvas.putTextBox|canvas.putTextRotate|http.addHeader|http.addParam|http.clrHeader|http.clrParam|http.get|http.post|http.setContentType|http.setPostFile|http.status|dialog|item.add|item.check|item.clear|item.list|item.radio|toast|sensor.getAccel|sensor.setdevAccel|sensor.setdevMagnet|sensor.setdevOrient|sensor.getGdirection|sensor.getMagnet|sensor.getOrient|sound.beep|sound.isPlay|sound.pause|sound.restart|sound.setSoundFile|sound.start|sound.stop|zip.addFile|zip.exec|zip.status|sock.close|sock.connectOpen|sock.getAddress|sock.listenOpen|sock.recv|sock.send|sprite.clear|sprite.define|sprite.init|sprite.move|sprite.put)\\b" +
|
||||
"|(?i)\\b(assert|collectgarbage|coroutine.create|coroutine.resume|coroutine.running|coroutine.status|coroutine.wrap|coroutine.yield|debug.debug|debug.getfenv|debug.gethook|debug.getinfo|debug.getlocal|debug.getmetatable|debug.getregistry|debug.getupvalue|debug.setfenv|debug.sethook|debug.setlocal|debug.setmetatable|debug.setupvalue|debug.traceback|dofile|error|file:close|file:flush|file:lines|file:read|file:seek|file:setvbuf|file:write|getfenv|getmetatable|io.close|io.flush|io.input|io.lines|io.open|io.output|io.popen|io.read|io.tmpfile|io.type|io.write|ipairs|load|loadfile|loadstring|math.abs|math.acos|math.asin|math.atan2|math.atan|math.ceil|math.cosh|math.cos|math.deg|math.exp|math.floor|math.fmod|math.frexp|math.ldexp|math.log10|math.log|math.max|math.min|math.modf|math.pow|math.rad|math.random|math.randomseed|math.sinh|math.sin|math.sqrt|math.tanh|math.tan|module|next|os.clock|os.date|os.difftime|os.execute|os.exit|os.getenv|os.remove|os.rename|os.setlocale|os.time|os.tmpname|package.cpath|package.loaded|package.loadlib|package.path|package.preload|package.seeal|pairs|pcall|print|rawequal|rawget|rawset|require|select|setfenv|setmetatable|string.byte|string.char|string.dump|string.find|string.format|string.gmatch|string.gsub|string.len|string.lower|string.match|string.rep|string.reverse|string.sub|string.upper|table.concat|table.insert|table.maxn|table.remove|table.sort|tonumber|tostring|type|unpack|xpcall)\\b"
|
||||
);
|
||||
|
||||
public static final Pattern PHP_VARIABLES = Pattern.compile("\\$\\s*(\\w+)");
|
||||
|
@ -26,9 +26,9 @@ public class ProCheckUtils {
|
||||
|
||||
String packageName = context.getPackageName();
|
||||
|
||||
if(Constants.FOR_AMAZON)
|
||||
if (Constants.FOR_AMAZON)
|
||||
return true;
|
||||
else if(packageName.equals("com.maskyn.fileeditorpro"))
|
||||
else if (packageName.equals("com.maskyn.fileeditorpro"))
|
||||
return true;
|
||||
else
|
||||
return false;
|
||||
|
@ -23,8 +23,6 @@ import android.content.Context;
|
||||
import android.os.AsyncTask;
|
||||
import android.widget.Toast;
|
||||
|
||||
import sharedcode.turboeditor.R;
|
||||
|
||||
import org.sufficientlysecure.rootcommands.Shell;
|
||||
import org.sufficientlysecure.rootcommands.Toolbox;
|
||||
|
||||
@ -33,6 +31,7 @@ import java.io.IOException;
|
||||
import java.util.concurrent.TimeoutException;
|
||||
|
||||
import de.greenrobot.event.EventBus;
|
||||
import sharedcode.turboeditor.R;
|
||||
|
||||
public class SaveFileTask extends AsyncTask<Void, Void, Void> {
|
||||
|
||||
@ -100,7 +99,7 @@ public class SaveFileTask extends AsyncTask<Void, Void, Void> {
|
||||
protected void onPostExecute(final Void aVoid) {
|
||||
super.onPostExecute(aVoid);
|
||||
Toast.makeText(context, message, Toast.LENGTH_LONG).show();
|
||||
if(message.equals(positiveMessage))
|
||||
if (message.equals(positiveMessage))
|
||||
EventBus.getDefault().post(new EventBusEvents.SavedAFile(filePath));
|
||||
}
|
||||
}
|
@ -38,7 +38,7 @@ public class SearchResult {
|
||||
public void doneReplace() {
|
||||
foundIndex.remove(index);
|
||||
int i;
|
||||
for(i = index; i < foundIndex.size(); i++) {
|
||||
for (i = index; i < foundIndex.size(); i++) {
|
||||
foundIndex.set(i, foundIndex.get(i) + textToReplace.length() - textLength);
|
||||
}
|
||||
index--; // an element was removed so we decrease the index
|
||||
|
@ -21,11 +21,13 @@ package sharedcode.turboeditor.views;
|
||||
|
||||
import android.content.Context;
|
||||
import android.util.AttributeSet;
|
||||
import android.view.View;
|
||||
import android.widget.ScrollView;
|
||||
|
||||
public class GoodScrollView extends ScrollView {
|
||||
|
||||
public ScrollInterface scrollInterface;
|
||||
int lastY;
|
||||
|
||||
public GoodScrollView(Context context) {
|
||||
super(context);
|
||||
@ -39,24 +41,33 @@ public class GoodScrollView extends ScrollView {
|
||||
super(context, attrs, defStyle);
|
||||
}
|
||||
|
||||
public interface ScrollInterface {
|
||||
public void onScrollChanged(int l, int t, int oldl, int oldt);
|
||||
}
|
||||
|
||||
public void setScrollInterface(ScrollInterface scrollInterface) {
|
||||
this.scrollInterface = scrollInterface;
|
||||
}
|
||||
|
||||
int lastY;
|
||||
|
||||
@Override
|
||||
protected void onScrollChanged(int l, int t, int oldl, int oldt) {
|
||||
super.onScrollChanged(l, t, oldl, oldt);
|
||||
if(scrollInterface == null) return;
|
||||
if(Math.abs(lastY - t) > 50){
|
||||
lastY = t;
|
||||
scrollInterface.onScrollChanged(l, t, oldl, oldt);
|
||||
}
|
||||
if (scrollInterface == null) return;
|
||||
|
||||
|
||||
|
||||
if (Math.abs(lastY - t) > 100) {
|
||||
lastY = t;
|
||||
scrollInterface.onScrollChanged(l, t, oldl, oldt);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public boolean hasReachedBottom(){
|
||||
View firstChild = getChildAt(getChildCount()-1);
|
||||
|
||||
int diff = (firstChild.getBottom()-(getHeight()+getScrollY()+firstChild.getTop()));// Calculate the scrolldiff
|
||||
return diff <= 0;
|
||||
}
|
||||
|
||||
|
||||
public interface ScrollInterface {
|
||||
public void onScrollChanged(int l, int t, int oldl, int oldt);
|
||||
}
|
||||
}
|
||||
|
@ -143,71 +143,6 @@
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/line_dimension"/>
|
||||
|
||||
<CheckBox
|
||||
android:button="@null"
|
||||
android:drawableRight="?android:attr/listChoiceIndicatorMultiple"
|
||||
android:gravity="center_vertical"
|
||||
android:checkMark="?android:attr/listChoiceIndicatorMultiple"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="56dp"
|
||||
android:text="@string/light_theme"
|
||||
android:textAllCaps="true"
|
||||
android:textSize="12sp"
|
||||
android:id="@id/switch_light_theme"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:paddingEnd="16dp"
|
||||
android:paddingStart="16dp"
|
||||
android:paddingLeft="16dp"
|
||||
android:paddingRight="16dp"
|
||||
android:textColor="@color/navigation_drawer_button_text_color_inverted"/>
|
||||
|
||||
<View
|
||||
android:background="@color/divider_inverted"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/line_dimension"/>
|
||||
|
||||
<CheckBox android:button="@null" android:drawableRight="?android:attr/listChoiceIndicatorMultiple"
|
||||
android:gravity="center_vertical"
|
||||
android:checkMark="?android:attr/listChoiceIndicatorMultiple"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="56dp"
|
||||
android:text="@string/keyboard_suggestions_and_swipe"
|
||||
android:textAllCaps="true"
|
||||
android:textSize="12sp"
|
||||
android:id="@id/switch_suggestions_active"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:paddingEnd="16dp"
|
||||
android:paddingStart="16dp"
|
||||
android:paddingLeft="16dp"
|
||||
android:paddingRight="16dp"
|
||||
android:textColor="@color/navigation_drawer_button_text_color_inverted"/>
|
||||
|
||||
<View
|
||||
android:background="@color/divider_inverted"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/line_dimension"/>
|
||||
|
||||
<CheckBox android:button="@null" android:drawableRight="?android:attr/listChoiceIndicatorMultiple"
|
||||
android:gravity="center_vertical"
|
||||
android:checkMark="?android:attr/listChoiceIndicatorMultiple"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="56dp"
|
||||
android:text="@string/auto_save"
|
||||
android:textAllCaps="true"
|
||||
android:textSize="12sp"
|
||||
android:id="@id/switch_auto_save"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:paddingEnd="16dp"
|
||||
android:paddingStart="16dp"
|
||||
android:paddingLeft="16dp"
|
||||
android:paddingRight="16dp"
|
||||
android:textColor="@color/navigation_drawer_button_text_color_inverted"/>
|
||||
|
||||
<View
|
||||
android:background="@color/divider_inverted"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/line_dimension"/>
|
||||
|
||||
<CheckBox android:button="@null" android:drawableRight="?android:attr/listChoiceIndicatorMultiple"
|
||||
android:gravity="center_vertical"
|
||||
android:checkMark="?android:attr/listChoiceIndicatorMultiple"
|
||||
@ -224,43 +159,8 @@
|
||||
android:paddingRight="16dp"
|
||||
android:textColor="@color/navigation_drawer_button_text_color_inverted"/>
|
||||
|
||||
<CheckBox
|
||||
android:button="@null"
|
||||
android:drawableRight="?android:attr/listChoiceIndicatorMultiple"
|
||||
android:gravity="center_vertical"
|
||||
android:checkMark="?android:attr/listChoiceIndicatorMultiple"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="56dp"
|
||||
android:text="@string/send_error_reports"
|
||||
android:textAllCaps="true"
|
||||
android:textSize="12sp"
|
||||
android:id="@id/switch_send_error_reports"
|
||||
android:paddingEnd="16dp"
|
||||
android:paddingStart="16dp"
|
||||
android:paddingLeft="16dp"
|
||||
android:paddingRight="16dp"
|
||||
android:textColor="@color/navigation_drawer_button_text_color_inverted" />
|
||||
|
||||
<View
|
||||
android:background="@color/divider_inverted"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/line_dimension"/>
|
||||
|
||||
<TextView
|
||||
android:id="@id/drawer_button_encoding"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="56dp"
|
||||
android:text="@string/codifica"
|
||||
android:paddingStart="20dp"
|
||||
android:paddingEnd="20dp"
|
||||
android:paddingLeft="20dp"
|
||||
android:paddingRight="20dp"
|
||||
android:gravity="center_vertical"
|
||||
android:textSize="12sp"
|
||||
android:textAllCaps="true"
|
||||
android:clickable="true"
|
||||
android:background="@drawable/item_background_holo_dark"
|
||||
android:textColor="@color/navigation_drawer_button_text_color_inverted"/>
|
||||
|
||||
<View
|
||||
android:background="@color/divider_inverted"
|
||||
@ -288,5 +188,26 @@
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/line_dimension"/>
|
||||
|
||||
<TextView
|
||||
android:id="@id/drawer_button_extra_options"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="56dp"
|
||||
android:text="@string/extra_options"
|
||||
android:paddingStart="20dp"
|
||||
android:paddingEnd="20dp"
|
||||
android:paddingLeft="20dp"
|
||||
android:paddingRight="20dp"
|
||||
android:gravity="center_vertical"
|
||||
android:textSize="12sp"
|
||||
android:textAllCaps="true"
|
||||
android:clickable="true"
|
||||
android:background="@drawable/item_background_holo_dark"
|
||||
android:textColor="@color/navigation_drawer_button_text_color_inverted"/>
|
||||
|
||||
<View
|
||||
android:background="@color/divider_inverted"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/line_dimension"/>
|
||||
|
||||
</LinearLayout>
|
||||
</ScrollView>
|
@ -20,6 +20,15 @@
|
||||
|
||||
<changelog bulletedList="true">
|
||||
|
||||
<changelogversion versionName="1.11" changeDate="Sep 30, 2014">
|
||||
<changelogtext>[b]New! [/b]Important improvements to the syntax highlight</changelogtext>
|
||||
<changelogtext>[b]New! [/b]Donation option in the about screen. Help to make Turbo Editor a better software! :)</changelogtext>
|
||||
<changelogtext>[b]New! [/b]Setting to disable the "page system"</changelogtext>
|
||||
<changelogtext>[b]New! [/b]Setting to ignore the back button</changelogtext>
|
||||
<changelogtext>Fixed an issue related to cut/copy/past buttons</changelogtext>
|
||||
<changelogtext>Other enchantments and fixes</changelogtext>
|
||||
</changelogversion>
|
||||
|
||||
<changelogversion versionName="1.10" changeDate="Sep 17, 2014">
|
||||
<changelogtext>[b]New! [/b]Go To Line feature</changelogtext>
|
||||
<changelogtext>Now the syntax highlight updates when scrolling</changelogtext>
|
||||
|
@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@ -17,10 +18,47 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
<string name="recent_files">Recent files</string>
|
||||
<string name="font_size">Font size</string>
|
||||
<string name="connection_name">Connection Name</string>
|
||||
<string name="line_numbers">Line Numbers</string>
|
||||
<string name="wrap_content">Wrap content</string>
|
||||
<string name="view_it_on_the_web">View it on the web</string>
|
||||
<string name="file">File</string>
|
||||
<string name="folder">Folder</string>
|
||||
<string name="light_theme">Light Theme</string>
|
||||
<string name="goto_line">Go to Line</string>
|
||||
<string name="find">Find</string>
|
||||
<string name="replace">Replace</string>
|
||||
<string name="share">Share</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Keyboard suggestions and Swipe</string>
|
||||
<string name="enable_autoencoding">Auto-Encoding</string>
|
||||
<string name="set_as_working_folder">Set as the working folder</string>
|
||||
<string name="is_the_working_folder">This is the working folder</string>
|
||||
<string name="save_changes">Do you want to save the changes to the file %s?</string>
|
||||
<string name="regular_expression">Regular Expression</string>
|
||||
<string name="text_to_find">Text to find</string>
|
||||
<string name="text_to_replace">Text to replace</string>
|
||||
<string name="next">Next</string>
|
||||
<string name="previous">Previous</string>
|
||||
<string name="please_wait">Please wait…</string>
|
||||
<string name="occurrences_found">%s occurrences was found</string>
|
||||
<string name="app_version">Version %s</string>
|
||||
<string name="translate_the_app">Translate</string>
|
||||
<string name="changelog">Changelog</string>
|
||||
<string name="match_case">Match case</string>
|
||||
<string name="long_click_for_more_options">Long click for more options</string>
|
||||
<string name="pro_version">Pro version</string>
|
||||
<string name="auto_save">Auto save</string>
|
||||
<string name="read_only">Read only</string>
|
||||
<string name="send_error_reports">Send error reports</string>
|
||||
<string name="extra_options">Extra options</string>
|
||||
<string name="split_text_if_too_long">Split the text if too long</string>
|
||||
<string name="ignore_back_button">Ignore back button</string>
|
||||
<string name="donate">Donate</string>
|
||||
<string name="aggiungi_account">New account</string>
|
||||
<string name="attiva">Active</string>
|
||||
<string name="cancella">Delete</string>
|
||||
@ -131,40 +169,4 @@
|
||||
<string name="open_a_file">Open a file</string>
|
||||
<string name="open_this_time_only">Open this time only</string>
|
||||
<string name="change_list_type">Change the list type</string>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
<string name="recent_files">Recent files</string>
|
||||
<string name="font_size">Font size</string>
|
||||
<string name="connection_name">Connection Name</string>
|
||||
<string name="line_numbers">Line Numbers</string>
|
||||
<string name="wrap_content">Wrap content</string>
|
||||
<string name="view_it_on_the_web">View it on the web</string>
|
||||
<string name="add">Add</string>
|
||||
<string name="file">File</string>
|
||||
<string name="folder">Folder</string>
|
||||
<string name="light_theme">Light Theme</string>
|
||||
<string name="goto_line">Goto Line</string>
|
||||
<string name="find">Find</string>
|
||||
<string name="replace">Replace</string>
|
||||
<string name="root_permission">Root Permission</string>
|
||||
<string name="share">Share</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Keyboard suggestions and Swipe</string>
|
||||
<string name="enable_autoencoding">Auto-Encoding</string>
|
||||
<string name="set_as_working_folder">Set as the working folder</string>
|
||||
<string name="is_the_working_folder">This is the working folder</string>
|
||||
<string name="save_changes">Do you want to save the changes to the file %s?</string>
|
||||
<string name="regular_expression">Regular Expression</string>
|
||||
<string name="text_to_find">Text to find</string>
|
||||
<string name="text_to_replace">Text to replace</string>
|
||||
<string name="next">Next</string>
|
||||
<string name="previous">Previous</string>
|
||||
<string name="please_wait">Please wait…</string>
|
||||
<string name="occurrences_found">%s occurrences was found</string>
|
||||
<string name="app_version">Version %s</string>
|
||||
<string name="translate_the_app">Translate</string>
|
||||
<string name="changelog">Changelog</string>
|
||||
<string name="match_case">Match case</string>
|
||||
<string name="long_click_for_more_options">Long click for more options</string>
|
||||
<string name="pro_version">Pro version</string>
|
||||
<string name="auto_save">Auto save</string>
|
||||
<string name="read_only">Read only</string>
|
||||
</resources>
|
||||
|
@ -1,63 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
~ This file is part of Turbo Editor.
|
||||
~
|
||||
~ Turbo Editor is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 3 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Turbo Editor is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="aboutactivity_info_category">Info</string>
|
||||
<string name="aboutactivity_app_category">Application Info</string>
|
||||
<string name="aboutactivity_miscellaneous_category">Miscellaneous</string>
|
||||
<string name="aboutactivity_version">Version %1$s</string>
|
||||
<string name="aboutactivity_author">Author</string>
|
||||
<string name="aboutactivity_authorsite">Author site</string>
|
||||
<string name="aboutactivity_authorsite_summary">Show author site</string>
|
||||
<string name="aboutactivity_authoremail">Author mail</string>
|
||||
<string name="aboutactivity_authoremail_summary">Send mail to author</string>
|
||||
<string name="aboutactivity_authortwitter">Twitter</string>
|
||||
<string name="aboutactivity_authortwitter_summary">Show twitter page</string>
|
||||
<string name="aboutactivity_authorgoogleplus">Google Plus</string>
|
||||
<string name="aboutactivity_authorgoogleplus_summary">Show Google Plus page</string>
|
||||
<string name="aboutactivity_betatester">Become a beta tester</string>
|
||||
<string name="aboutactivity_betatester_summary">Be a part of the community to receive beta updates</string>
|
||||
<string name="aboutactivity_helptranslate">Translate the Application</string>
|
||||
<string name="aboutactivity_helptranslate_summary">Correct some mistakes or add a new translation</string>
|
||||
<string name="aboutactivity_readme">Read Me</string>
|
||||
<string name="aboutactivity_readme_summary">Read the reference</string>
|
||||
<string name="aboutactivity_faq">FAQ</string>
|
||||
<string name="aboutactivity_faq_summary">Show app faq</string>
|
||||
<string name="aboutactivity_changelog">ChangeLog</string>
|
||||
<string name="aboutactivity_changelog_summary">Show app changelog</string>
|
||||
<string name="aboutactivity_license">Terms of service</string>
|
||||
<string name="aboutactivity_license_summary">Read the Terms of service</string>
|
||||
<string name="aboutactivity_license_accept">Accept</string>
|
||||
<string name="aboutactivity_license_refuse">Refuse</string>
|
||||
<string name="aboutactivity_privacy">Privacy policy</string>
|
||||
<string name="aboutactivity_privacy_summary">Read the Privacy policy</string>
|
||||
<string name="aboutactivity_todo">ToDo List</string>
|
||||
<string name="aboutactivity_todo_summary">Read the todo list</string>
|
||||
<string name="aboutactivity_donate">Make a donation</string>
|
||||
<string name="aboutactivity_donate_summary">Thank you for supporting me!</string>
|
||||
<string name="aboutactivity_market">Play Store</string>
|
||||
<string name="aboutactivity_market_summary">Send feedback and rate it!</string>
|
||||
<string name="aboutactivity_authormarket">Author Store</string>
|
||||
<string name="aboutactivity_authormarket_summary">Show author applications!</string>
|
||||
<string name="aboutactivity_xda">XDA thread</string>
|
||||
<string name="aboutactivity_xda_summary">Post your feedback here!</string>
|
||||
</resources>
|
@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@ -17,10 +18,47 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">استخدم مسافة موحدة</string>
|
||||
<string name="recent_files">الملفات الأخيرة</string>
|
||||
<string name="font_size">حجم الخط</string>
|
||||
<string name="connection_name">اسم الاتصال</string>
|
||||
<string name="line_numbers">أرقام الأسطر</string>
|
||||
<string name="wrap_content">التفاف المحتوى</string>
|
||||
<string name="view_it_on_the_web">الاطلاع عليه على شبكة الإنترنت</string>
|
||||
<string name="file">الملف</string>
|
||||
<string name="folder">مجلد</string>
|
||||
<string name="light_theme">قالب خفيف</string>
|
||||
<string name="goto_line">الانتقال إلى السطر</string>
|
||||
<string name="find">إيجاد</string>
|
||||
<string name="replace">استبدال</string>
|
||||
<string name="share">مشاركة</string>
|
||||
<string name="keyboard_suggestions_and_swipe">اقتراحات لوحة المفاتيح، ومرر</string>
|
||||
<string name="enable_autoencoding">الترميز التلقائي</string>
|
||||
<string name="set_as_working_folder">تعيين كمجلد العمل</string>
|
||||
<string name="is_the_working_folder">مجلد العمل</string>
|
||||
<string name="save_changes">هل تريد حفظ التغييرات إلى الملف %s؟</string>
|
||||
<string name="regular_expression">المصطلح العادي</string>
|
||||
<string name="text_to_find">للبحث عن النص</string>
|
||||
<string name="text_to_replace">لاستبدال النص</string>
|
||||
<string name="next">التالى</string>
|
||||
<string name="previous">السابق</string>
|
||||
<string name="please_wait">برجاء الانتظار</string>
|
||||
<string name="occurrences_found">تم العثور على %s تكرار</string>
|
||||
<string name="app_version">رقم الإصدار %s</string>
|
||||
<string name="translate_the_app">الترجمة</string>
|
||||
<string name="changelog">سجل التغيير</string>
|
||||
<string name="match_case">مطابق للحالة</string>
|
||||
<string name="long_click_for_more_options">انقر مطولا لمزيد من الاختيارات</string>
|
||||
<string name="pro_version">النسخة المدفوعة</string>
|
||||
<string name="auto_save">حفظ تلقائي</string>
|
||||
<string name="read_only">للقراءة فقط</string>
|
||||
<string name="send_error_reports">إرسال تقرير الخطأ</string>
|
||||
<string name="extra_options">خيارات إضافية</string>
|
||||
<string name="split_text_if_too_long">تقسيم النص إذا كان طويلاً جداً</string>
|
||||
<string name="ignore_back_button">تجاهل زر الرجوع</string>
|
||||
<string name="donate">Donate</string>
|
||||
<string name="aggiungi_account">حساب جديد</string>
|
||||
<string name="attiva">تنشيط</string>
|
||||
<string name="cancella">حذف</string>
|
||||
@ -131,40 +169,4 @@
|
||||
<string name="open_a_file">فتح ملف</string>
|
||||
<string name="open_this_time_only">فتح هذه المرة فقط</string>
|
||||
<string name="change_list_type">تغيير نوع القائمة</string>
|
||||
<string name="use_monospace">استخدم مسافة موحدة</string>
|
||||
<string name="recent_files">الملفات الأخيرة</string>
|
||||
<string name="font_size">حجم الخط</string>
|
||||
<string name="connection_name">اسم الاتصال</string>
|
||||
<string name="line_numbers">أرقام الأسطر</string>
|
||||
<string name="wrap_content">التفاف المحتوى</string>
|
||||
<string name="view_it_on_the_web">الاطلاع عليه على شبكة الإنترنت</string>
|
||||
<string name="add">إضافة</string>
|
||||
<string name="file">الملف</string>
|
||||
<string name="folder">مجلد</string>
|
||||
<string name="light_theme">قالب خفيف</string>
|
||||
<string name="goto_line">الانتقال إلى السطر</string>
|
||||
<string name="find">إيجاد</string>
|
||||
<string name="replace">استبدال</string>
|
||||
<string name="root_permission">تصاريح الرووت</string>
|
||||
<string name="share">مشاركة</string>
|
||||
<string name="keyboard_suggestions_and_swipe">اقتراحات لوحة المفاتيح، ومرر</string>
|
||||
<string name="enable_autoencoding">الترميز التلقائي</string>
|
||||
<string name="set_as_working_folder">تعيين كمجلد العمل</string>
|
||||
<string name="is_the_working_folder">مجلد العمل</string>
|
||||
<string name="save_changes">هل تريد حفظ التغييرات إلى الملف %s؟</string>
|
||||
<string name="regular_expression">المصطلح العادي</string>
|
||||
<string name="text_to_find">للبحث عن النص</string>
|
||||
<string name="text_to_replace">لاستبدال النص</string>
|
||||
<string name="next">التالى</string>
|
||||
<string name="previous">السابق</string>
|
||||
<string name="please_wait">برجاء الانتظار</string>
|
||||
<string name="occurrences_found">تم العثور على %s تكرار</string>
|
||||
<string name="app_version">رقم الإصدار %s</string>
|
||||
<string name="translate_the_app">الترجمة</string>
|
||||
<string name="changelog">سجل التغيير</string>
|
||||
<string name="match_case">مطابق للحالة</string>
|
||||
<string name="long_click_for_more_options">انقر مطولا لمزيد من الاختيارات</string>
|
||||
<string name="pro_version">النسخة المدفوعة</string>
|
||||
<string name="auto_save">حفظ تلقائي</string>
|
||||
<string name="read_only">للقراءة فقط</string>
|
||||
</resources>
|
||||
|
@ -1,63 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
~ This file is part of Turbo Editor.
|
||||
~
|
||||
~ Turbo Editor is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 3 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Turbo Editor is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="aboutactivity_info_category">معلومات</string>
|
||||
<string name="aboutactivity_app_category">معلومات التطبيق</string>
|
||||
<string name="aboutactivity_miscellaneous_category">متفرقات</string>
|
||||
<string name="aboutactivity_version">الإصدار % 1$ s</string>
|
||||
<string name="aboutactivity_author">المؤلف</string>
|
||||
<string name="aboutactivity_authorsite">موقع الكاتب</string>
|
||||
<string name="aboutactivity_authorsite_summary">إظهار موقع المؤلف</string>
|
||||
<string name="aboutactivity_authoremail">اميل المؤلف</string>
|
||||
<string name="aboutactivity_authoremail_summary">إرسال بريد الكترونى الى المؤلف</string>
|
||||
<string name="aboutactivity_authortwitter">تويتر</string>
|
||||
<string name="aboutactivity_authortwitter_summary">إظهار صفحة تويتر</string>
|
||||
<string name="aboutactivity_authorgoogleplus">جوجل بلس</string>
|
||||
<string name="aboutactivity_authorgoogleplus_summary">إظهار صفحة جوجل بلس</string>
|
||||
<string name="aboutactivity_betatester">إصبح أحد مختبري الإصدارات التجريبية</string>
|
||||
<string name="aboutactivity_betatester_summary">كن جزءا من المجتمع المحلي لتتلقي التحديثات التجريبية</string>
|
||||
<string name="aboutactivity_helptranslate">ترجمة التطبيق</string>
|
||||
<string name="aboutactivity_helptranslate_summary">تصحيح بعض الأخطاء أو إضافة ترجمة جديدة</string>
|
||||
<string name="aboutactivity_readme">اقرأنى</string>
|
||||
<string name="aboutactivity_readme_summary">قراءة المرجع</string>
|
||||
<string name="aboutactivity_faq">الأسئلة الشائعة</string>
|
||||
<string name="aboutactivity_faq_summary">إظهار الأسئلة الشائعة للتطبيق</string>
|
||||
<string name="aboutactivity_changelog">سجل التغيير</string>
|
||||
<string name="aboutactivity_changelog_summary">إظهار تغييرات التطبيق</string>
|
||||
<string name="aboutactivity_license">شروط الخدمة</string>
|
||||
<string name="aboutactivity_license_summary">قراءة شروط الخدمة</string>
|
||||
<string name="aboutactivity_license_accept">موافقة</string>
|
||||
<string name="aboutactivity_license_refuse">رفض</string>
|
||||
<string name="aboutactivity_privacy">سياسة الخصوصية</string>
|
||||
<string name="aboutactivity_privacy_summary">قراءة سياسة الخصوصية</string>
|
||||
<string name="aboutactivity_todo">قائمة تودو</string>
|
||||
<string name="aboutactivity_todo_summary">قراءة قائمة تودو</string>
|
||||
<string name="aboutactivity_donate">تقديم تبرع</string>
|
||||
<string name="aboutactivity_donate_summary">شكرا لكم لدعم لي!</string>
|
||||
<string name="aboutactivity_market">متجر غوغل بلاي</string>
|
||||
<string name="aboutactivity_market_summary">إرسل ملاحظات وقيم!</string>
|
||||
<string name="aboutactivity_authormarket">صاحب المتجر</string>
|
||||
<string name="aboutactivity_authormarket_summary">إظهار تطبيقات المؤلف!</string>
|
||||
<string name="aboutactivity_xda">XDA thread</string>
|
||||
<string name="aboutactivity_xda_summary">Post your feedback here!</string>
|
||||
</resources>
|
@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@ -17,10 +18,47 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
<string name="recent_files">Recent files</string>
|
||||
<string name="font_size">Font size</string>
|
||||
<string name="connection_name">Connection Name</string>
|
||||
<string name="line_numbers">Line Numbers</string>
|
||||
<string name="wrap_content">Wrap content</string>
|
||||
<string name="view_it_on_the_web">View it on the web</string>
|
||||
<string name="file">File</string>
|
||||
<string name="folder">Folder</string>
|
||||
<string name="light_theme">Light Theme</string>
|
||||
<string name="goto_line">Go to Line</string>
|
||||
<string name="find">Find</string>
|
||||
<string name="replace">Replace</string>
|
||||
<string name="share">Share</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Keyboard suggestions and Swipe</string>
|
||||
<string name="enable_autoencoding">Auto-Encoding</string>
|
||||
<string name="set_as_working_folder">Set as the working folder</string>
|
||||
<string name="is_the_working_folder">This is the working folder</string>
|
||||
<string name="save_changes">Do you want to save the changes to the file %s?</string>
|
||||
<string name="regular_expression">Regular Expression</string>
|
||||
<string name="text_to_find">Text to find</string>
|
||||
<string name="text_to_replace">Text to replace</string>
|
||||
<string name="next">Next</string>
|
||||
<string name="previous">Previous</string>
|
||||
<string name="please_wait">Please wait…</string>
|
||||
<string name="occurrences_found">%s occurrences was found</string>
|
||||
<string name="app_version">Version %s</string>
|
||||
<string name="translate_the_app">Translate</string>
|
||||
<string name="changelog">Changelog</string>
|
||||
<string name="match_case">Match case</string>
|
||||
<string name="long_click_for_more_options">Long click for more options</string>
|
||||
<string name="pro_version">Pro version</string>
|
||||
<string name="auto_save">Auto save</string>
|
||||
<string name="read_only">Read only</string>
|
||||
<string name="send_error_reports">Send error reports</string>
|
||||
<string name="extra_options">Extra options</string>
|
||||
<string name="split_text_if_too_long">Split the text if too long</string>
|
||||
<string name="ignore_back_button">Ignore back button</string>
|
||||
<string name="donate">Donate</string>
|
||||
<string name="aggiungi_account">New account</string>
|
||||
<string name="attiva">Active</string>
|
||||
<string name="cancella">Delete</string>
|
||||
@ -131,40 +169,4 @@
|
||||
<string name="open_a_file">Open a file</string>
|
||||
<string name="open_this_time_only">Open this time only</string>
|
||||
<string name="change_list_type">Change the list type</string>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
<string name="recent_files">Recent files</string>
|
||||
<string name="font_size">Font size</string>
|
||||
<string name="connection_name">Connection Name</string>
|
||||
<string name="line_numbers">Line Numbers</string>
|
||||
<string name="wrap_content">Wrap content</string>
|
||||
<string name="view_it_on_the_web">View it on the web</string>
|
||||
<string name="add">Add</string>
|
||||
<string name="file">File</string>
|
||||
<string name="folder">Folder</string>
|
||||
<string name="light_theme">Light Theme</string>
|
||||
<string name="goto_line">Goto Line</string>
|
||||
<string name="find">Find</string>
|
||||
<string name="replace">Replace</string>
|
||||
<string name="root_permission">Root Permission</string>
|
||||
<string name="share">Share</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Keyboard suggestions and Swipe</string>
|
||||
<string name="enable_autoencoding">Auto-Encoding</string>
|
||||
<string name="set_as_working_folder">Set as the working folder</string>
|
||||
<string name="is_the_working_folder">This is the working folder</string>
|
||||
<string name="save_changes">Do you want to save the changes to the file %s?</string>
|
||||
<string name="regular_expression">Regular Expression</string>
|
||||
<string name="text_to_find">Text to find</string>
|
||||
<string name="text_to_replace">Text to replace</string>
|
||||
<string name="next">Next</string>
|
||||
<string name="previous">Previous</string>
|
||||
<string name="please_wait">Please wait…</string>
|
||||
<string name="occurrences_found">%s occurrences was found</string>
|
||||
<string name="app_version">Version %s</string>
|
||||
<string name="translate_the_app">Translate</string>
|
||||
<string name="changelog">Changelog</string>
|
||||
<string name="match_case">Match case</string>
|
||||
<string name="long_click_for_more_options">Long click for more options</string>
|
||||
<string name="pro_version">Pro version</string>
|
||||
<string name="auto_save">Auto save</string>
|
||||
<string name="read_only">Read only</string>
|
||||
</resources>
|
||||
|
@ -1,63 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
~ This file is part of Turbo Editor.
|
||||
~
|
||||
~ Turbo Editor is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 3 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Turbo Editor is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="aboutactivity_info_category">Info</string>
|
||||
<string name="aboutactivity_app_category">Application Info</string>
|
||||
<string name="aboutactivity_miscellaneous_category">Miscellaneous</string>
|
||||
<string name="aboutactivity_version">Version %1$s</string>
|
||||
<string name="aboutactivity_author">Author</string>
|
||||
<string name="aboutactivity_authorsite">Author site</string>
|
||||
<string name="aboutactivity_authorsite_summary">Show author site</string>
|
||||
<string name="aboutactivity_authoremail">Author mail</string>
|
||||
<string name="aboutactivity_authoremail_summary">Send mail to author</string>
|
||||
<string name="aboutactivity_authortwitter">Twitter</string>
|
||||
<string name="aboutactivity_authortwitter_summary">Show twitter page</string>
|
||||
<string name="aboutactivity_authorgoogleplus">Google Plus</string>
|
||||
<string name="aboutactivity_authorgoogleplus_summary">Show Google Plus page</string>
|
||||
<string name="aboutactivity_betatester">Become a beta tester</string>
|
||||
<string name="aboutactivity_betatester_summary">Be a part of the community to receive beta updates</string>
|
||||
<string name="aboutactivity_helptranslate">Translate the Application</string>
|
||||
<string name="aboutactivity_helptranslate_summary">Correct some mistakes or add a new translation</string>
|
||||
<string name="aboutactivity_readme">Read Me</string>
|
||||
<string name="aboutactivity_readme_summary">Read the reference</string>
|
||||
<string name="aboutactivity_faq">FAQ</string>
|
||||
<string name="aboutactivity_faq_summary">Show app faq</string>
|
||||
<string name="aboutactivity_changelog">ChangeLog</string>
|
||||
<string name="aboutactivity_changelog_summary">Show app changelog</string>
|
||||
<string name="aboutactivity_license">Terms of service</string>
|
||||
<string name="aboutactivity_license_summary">Read the Terms of service</string>
|
||||
<string name="aboutactivity_license_accept">Accept</string>
|
||||
<string name="aboutactivity_license_refuse">Refuse</string>
|
||||
<string name="aboutactivity_privacy">Privacy policy</string>
|
||||
<string name="aboutactivity_privacy_summary">Read the Privacy policy</string>
|
||||
<string name="aboutactivity_todo">ToDo List</string>
|
||||
<string name="aboutactivity_todo_summary">Read the todo list</string>
|
||||
<string name="aboutactivity_donate">Make a donation</string>
|
||||
<string name="aboutactivity_donate_summary">Thank you for supporting me!</string>
|
||||
<string name="aboutactivity_market">Play Store</string>
|
||||
<string name="aboutactivity_market_summary">Send feedback and rate it!</string>
|
||||
<string name="aboutactivity_authormarket">Author Store</string>
|
||||
<string name="aboutactivity_authormarket_summary">Show author applications!</string>
|
||||
<string name="aboutactivity_xda">XDA thread</string>
|
||||
<string name="aboutactivity_xda_summary">Post your feedback here!</string>
|
||||
</resources>
|
@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@ -17,10 +18,47 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
<string name="recent_files">Recent files</string>
|
||||
<string name="font_size">Font size</string>
|
||||
<string name="connection_name">Connection Name</string>
|
||||
<string name="line_numbers">Line Numbers</string>
|
||||
<string name="wrap_content">Wrap content</string>
|
||||
<string name="view_it_on_the_web">View it on the web</string>
|
||||
<string name="file">File</string>
|
||||
<string name="folder">Folder</string>
|
||||
<string name="light_theme">Light Theme</string>
|
||||
<string name="goto_line">Go to Line</string>
|
||||
<string name="find">Find</string>
|
||||
<string name="replace">Replace</string>
|
||||
<string name="share">Share</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Keyboard suggestions and Swipe</string>
|
||||
<string name="enable_autoencoding">Auto-Encoding</string>
|
||||
<string name="set_as_working_folder">Set as the working folder</string>
|
||||
<string name="is_the_working_folder">This is the working folder</string>
|
||||
<string name="save_changes">Do you want to save the changes to the file %s?</string>
|
||||
<string name="regular_expression">Regular Expression</string>
|
||||
<string name="text_to_find">Text to find</string>
|
||||
<string name="text_to_replace">Text to replace</string>
|
||||
<string name="next">Next</string>
|
||||
<string name="previous">Previous</string>
|
||||
<string name="please_wait">Please wait…</string>
|
||||
<string name="occurrences_found">%s occurrences was found</string>
|
||||
<string name="app_version">Version %s</string>
|
||||
<string name="translate_the_app">Translate</string>
|
||||
<string name="changelog">Changelog</string>
|
||||
<string name="match_case">Match case</string>
|
||||
<string name="long_click_for_more_options">Long click for more options</string>
|
||||
<string name="pro_version">Pro version</string>
|
||||
<string name="auto_save">Auto save</string>
|
||||
<string name="read_only">Read only</string>
|
||||
<string name="send_error_reports">Send error reports</string>
|
||||
<string name="extra_options">Extra options</string>
|
||||
<string name="split_text_if_too_long">Split the text if too long</string>
|
||||
<string name="ignore_back_button">Ignore back button</string>
|
||||
<string name="donate">Donate</string>
|
||||
<string name="aggiungi_account">New account</string>
|
||||
<string name="attiva">Active</string>
|
||||
<string name="cancella">Delete</string>
|
||||
@ -131,40 +169,4 @@
|
||||
<string name="open_a_file">Open a file</string>
|
||||
<string name="open_this_time_only">Open this time only</string>
|
||||
<string name="change_list_type">Change the list type</string>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
<string name="recent_files">Recent files</string>
|
||||
<string name="font_size">Font size</string>
|
||||
<string name="connection_name">Connection Name</string>
|
||||
<string name="line_numbers">Line Numbers</string>
|
||||
<string name="wrap_content">Wrap content</string>
|
||||
<string name="view_it_on_the_web">View it on the web</string>
|
||||
<string name="add">Add</string>
|
||||
<string name="file">File</string>
|
||||
<string name="folder">Folder</string>
|
||||
<string name="light_theme">Light Theme</string>
|
||||
<string name="goto_line">Goto Line</string>
|
||||
<string name="find">Find</string>
|
||||
<string name="replace">Replace</string>
|
||||
<string name="root_permission">Root Permission</string>
|
||||
<string name="share">Share</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Keyboard suggestions and Swipe</string>
|
||||
<string name="enable_autoencoding">Auto-Encoding</string>
|
||||
<string name="set_as_working_folder">Set as the working folder</string>
|
||||
<string name="is_the_working_folder">This is the working folder</string>
|
||||
<string name="save_changes">Do you want to save the changes to the file %s?</string>
|
||||
<string name="regular_expression">Regular Expression</string>
|
||||
<string name="text_to_find">Text to find</string>
|
||||
<string name="text_to_replace">Text to replace</string>
|
||||
<string name="next">Next</string>
|
||||
<string name="previous">Previous</string>
|
||||
<string name="please_wait">Please wait…</string>
|
||||
<string name="occurrences_found">%s occurrences was found</string>
|
||||
<string name="app_version">Version %s</string>
|
||||
<string name="translate_the_app">Translate</string>
|
||||
<string name="changelog">Changelog</string>
|
||||
<string name="match_case">Match case</string>
|
||||
<string name="long_click_for_more_options">Long click for more options</string>
|
||||
<string name="pro_version">Pro version</string>
|
||||
<string name="auto_save">Auto save</string>
|
||||
<string name="read_only">Read only</string>
|
||||
</resources>
|
||||
|
@ -1,63 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
~ This file is part of Turbo Editor.
|
||||
~
|
||||
~ Turbo Editor is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 3 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Turbo Editor is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="aboutactivity_info_category">Info</string>
|
||||
<string name="aboutactivity_app_category">Application Info</string>
|
||||
<string name="aboutactivity_miscellaneous_category">Miscellaneous</string>
|
||||
<string name="aboutactivity_version">Version %1$s</string>
|
||||
<string name="aboutactivity_author">Author</string>
|
||||
<string name="aboutactivity_authorsite">Author site</string>
|
||||
<string name="aboutactivity_authorsite_summary">Show author site</string>
|
||||
<string name="aboutactivity_authoremail">Author mail</string>
|
||||
<string name="aboutactivity_authoremail_summary">Send mail to author</string>
|
||||
<string name="aboutactivity_authortwitter">Twitter</string>
|
||||
<string name="aboutactivity_authortwitter_summary">Show twitter page</string>
|
||||
<string name="aboutactivity_authorgoogleplus">Google Plus</string>
|
||||
<string name="aboutactivity_authorgoogleplus_summary">Show Google Plus page</string>
|
||||
<string name="aboutactivity_betatester">Become a beta tester</string>
|
||||
<string name="aboutactivity_betatester_summary">Be a part of the community to receive beta updates</string>
|
||||
<string name="aboutactivity_helptranslate">Translate the Application</string>
|
||||
<string name="aboutactivity_helptranslate_summary">Correct some mistakes or add a new translation</string>
|
||||
<string name="aboutactivity_readme">Read Me</string>
|
||||
<string name="aboutactivity_readme_summary">Read the reference</string>
|
||||
<string name="aboutactivity_faq">FAQ</string>
|
||||
<string name="aboutactivity_faq_summary">Show app faq</string>
|
||||
<string name="aboutactivity_changelog">ChangeLog</string>
|
||||
<string name="aboutactivity_changelog_summary">Show app changelog</string>
|
||||
<string name="aboutactivity_license">Terms of service</string>
|
||||
<string name="aboutactivity_license_summary">Read the Terms of service</string>
|
||||
<string name="aboutactivity_license_accept">Accept</string>
|
||||
<string name="aboutactivity_license_refuse">Refuse</string>
|
||||
<string name="aboutactivity_privacy">Privacy policy</string>
|
||||
<string name="aboutactivity_privacy_summary">Read the Privacy policy</string>
|
||||
<string name="aboutactivity_todo">ToDo List</string>
|
||||
<string name="aboutactivity_todo_summary">Read the todo list</string>
|
||||
<string name="aboutactivity_donate">Make a donation</string>
|
||||
<string name="aboutactivity_donate_summary">Thank you for supporting me!</string>
|
||||
<string name="aboutactivity_market">Play Store</string>
|
||||
<string name="aboutactivity_market_summary">Send feedback and rate it!</string>
|
||||
<string name="aboutactivity_authormarket">Author Store</string>
|
||||
<string name="aboutactivity_authormarket_summary">Show author applications!</string>
|
||||
<string name="aboutactivity_xda">XDA thread</string>
|
||||
<string name="aboutactivity_xda_summary">Post your feedback here!</string>
|
||||
</resources>
|
@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@ -17,10 +18,47 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
<string name="recent_files">Recent files</string>
|
||||
<string name="font_size">Font size</string>
|
||||
<string name="connection_name">Connection Name</string>
|
||||
<string name="line_numbers">Line Numbers</string>
|
||||
<string name="wrap_content">Wrap content</string>
|
||||
<string name="view_it_on_the_web">View it on the web</string>
|
||||
<string name="file">File</string>
|
||||
<string name="folder">Folder</string>
|
||||
<string name="light_theme">Light Theme</string>
|
||||
<string name="goto_line">Go to Line</string>
|
||||
<string name="find">Find</string>
|
||||
<string name="replace">Replace</string>
|
||||
<string name="share">Share</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Keyboard suggestions and Swipe</string>
|
||||
<string name="enable_autoencoding">Auto-Encoding</string>
|
||||
<string name="set_as_working_folder">Set as the working folder</string>
|
||||
<string name="is_the_working_folder">This is the working folder</string>
|
||||
<string name="save_changes">Do you want to save the changes to the file %s?</string>
|
||||
<string name="regular_expression">Regular Expression</string>
|
||||
<string name="text_to_find">Text to find</string>
|
||||
<string name="text_to_replace">Text to replace</string>
|
||||
<string name="next">Next</string>
|
||||
<string name="previous">Previous</string>
|
||||
<string name="please_wait">Please wait…</string>
|
||||
<string name="occurrences_found">%s occurrences was found</string>
|
||||
<string name="app_version">Version %s</string>
|
||||
<string name="translate_the_app">Translate</string>
|
||||
<string name="changelog">Changelog</string>
|
||||
<string name="match_case">Match case</string>
|
||||
<string name="long_click_for_more_options">Long click for more options</string>
|
||||
<string name="pro_version">Pro version</string>
|
||||
<string name="auto_save">Auto save</string>
|
||||
<string name="read_only">Read only</string>
|
||||
<string name="send_error_reports">Send error reports</string>
|
||||
<string name="extra_options">Extra options</string>
|
||||
<string name="split_text_if_too_long">Split the text if too long</string>
|
||||
<string name="ignore_back_button">Ignore back button</string>
|
||||
<string name="donate">Donate</string>
|
||||
<string name="aggiungi_account">New account</string>
|
||||
<string name="attiva">Active</string>
|
||||
<string name="cancella">Delete</string>
|
||||
@ -131,40 +169,4 @@
|
||||
<string name="open_a_file">Open a file</string>
|
||||
<string name="open_this_time_only">Open this time only</string>
|
||||
<string name="change_list_type">Change the list type</string>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
<string name="recent_files">Recent files</string>
|
||||
<string name="font_size">Font size</string>
|
||||
<string name="connection_name">Connection Name</string>
|
||||
<string name="line_numbers">Line Numbers</string>
|
||||
<string name="wrap_content">Wrap content</string>
|
||||
<string name="view_it_on_the_web">View it on the web</string>
|
||||
<string name="add">Add</string>
|
||||
<string name="file">File</string>
|
||||
<string name="folder">Folder</string>
|
||||
<string name="light_theme">Light Theme</string>
|
||||
<string name="goto_line">Goto Line</string>
|
||||
<string name="find">Find</string>
|
||||
<string name="replace">Replace</string>
|
||||
<string name="root_permission">Root Permission</string>
|
||||
<string name="share">Share</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Keyboard suggestions and Swipe</string>
|
||||
<string name="enable_autoencoding">Auto-Encoding</string>
|
||||
<string name="set_as_working_folder">Set as the working folder</string>
|
||||
<string name="is_the_working_folder">This is the working folder</string>
|
||||
<string name="save_changes">Do you want to save the changes to the file %s?</string>
|
||||
<string name="regular_expression">Regular Expression</string>
|
||||
<string name="text_to_find">Text to find</string>
|
||||
<string name="text_to_replace">Text to replace</string>
|
||||
<string name="next">Next</string>
|
||||
<string name="previous">Previous</string>
|
||||
<string name="please_wait">Please wait…</string>
|
||||
<string name="occurrences_found">%s occurrences was found</string>
|
||||
<string name="app_version">Version %s</string>
|
||||
<string name="translate_the_app">Translate</string>
|
||||
<string name="changelog">Changelog</string>
|
||||
<string name="match_case">Match case</string>
|
||||
<string name="long_click_for_more_options">Long click for more options</string>
|
||||
<string name="pro_version">Pro version</string>
|
||||
<string name="auto_save">Auto save</string>
|
||||
<string name="read_only">Read only</string>
|
||||
</resources>
|
||||
|
@ -1,63 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
~ This file is part of Turbo Editor.
|
||||
~
|
||||
~ Turbo Editor is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 3 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Turbo Editor is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="aboutactivity_info_category">Info</string>
|
||||
<string name="aboutactivity_app_category">Application Info</string>
|
||||
<string name="aboutactivity_miscellaneous_category">Miscellaneous</string>
|
||||
<string name="aboutactivity_version">Version %1$s</string>
|
||||
<string name="aboutactivity_author">Author</string>
|
||||
<string name="aboutactivity_authorsite">Author site</string>
|
||||
<string name="aboutactivity_authorsite_summary">Show author site</string>
|
||||
<string name="aboutactivity_authoremail">Author mail</string>
|
||||
<string name="aboutactivity_authoremail_summary">Send mail to author</string>
|
||||
<string name="aboutactivity_authortwitter">Twitter</string>
|
||||
<string name="aboutactivity_authortwitter_summary">Show twitter page</string>
|
||||
<string name="aboutactivity_authorgoogleplus">Google Plus</string>
|
||||
<string name="aboutactivity_authorgoogleplus_summary">Show Google Plus page</string>
|
||||
<string name="aboutactivity_betatester">Become a beta tester</string>
|
||||
<string name="aboutactivity_betatester_summary">Be a part of the community to receive beta updates</string>
|
||||
<string name="aboutactivity_helptranslate">Translate the Application</string>
|
||||
<string name="aboutactivity_helptranslate_summary">Correct some mistakes or add a new translation</string>
|
||||
<string name="aboutactivity_readme">Read Me</string>
|
||||
<string name="aboutactivity_readme_summary">Read the reference</string>
|
||||
<string name="aboutactivity_faq">FAQ</string>
|
||||
<string name="aboutactivity_faq_summary">Show app faq</string>
|
||||
<string name="aboutactivity_changelog">ChangeLog</string>
|
||||
<string name="aboutactivity_changelog_summary">Show app changelog</string>
|
||||
<string name="aboutactivity_license">Terms of service</string>
|
||||
<string name="aboutactivity_license_summary">Read the Terms of service</string>
|
||||
<string name="aboutactivity_license_accept">Accept</string>
|
||||
<string name="aboutactivity_license_refuse">Refuse</string>
|
||||
<string name="aboutactivity_privacy">Privacy policy</string>
|
||||
<string name="aboutactivity_privacy_summary">Read the Privacy policy</string>
|
||||
<string name="aboutactivity_todo">ToDo List</string>
|
||||
<string name="aboutactivity_todo_summary">Read the todo list</string>
|
||||
<string name="aboutactivity_donate">Make a donation</string>
|
||||
<string name="aboutactivity_donate_summary">Thank you for supporting me!</string>
|
||||
<string name="aboutactivity_market">Play Store</string>
|
||||
<string name="aboutactivity_market_summary">Send feedback and rate it!</string>
|
||||
<string name="aboutactivity_authormarket">Author Store</string>
|
||||
<string name="aboutactivity_authormarket_summary">Show author applications!</string>
|
||||
<string name="aboutactivity_xda">XDA thread</string>
|
||||
<string name="aboutactivity_xda_summary">Post your feedback here!</string>
|
||||
</resources>
|
@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@ -17,10 +18,47 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Usar monospace</string>
|
||||
<string name="recent_files">Arxius recents</string>
|
||||
<string name="font_size">Mida de la font</string>
|
||||
<string name="connection_name">Nom de la connexió</string>
|
||||
<string name="line_numbers">Números de línia</string>
|
||||
<string name="wrap_content">Ajustar contingut</string>
|
||||
<string name="view_it_on_the_web">Veure-ho a la web</string>
|
||||
<string name="file">Arxiu</string>
|
||||
<string name="folder">Carpeta</string>
|
||||
<string name="light_theme">Tema clar</string>
|
||||
<string name="goto_line">Goto línia</string>
|
||||
<string name="find">Troba</string>
|
||||
<string name="replace">Replace</string>
|
||||
<string name="share">Compartir</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Keyboard suggestions and Swipe</string>
|
||||
<string name="enable_autoencoding">Auto-codificació</string>
|
||||
<string name="set_as_working_folder">Set as the working folder</string>
|
||||
<string name="is_the_working_folder">This is the working folder</string>
|
||||
<string name="save_changes">Do you want to save the changes to the file %s?</string>
|
||||
<string name="regular_expression">Regular Expression</string>
|
||||
<string name="text_to_find">Text to find</string>
|
||||
<string name="text_to_replace">Text to replace</string>
|
||||
<string name="next">Next</string>
|
||||
<string name="previous">Previous</string>
|
||||
<string name="please_wait">Please wait…</string>
|
||||
<string name="occurrences_found">%s occurrences was found</string>
|
||||
<string name="app_version">Version %s</string>
|
||||
<string name="translate_the_app">Translate</string>
|
||||
<string name="changelog">Registre de canvis</string>
|
||||
<string name="match_case">Match case</string>
|
||||
<string name="long_click_for_more_options">Long click for more options</string>
|
||||
<string name="pro_version">Pro version</string>
|
||||
<string name="auto_save">Auto save</string>
|
||||
<string name="read_only">Read only</string>
|
||||
<string name="send_error_reports">Send error reports</string>
|
||||
<string name="extra_options">Extra options</string>
|
||||
<string name="split_text_if_too_long">Split the text if too long</string>
|
||||
<string name="ignore_back_button">Ignore back button</string>
|
||||
<string name="donate">Donate</string>
|
||||
<string name="aggiungi_account">Nou compte</string>
|
||||
<string name="attiva">Activa</string>
|
||||
<string name="cancella">Esborra</string>
|
||||
@ -131,40 +169,4 @@
|
||||
<string name="open_a_file">Obre un arxiu</string>
|
||||
<string name="open_this_time_only">Obre tan sols aquesta vegada</string>
|
||||
<string name="change_list_type">Canvia el tipus de llista</string>
|
||||
<string name="use_monospace">Usar monospace</string>
|
||||
<string name="recent_files">Arxius recents</string>
|
||||
<string name="font_size">Mida de la font</string>
|
||||
<string name="connection_name">Nom de la connexió</string>
|
||||
<string name="line_numbers">Números de línia</string>
|
||||
<string name="wrap_content">Ajustar contingut</string>
|
||||
<string name="view_it_on_the_web">Veure-ho a la web</string>
|
||||
<string name="add">Afegir</string>
|
||||
<string name="file">Arxiu</string>
|
||||
<string name="folder">Carpeta</string>
|
||||
<string name="light_theme">Tema clar</string>
|
||||
<string name="goto_line">Goto línia</string>
|
||||
<string name="find">Troba</string>
|
||||
<string name="replace">Replace</string>
|
||||
<string name="root_permission">Permís de root</string>
|
||||
<string name="share">Compartir</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Keyboard suggestions and Swipe</string>
|
||||
<string name="enable_autoencoding">Auto-codificació</string>
|
||||
<string name="set_as_working_folder">Set as the working folder</string>
|
||||
<string name="is_the_working_folder">This is the working folder</string>
|
||||
<string name="save_changes">Do you want to save the changes to the file %s?</string>
|
||||
<string name="regular_expression">Regular Expression</string>
|
||||
<string name="text_to_find">Text to find</string>
|
||||
<string name="text_to_replace">Text to replace</string>
|
||||
<string name="next">Next</string>
|
||||
<string name="previous">Previous</string>
|
||||
<string name="please_wait">Please wait…</string>
|
||||
<string name="occurrences_found">%s occurrences was found</string>
|
||||
<string name="app_version">Version %s</string>
|
||||
<string name="translate_the_app">Translate</string>
|
||||
<string name="changelog">Registre de canvis</string>
|
||||
<string name="match_case">Match case</string>
|
||||
<string name="long_click_for_more_options">Long click for more options</string>
|
||||
<string name="pro_version">Pro version</string>
|
||||
<string name="auto_save">Auto save</string>
|
||||
<string name="read_only">Read only</string>
|
||||
</resources>
|
||||
|
@ -1,63 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
~ This file is part of Turbo Editor.
|
||||
~
|
||||
~ Turbo Editor is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 3 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Turbo Editor is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="aboutactivity_info_category">Informació</string>
|
||||
<string name="aboutactivity_app_category">Informació de l\'aplicació</string>
|
||||
<string name="aboutactivity_miscellaneous_category">Altres</string>
|
||||
<string name="aboutactivity_version">Versió %1$s</string>
|
||||
<string name="aboutactivity_author">Autor</string>
|
||||
<string name="aboutactivity_authorsite">Web de l\'autor</string>
|
||||
<string name="aboutactivity_authorsite_summary">Mostra la web de l\'autor</string>
|
||||
<string name="aboutactivity_authoremail">Correu de l\'autor</string>
|
||||
<string name="aboutactivity_authoremail_summary">Enviar correu a l\'autor</string>
|
||||
<string name="aboutactivity_authortwitter">Twitter</string>
|
||||
<string name="aboutactivity_authortwitter_summary">Mostra la pàgina de Twitter</string>
|
||||
<string name="aboutactivity_authorgoogleplus">Google+</string>
|
||||
<string name="aboutactivity_authorgoogleplus_summary">Mostra la pàgina de Google+</string>
|
||||
<string name="aboutactivity_betatester">Fes-te beta tester</string>
|
||||
<string name="aboutactivity_betatester_summary">Sigues part de la comunitat per rebre actualitzacions beta</string>
|
||||
<string name="aboutactivity_helptranslate">Tradueix l\'aplicació</string>
|
||||
<string name="aboutactivity_helptranslate_summary">Corregeix alguns errors o afegeix una nova traducció</string>
|
||||
<string name="aboutactivity_readme">Llegeix-me</string>
|
||||
<string name="aboutactivity_readme_summary">Llegeix la font</string>
|
||||
<string name="aboutactivity_faq">FAQ</string>
|
||||
<string name="aboutactivity_faq_summary">Mostra les FAQ de l\'aplicació</string>
|
||||
<string name="aboutactivity_changelog">Registre de canvis</string>
|
||||
<string name="aboutactivity_changelog_summary">Mostra el registre de canvis de l\'aplicació</string>
|
||||
<string name="aboutactivity_license">Condicions d\'ús</string>
|
||||
<string name="aboutactivity_license_summary">Llegeix les condicions d\'ús</string>
|
||||
<string name="aboutactivity_license_accept">Acceptar</string>
|
||||
<string name="aboutactivity_license_refuse">Refusar</string>
|
||||
<string name="aboutactivity_privacy">Política de privacitat</string>
|
||||
<string name="aboutactivity_privacy_summary">Llegeix la política de privacitat</string>
|
||||
<string name="aboutactivity_todo">Llista de tasques pendents</string>
|
||||
<string name="aboutactivity_todo_summary">Llegir la llista de tasques pendents</string>
|
||||
<string name="aboutactivity_donate">Fer una donació</string>
|
||||
<string name="aboutactivity_donate_summary">Gràcies pel teu suport!</string>
|
||||
<string name="aboutactivity_market">Play Store</string>
|
||||
<string name="aboutactivity_market_summary">Enviar comentaris i valorar l\'aplicació!</string>
|
||||
<string name="aboutactivity_authormarket">Altres aplicacions de l\'autor</string>
|
||||
<string name="aboutactivity_authormarket_summary">Mostra més aplicacions de l\'autor!</string>
|
||||
<string name="aboutactivity_xda">Fil de XDA</string>
|
||||
<string name="aboutactivity_xda_summary">Publica els teus comentaris aquí!</string>
|
||||
</resources>
|
@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@ -17,10 +18,47 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Použít neproporcionální</string>
|
||||
<string name="recent_files">Poslední soubory</string>
|
||||
<string name="font_size">Velikost písma</string>
|
||||
<string name="connection_name">Název připojení</string>
|
||||
<string name="line_numbers">Čísla řádků</string>
|
||||
<string name="wrap_content">Zalomit obsah</string>
|
||||
<string name="view_it_on_the_web">Zobrazit na webu</string>
|
||||
<string name="file">Soubor</string>
|
||||
<string name="folder">Složka</string>
|
||||
<string name="light_theme">Světlý vzhled</string>
|
||||
<string name="goto_line">Skočit na řádek</string>
|
||||
<string name="find">Najít</string>
|
||||
<string name="replace">Nahradit</string>
|
||||
<string name="share">Sdílet</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Návrhy při psaní a Swipe</string>
|
||||
<string name="enable_autoencoding">Automatické kódování</string>
|
||||
<string name="set_as_working_folder">Nastavit jako pracovní složku</string>
|
||||
<string name="is_the_working_folder">Toto je pracovní složka</string>
|
||||
<string name="save_changes">Chcete uložit změny v souboru %s?</string>
|
||||
<string name="regular_expression">Regulární výraz</string>
|
||||
<string name="text_to_find">Hledaný text</string>
|
||||
<string name="text_to_replace">Text k nahrazení</string>
|
||||
<string name="next">Následující</string>
|
||||
<string name="previous">Předchozí</string>
|
||||
<string name="please_wait">Počkejte prosím…</string>
|
||||
<string name="occurrences_found">bylo nalezeno %s výskytů</string>
|
||||
<string name="app_version">Verze %s</string>
|
||||
<string name="translate_the_app">Přeložit</string>
|
||||
<string name="changelog">Seznam změn</string>
|
||||
<string name="match_case">Rozlišovat velikost písmen</string>
|
||||
<string name="long_click_for_more_options">Pro více možností klepněte a podržte</string>
|
||||
<string name="pro_version">Verze PRO</string>
|
||||
<string name="auto_save">Automatické ukládání</string>
|
||||
<string name="read_only">Jen pro čtení</string>
|
||||
<string name="send_error_reports">Send error reports</string>
|
||||
<string name="extra_options">Extra options</string>
|
||||
<string name="split_text_if_too_long">Split the text if too long</string>
|
||||
<string name="ignore_back_button">Ignore back button</string>
|
||||
<string name="donate">Donate</string>
|
||||
<string name="aggiungi_account">Nový účet</string>
|
||||
<string name="attiva">Aktivní</string>
|
||||
<string name="cancella">Odstranit</string>
|
||||
@ -131,40 +169,4 @@
|
||||
<string name="open_a_file">Otevřít soubor</string>
|
||||
<string name="open_this_time_only">Otevřít pouze tentokrát</string>
|
||||
<string name="change_list_type">Změnit typ výpisu</string>
|
||||
<string name="use_monospace">Použít neproporcionální</string>
|
||||
<string name="recent_files">Poslední soubory</string>
|
||||
<string name="font_size">Velikost písma</string>
|
||||
<string name="connection_name">Název připojení</string>
|
||||
<string name="line_numbers">Čísla řádků</string>
|
||||
<string name="wrap_content">Zalomit obsah</string>
|
||||
<string name="view_it_on_the_web">Zobrazit na webu</string>
|
||||
<string name="add">Přidat</string>
|
||||
<string name="file">Soubor</string>
|
||||
<string name="folder">Složka</string>
|
||||
<string name="light_theme">Světlý vzhled</string>
|
||||
<string name="goto_line">Skočit na řádek</string>
|
||||
<string name="find">Najít</string>
|
||||
<string name="replace">Nahradit</string>
|
||||
<string name="root_permission">Oprávnění Root</string>
|
||||
<string name="share">Sdílet</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Návrhy při psaní a Swipe</string>
|
||||
<string name="enable_autoencoding">Automatické kódování</string>
|
||||
<string name="set_as_working_folder">Nastavit jako pracovní složku</string>
|
||||
<string name="is_the_working_folder">Toto je pracovní složka</string>
|
||||
<string name="save_changes">Chcete uložit změny v souboru %s?</string>
|
||||
<string name="regular_expression">Regulární výraz</string>
|
||||
<string name="text_to_find">Hledaný text</string>
|
||||
<string name="text_to_replace">Text k nahrazení</string>
|
||||
<string name="next">Následující</string>
|
||||
<string name="previous">Předchozí</string>
|
||||
<string name="please_wait">Počkejte prosím…</string>
|
||||
<string name="occurrences_found">bylo nalezeno %s výskytů</string>
|
||||
<string name="app_version">Verze %s</string>
|
||||
<string name="translate_the_app">Přeložit</string>
|
||||
<string name="changelog">Seznam změn</string>
|
||||
<string name="match_case">Rozlišovat velikost písmen</string>
|
||||
<string name="long_click_for_more_options">Pro více možností klepněte a podržte</string>
|
||||
<string name="pro_version">Verze PRO</string>
|
||||
<string name="auto_save">Automatické ukládání</string>
|
||||
<string name="read_only">Jen pro čtení</string>
|
||||
</resources>
|
||||
|
@ -1,63 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
~ This file is part of Turbo Editor.
|
||||
~
|
||||
~ Turbo Editor is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 3 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Turbo Editor is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="aboutactivity_info_category">Info</string>
|
||||
<string name="aboutactivity_app_category">Informace o aplikaci</string>
|
||||
<string name="aboutactivity_miscellaneous_category">Různé</string>
|
||||
<string name="aboutactivity_version">Verze %1$s</string>
|
||||
<string name="aboutactivity_author">Autor</string>
|
||||
<string name="aboutactivity_authorsite">Web autora</string>
|
||||
<string name="aboutactivity_authorsite_summary">Zobrazit web autora</string>
|
||||
<string name="aboutactivity_authoremail">Email autora</string>
|
||||
<string name="aboutactivity_authoremail_summary">Poslat email autorovi</string>
|
||||
<string name="aboutactivity_authortwitter">Twitter</string>
|
||||
<string name="aboutactivity_authortwitter_summary">Zobrazit stránku na Twitteru</string>
|
||||
<string name="aboutactivity_authorgoogleplus">Google Plus</string>
|
||||
<string name="aboutactivity_authorgoogleplus_summary">Zobrazit stránku na Google Plus</string>
|
||||
<string name="aboutactivity_betatester">Staňte se betatesterem</string>
|
||||
<string name="aboutactivity_betatester_summary">Staňte se součástí komunity a získávejte beta vylepšení</string>
|
||||
<string name="aboutactivity_helptranslate">Přeložit aplikaci</string>
|
||||
<string name="aboutactivity_helptranslate_summary">Opravte některé chyby nebo přidejte nový překlad</string>
|
||||
<string name="aboutactivity_readme">Čti mne</string>
|
||||
<string name="aboutactivity_readme_summary">Přečíst si referenci</string>
|
||||
<string name="aboutactivity_faq">Časté dotazy</string>
|
||||
<string name="aboutactivity_faq_summary">Zobrazit časté dotazy k aplikaci</string>
|
||||
<string name="aboutactivity_changelog">Seznam změn</string>
|
||||
<string name="aboutactivity_changelog_summary">Zobrazit seznam změn v aplikaci</string>
|
||||
<string name="aboutactivity_license">Podmínky služby</string>
|
||||
<string name="aboutactivity_license_summary">Přečtěte si Podmínky služby</string>
|
||||
<string name="aboutactivity_license_accept">Přijmout</string>
|
||||
<string name="aboutactivity_license_refuse">Odmítnout</string>
|
||||
<string name="aboutactivity_privacy">Zásady ochrany osobních údajů</string>
|
||||
<string name="aboutactivity_privacy_summary">Přečtěte si Zásady ochrany osobních údajů</string>
|
||||
<string name="aboutactivity_todo">Seznam budoucích úkolů</string>
|
||||
<string name="aboutactivity_todo_summary">Přečtěte si seznam budoucích úkolů</string>
|
||||
<string name="aboutactivity_donate">Přispějte</string>
|
||||
<string name="aboutactivity_donate_summary">Díky za podporu!</string>
|
||||
<string name="aboutactivity_market">Obchod Play</string>
|
||||
<string name="aboutactivity_market_summary">Pošlete zpětnou vazbu a ohodnoťte ji!</string>
|
||||
<string name="aboutactivity_authormarket">Obchod autora</string>
|
||||
<string name="aboutactivity_authormarket_summary">Ukázat autorovy aplikace!</string>
|
||||
<string name="aboutactivity_xda">XDA thread</string>
|
||||
<string name="aboutactivity_xda_summary">Post your feedback here!</string>
|
||||
</resources>
|
@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@ -17,10 +18,47 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
<string name="recent_files">Recent files</string>
|
||||
<string name="font_size">Font size</string>
|
||||
<string name="connection_name">Connection Name</string>
|
||||
<string name="line_numbers">Line Numbers</string>
|
||||
<string name="wrap_content">Wrap content</string>
|
||||
<string name="view_it_on_the_web">View it on the web</string>
|
||||
<string name="file">File</string>
|
||||
<string name="folder">Folder</string>
|
||||
<string name="light_theme">Light Theme</string>
|
||||
<string name="goto_line">Go to Line</string>
|
||||
<string name="find">Find</string>
|
||||
<string name="replace">Replace</string>
|
||||
<string name="share">Del</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Keyboard suggestions and Swipe</string>
|
||||
<string name="enable_autoencoding">Auto-Encoding</string>
|
||||
<string name="set_as_working_folder">Set as the working folder</string>
|
||||
<string name="is_the_working_folder">This is the working folder</string>
|
||||
<string name="save_changes">Do you want to save the changes to the file %s?</string>
|
||||
<string name="regular_expression">Regular Expression</string>
|
||||
<string name="text_to_find">Text to find</string>
|
||||
<string name="text_to_replace">Text to replace</string>
|
||||
<string name="next">Next</string>
|
||||
<string name="previous">Previous</string>
|
||||
<string name="please_wait">Please wait…</string>
|
||||
<string name="occurrences_found">%s occurrences was found</string>
|
||||
<string name="app_version">Version %s</string>
|
||||
<string name="translate_the_app">Translate</string>
|
||||
<string name="changelog">Ændringslog</string>
|
||||
<string name="match_case">Match case</string>
|
||||
<string name="long_click_for_more_options">Long click for more options</string>
|
||||
<string name="pro_version">Pro version</string>
|
||||
<string name="auto_save">Auto save</string>
|
||||
<string name="read_only">Read only</string>
|
||||
<string name="send_error_reports">Send error reports</string>
|
||||
<string name="extra_options">Extra options</string>
|
||||
<string name="split_text_if_too_long">Split the text if too long</string>
|
||||
<string name="ignore_back_button">Ignore back button</string>
|
||||
<string name="donate">Donate</string>
|
||||
<string name="aggiungi_account">Ny bruger</string>
|
||||
<string name="attiva">Aktiv</string>
|
||||
<string name="cancella">Slet</string>
|
||||
@ -131,40 +169,4 @@
|
||||
<string name="open_a_file">Open a file</string>
|
||||
<string name="open_this_time_only">Open this time only</string>
|
||||
<string name="change_list_type">Change the list type</string>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
<string name="recent_files">Recent files</string>
|
||||
<string name="font_size">Font size</string>
|
||||
<string name="connection_name">Connection Name</string>
|
||||
<string name="line_numbers">Line Numbers</string>
|
||||
<string name="wrap_content">Wrap content</string>
|
||||
<string name="view_it_on_the_web">View it on the web</string>
|
||||
<string name="add">Add</string>
|
||||
<string name="file">File</string>
|
||||
<string name="folder">Folder</string>
|
||||
<string name="light_theme">Light Theme</string>
|
||||
<string name="goto_line">Goto Line</string>
|
||||
<string name="find">Find</string>
|
||||
<string name="replace">Replace</string>
|
||||
<string name="root_permission">Root Permission</string>
|
||||
<string name="share">Del</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Keyboard suggestions and Swipe</string>
|
||||
<string name="enable_autoencoding">Auto-Encoding</string>
|
||||
<string name="set_as_working_folder">Set as the working folder</string>
|
||||
<string name="is_the_working_folder">This is the working folder</string>
|
||||
<string name="save_changes">Do you want to save the changes to the file %s?</string>
|
||||
<string name="regular_expression">Regular Expression</string>
|
||||
<string name="text_to_find">Text to find</string>
|
||||
<string name="text_to_replace">Text to replace</string>
|
||||
<string name="next">Next</string>
|
||||
<string name="previous">Previous</string>
|
||||
<string name="please_wait">Please wait…</string>
|
||||
<string name="occurrences_found">%s occurrences was found</string>
|
||||
<string name="app_version">Version %s</string>
|
||||
<string name="translate_the_app">Translate</string>
|
||||
<string name="changelog">Ændringslog</string>
|
||||
<string name="match_case">Match case</string>
|
||||
<string name="long_click_for_more_options">Long click for more options</string>
|
||||
<string name="pro_version">Pro version</string>
|
||||
<string name="auto_save">Auto save</string>
|
||||
<string name="read_only">Read only</string>
|
||||
</resources>
|
||||
|
@ -1,63 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
~ This file is part of Turbo Editor.
|
||||
~
|
||||
~ Turbo Editor is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 3 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Turbo Editor is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="aboutactivity_info_category">Information</string>
|
||||
<string name="aboutactivity_app_category">Applikationsinfo</string>
|
||||
<string name="aboutactivity_miscellaneous_category">Diverse</string>
|
||||
<string name="aboutactivity_version">Version %1$s</string>
|
||||
<string name="aboutactivity_author">Forfatter</string>
|
||||
<string name="aboutactivity_authorsite">Forfatterens webside</string>
|
||||
<string name="aboutactivity_authorsite_summary">Vis forfatterens websted</string>
|
||||
<string name="aboutactivity_authoremail">Forfatterens mail</string>
|
||||
<string name="aboutactivity_authoremail_summary">Send mail til forfatter</string>
|
||||
<string name="aboutactivity_authortwitter">Twitter</string>
|
||||
<string name="aboutactivity_authortwitter_summary">Vis Twitter-side</string>
|
||||
<string name="aboutactivity_authorgoogleplus">Google+</string>
|
||||
<string name="aboutactivity_authorgoogleplus_summary">Vis Google+-side</string>
|
||||
<string name="aboutactivity_betatester">Bliv betatester</string>
|
||||
<string name="aboutactivity_betatester_summary">Vær en del af fællesskabet og modtag beta-opdateringer</string>
|
||||
<string name="aboutactivity_helptranslate">Oversæt dette program</string>
|
||||
<string name="aboutactivity_helptranslate_summary">Ret et par fejl eller lav en helt ny oversættelse</string>
|
||||
<string name="aboutactivity_readme">Readme</string>
|
||||
<string name="aboutactivity_readme_summary">Læs referencen</string>
|
||||
<string name="aboutactivity_faq">FAQ</string>
|
||||
<string name="aboutactivity_faq_summary">Vis ofte stillede spørgsmål</string>
|
||||
<string name="aboutactivity_changelog">Ændringslog</string>
|
||||
<string name="aboutactivity_changelog_summary">Vis appens ændringslog</string>
|
||||
<string name="aboutactivity_license">Servicevilkår</string>
|
||||
<string name="aboutactivity_license_summary">Læs servicevilkårene</string>
|
||||
<string name="aboutactivity_license_accept">Accepter</string>
|
||||
<string name="aboutactivity_license_refuse">Accepter ikke</string>
|
||||
<string name="aboutactivity_privacy">Privatlivspolitik</string>
|
||||
<string name="aboutactivity_privacy_summary">Læs privatlivspolitikken</string>
|
||||
<string name="aboutactivity_todo">To-do-liste</string>
|
||||
<string name="aboutactivity_todo_summary">Læs to-do-listen</string>
|
||||
<string name="aboutactivity_donate">Lav en donation</string>
|
||||
<string name="aboutactivity_donate_summary">Tak fordi du støtter mig!</string>
|
||||
<string name="aboutactivity_market">Play Butik</string>
|
||||
<string name="aboutactivity_market_summary">Send feedback og bedøm appen!</string>
|
||||
<string name="aboutactivity_authormarket">Forfatterens butik</string>
|
||||
<string name="aboutactivity_authormarket_summary">Vis forfatterens andre apps!</string>
|
||||
<string name="aboutactivity_xda">XDA thread</string>
|
||||
<string name="aboutactivity_xda_summary">Post your feedback here!</string>
|
||||
</resources>
|
@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@ -17,10 +18,47 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Verwenden Sie Monospace</string>
|
||||
<string name="recent_files">Zuletzt geöffnete Dateien</string>
|
||||
<string name="font_size">Schriftgröße</string>
|
||||
<string name="connection_name">Verbindungsname</string>
|
||||
<string name="line_numbers">Zeilennummern</string>
|
||||
<string name="wrap_content">Inhalts Umbruch</string>
|
||||
<string name="view_it_on_the_web">Im Web anschauen</string>
|
||||
<string name="file">Datei</string>
|
||||
<string name="folder">Ordner</string>
|
||||
<string name="light_theme">Helles Design</string>
|
||||
<string name="goto_line">Gehe zu Linie</string>
|
||||
<string name="find">Suchen</string>
|
||||
<string name="replace">Ersetzen</string>
|
||||
<string name="share">Teilen</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Tastatur-und Swipe-Vorschläge</string>
|
||||
<string name="enable_autoencoding">Automatische Zeichencodierung</string>
|
||||
<string name="set_as_working_folder">Als Arbeitsordner festlegen</string>
|
||||
<string name="is_the_working_folder">Das ist der Arbeitsordner</string>
|
||||
<string name="save_changes">Möchten Sie die Änderungen an der Datei %s speichern?</string>
|
||||
<string name="regular_expression">Regulärer Ausdruck</string>
|
||||
<string name="text_to_find">Zu findender Text</string>
|
||||
<string name="text_to_replace">Zu ersetzender Text</string>
|
||||
<string name="next">Weiter</string>
|
||||
<string name="previous">Vorherige</string>
|
||||
<string name="please_wait">Bitte einen Moment Geduld…</string>
|
||||
<string name="occurrences_found">%s Vorkommen gefunden</string>
|
||||
<string name="app_version">Version %s</string>
|
||||
<string name="translate_the_app">Übersetzen</string>
|
||||
<string name="changelog">Changelog</string>
|
||||
<string name="match_case">Groß-/Kleinschreibung beachten</string>
|
||||
<string name="long_click_for_more_options">Lange Klicken für weitere Optionen</string>
|
||||
<string name="pro_version">Pro-Version</string>
|
||||
<string name="auto_save">Automatisches Speichern</string>
|
||||
<string name="read_only">schreibgeschützt</string>
|
||||
<string name="send_error_reports">Send error reports</string>
|
||||
<string name="extra_options">Extra options</string>
|
||||
<string name="split_text_if_too_long">Split the text if too long</string>
|
||||
<string name="ignore_back_button">Ignore back button</string>
|
||||
<string name="donate">Donate</string>
|
||||
<string name="aggiungi_account">Neues Benutzerkonto</string>
|
||||
<string name="attiva">Aktiv</string>
|
||||
<string name="cancella">Löschen</string>
|
||||
@ -45,7 +83,7 @@
|
||||
<string name="home">Home</string>
|
||||
<string name="host">Server</string>
|
||||
<string name="info">Informationen</string>
|
||||
<string name="locale">lokal</string>
|
||||
<string name="locale">Lokal</string>
|
||||
<string name="log_in">Einloggen…</string>
|
||||
<string name="modifica">bearbeiten</string>
|
||||
<string name="muovi">Verschieben</string>
|
||||
@ -131,40 +169,4 @@
|
||||
<string name="open_a_file">Datei öffnen</string>
|
||||
<string name="open_this_time_only">Nur dieses Mal öffnen</string>
|
||||
<string name="change_list_type">Ändern Sie den Typ der Liste</string>
|
||||
<string name="use_monospace">Verwenden Sie Monospace</string>
|
||||
<string name="recent_files">Zuletzt geöffnete Dateien</string>
|
||||
<string name="font_size">Schriftgröße</string>
|
||||
<string name="connection_name">Verbindungsname</string>
|
||||
<string name="line_numbers">Zeilennummern</string>
|
||||
<string name="wrap_content">Inhalts Umbruch</string>
|
||||
<string name="view_it_on_the_web">Im Web anschauen</string>
|
||||
<string name="add">Hinzufügen</string>
|
||||
<string name="file">Datei</string>
|
||||
<string name="folder">Ordner</string>
|
||||
<string name="light_theme">Helles Design</string>
|
||||
<string name="goto_line">Gehe zu Linie</string>
|
||||
<string name="find">Suchen</string>
|
||||
<string name="replace">Ersetzen</string>
|
||||
<string name="root_permission">Root-Berechtigung</string>
|
||||
<string name="share">Teilen</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Tastatur-und Swipe-Vorschläge</string>
|
||||
<string name="enable_autoencoding">Automatische Zeichencodierung</string>
|
||||
<string name="set_as_working_folder">Als Arbeitsordner festlegen</string>
|
||||
<string name="is_the_working_folder">Das ist der Arbeitsordner</string>
|
||||
<string name="save_changes">Möchten Sie die Änderungen an der Datei %s speichern?</string>
|
||||
<string name="regular_expression">Regulärer Ausdruck</string>
|
||||
<string name="text_to_find">Zu findender Text</string>
|
||||
<string name="text_to_replace">Zu ersetzender Text</string>
|
||||
<string name="next">Weiter</string>
|
||||
<string name="previous">Vorherige</string>
|
||||
<string name="please_wait">Bitte einen Moment Geduld…</string>
|
||||
<string name="occurrences_found">%s Vorkommen gefunden</string>
|
||||
<string name="app_version">Version %s</string>
|
||||
<string name="translate_the_app">Übersetzen</string>
|
||||
<string name="changelog">Changelog</string>
|
||||
<string name="match_case">Groß-/Kleinschreibung beachten</string>
|
||||
<string name="long_click_for_more_options">Lange Klicken für weitere Optionen</string>
|
||||
<string name="pro_version">Pro-Version</string>
|
||||
<string name="auto_save">Automatisches Speichern</string>
|
||||
<string name="read_only">schreibgeschützt</string>
|
||||
</resources>
|
||||
|
@ -1,63 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
~ This file is part of Turbo Editor.
|
||||
~
|
||||
~ Turbo Editor is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 3 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Turbo Editor is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="aboutactivity_info_category">Informationen</string>
|
||||
<string name="aboutactivity_app_category">App-Informationen</string>
|
||||
<string name="aboutactivity_miscellaneous_category">Sonstiges</string>
|
||||
<string name="aboutactivity_version">v %1$s</string>
|
||||
<string name="aboutactivity_author">Autor</string>
|
||||
<string name="aboutactivity_authorsite">Website</string>
|
||||
<string name="aboutactivity_authorsite_summary">Die Website des Autors anzeigen</string>
|
||||
<string name="aboutactivity_authoremail">E-Mail</string>
|
||||
<string name="aboutactivity_authoremail_summary">Dem Autor eine E-Mail senden</string>
|
||||
<string name="aboutactivity_authortwitter">Twitter</string>
|
||||
<string name="aboutactivity_authortwitter_summary">Twitter Profil anzeigen</string>
|
||||
<string name="aboutactivity_authorgoogleplus">Google\u002B</string>
|
||||
<string name="aboutactivity_authorgoogleplus_summary">Google\u002B Profil anzeigen</string>
|
||||
<string name="aboutactivity_betatester">Werde Betatester</string>
|
||||
<string name="aboutactivity_betatester_summary">Sei Teil der Community um Beta-Updates zu erhalten</string>
|
||||
<string name="aboutactivity_helptranslate">Übersetze diese Anwendung</string>
|
||||
<string name="aboutactivity_helptranslate_summary">Korrigiere Fehler oder füge eine neue Übersetzung hinzu</string>
|
||||
<string name="aboutactivity_readme">Readme</string>
|
||||
<string name="aboutactivity_readme_summary">Readme-Datei anzeigen</string>
|
||||
<string name="aboutactivity_faq">Häufige Fragen / FAQ</string>
|
||||
<string name="aboutactivity_faq_summary">App-FAQ anzeigen</string>
|
||||
<string name="aboutactivity_changelog">Changelog</string>
|
||||
<string name="aboutactivity_changelog_summary">Changelog anzeigen</string>
|
||||
<string name="aboutactivity_license">Nutzungsbedingungen</string>
|
||||
<string name="aboutactivity_license_summary">Nutzungsbedingungen anzeigen</string>
|
||||
<string name="aboutactivity_license_accept">Akzeptieren</string>
|
||||
<string name="aboutactivity_license_refuse">Ablehnen</string>
|
||||
<string name="aboutactivity_privacy">Datenschutzrichtlinien</string>
|
||||
<string name="aboutactivity_privacy_summary">Datenschutzrichtlinien anzeigen</string>
|
||||
<string name="aboutactivity_todo">ToDo-Liste</string>
|
||||
<string name="aboutactivity_todo_summary">ToDo-Liste anzeigen</string>
|
||||
<string name="aboutactivity_donate">Spenden</string>
|
||||
<string name="aboutactivity_donate_summary">Danke, dass du mich unterstützst</string>
|
||||
<string name="aboutactivity_market">Play Store</string>
|
||||
<string name="aboutactivity_market_summary">Feedback abgeben</string>
|
||||
<string name="aboutactivity_authormarket">Weitere App</string>
|
||||
<string name="aboutactivity_authormarket_summary">Weitere Apps des Autors anzeigen</string>
|
||||
<string name="aboutactivity_xda">XDA thread</string>
|
||||
<string name="aboutactivity_xda_summary">Post your feedback here!</string>
|
||||
</resources>
|
@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@ -17,10 +18,47 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Χρήση monospace γραμματοσειράς</string>
|
||||
<string name="recent_files">Πρόσφατα αρχεία</string>
|
||||
<string name="font_size">Μέγεθος γραμματοσειράς</string>
|
||||
<string name="connection_name">Όνομα σύνδεσης</string>
|
||||
<string name="line_numbers">Αρίθμηση γραμμών</string>
|
||||
<string name="wrap_content">Αναδίπλωση περιεχομένων</string>
|
||||
<string name="view_it_on_the_web">Προβολή αυτού στο Διαδίκτυο</string>
|
||||
<string name="file">Αρχείο</string>
|
||||
<string name="folder">Φάκελος</string>
|
||||
<string name="light_theme">Ανοιχτόχρωμο θέμα</string>
|
||||
<string name="goto_line">Πήγαινε στη γραμμή</string>
|
||||
<string name="find">Εύρεση</string>
|
||||
<string name="replace">Αντικατάσταση</string>
|
||||
<string name="share">Μοίρασε</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Προτάσεις πληκτρολογίου και Swipe</string>
|
||||
<string name="enable_autoencoding">Αυτόματη κωδικοποίηση</string>
|
||||
<string name="set_as_working_folder">Ορισμός ως φάκελο εργασίας</string>
|
||||
<string name="is_the_working_folder">Αυτός είναι ο φάκελος εργασίας</string>
|
||||
<string name="save_changes">Θέλετε να αποθηκεύσετε τις αλλαγές στο αρχείο %s;</string>
|
||||
<string name="regular_expression">Κανονική έκφραση</string>
|
||||
<string name="text_to_find">Κείμενο προς εύρεση</string>
|
||||
<string name="text_to_replace">Κείμενο προς αντικατάσταση</string>
|
||||
<string name="next">Επόμενο</string>
|
||||
<string name="previous">Προηγούμενο</string>
|
||||
<string name="please_wait">Παρακαλώ περιμένετε …</string>
|
||||
<string name="occurrences_found">Βρέθηκαν %s στοιχεία</string>
|
||||
<string name="app_version">Έκδοση %s</string>
|
||||
<string name="translate_the_app">Μετάφραση</string>
|
||||
<string name="changelog">Αρχείο καταγραφής αλλαγών</string>
|
||||
<string name="match_case">Ταίριασμα Πεζών/Κεφαλαίων</string>
|
||||
<string name="long_click_for_more_options">Παρατεταμένο κλικ για περισσότερες επιλογές</string>
|
||||
<string name="pro_version">Pro έκδοση</string>
|
||||
<string name="auto_save">Αυτόματη αποθήκευση</string>
|
||||
<string name="read_only">Μόνο για ανάγνωση</string>
|
||||
<string name="send_error_reports">Send error reports</string>
|
||||
<string name="extra_options">Extra options</string>
|
||||
<string name="split_text_if_too_long">Split the text if too long</string>
|
||||
<string name="ignore_back_button">Ignore back button</string>
|
||||
<string name="donate">Donate</string>
|
||||
<string name="aggiungi_account">Νέος λογαριασμός</string>
|
||||
<string name="attiva">Ενεργό</string>
|
||||
<string name="cancella">Διαγραφή</string>
|
||||
@ -131,40 +169,4 @@
|
||||
<string name="open_a_file">Άνοιγμα αρχείου</string>
|
||||
<string name="open_this_time_only">Άνοιγμα μόνο γι\' αυτή τη φορά</string>
|
||||
<string name="change_list_type">Αλλαγή του τύπου της λίστας</string>
|
||||
<string name="use_monospace">Χρήση monospace γραμματοσειράς</string>
|
||||
<string name="recent_files">Πρόσφατα αρχεία</string>
|
||||
<string name="font_size">Μέγεθος γραμματοσειράς</string>
|
||||
<string name="connection_name">Όνομα σύνδεσης</string>
|
||||
<string name="line_numbers">Αρίθμηση γραμμών</string>
|
||||
<string name="wrap_content">Αναδίπλωση περιεχομένων</string>
|
||||
<string name="view_it_on_the_web">Προβολή αυτού στο Διαδίκτυο</string>
|
||||
<string name="add">Προσθήκη</string>
|
||||
<string name="file">Αρχείο</string>
|
||||
<string name="folder">Φάκελος</string>
|
||||
<string name="light_theme">Ανοιχτόχρωμο θέμα</string>
|
||||
<string name="goto_line">Πήγαινε στη γραμμή</string>
|
||||
<string name="find">Εύρεση</string>
|
||||
<string name="replace">Αντικατάσταση</string>
|
||||
<string name="root_permission">Δικαιώματα Υπερχρήστη</string>
|
||||
<string name="share">Μοίρασε</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Προτάσεις πληκτρολογίου και Swipe</string>
|
||||
<string name="enable_autoencoding">Αυτόματη κωδικοποίηση</string>
|
||||
<string name="set_as_working_folder">Ορισμός ως φάκελο εργασίας</string>
|
||||
<string name="is_the_working_folder">Αυτός είναι ο φάκελος εργασίας</string>
|
||||
<string name="save_changes">Θέλετε να αποθηκεύσετε τις αλλαγές στο αρχείο %s;</string>
|
||||
<string name="regular_expression">Κανονική έκφραση</string>
|
||||
<string name="text_to_find">Κείμενο προς εύρεση</string>
|
||||
<string name="text_to_replace">Κείμενο προς αντικατάσταση</string>
|
||||
<string name="next">Επόμενο</string>
|
||||
<string name="previous">Προηγούμενο</string>
|
||||
<string name="please_wait">Παρακαλώ περιμένετε …</string>
|
||||
<string name="occurrences_found">Βρέθηκαν %s στοιχεία</string>
|
||||
<string name="app_version">Έκδοση %s</string>
|
||||
<string name="translate_the_app">Μετάφραση</string>
|
||||
<string name="changelog">Αρχείο καταγραφής αλλαγών</string>
|
||||
<string name="match_case">Ταίριασμα Πεζών/Κεφαλαίων</string>
|
||||
<string name="long_click_for_more_options">Παρατεταμένο κλικ για περισσότερες επιλογές</string>
|
||||
<string name="pro_version">Pro έκδοση</string>
|
||||
<string name="auto_save">Αυτόματη αποθήκευση</string>
|
||||
<string name="read_only">Μόνο για ανάγνωση</string>
|
||||
</resources>
|
||||
|
@ -1,63 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
~ This file is part of Turbo Editor.
|
||||
~
|
||||
~ Turbo Editor is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 3 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Turbo Editor is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="aboutactivity_info_category">Πληροφορίες</string>
|
||||
<string name="aboutactivity_app_category">Πληροφορίες εφαρμογής</string>
|
||||
<string name="aboutactivity_miscellaneous_category">Διάφορα</string>
|
||||
<string name="aboutactivity_version">Έκδοση %1$s</string>
|
||||
<string name="aboutactivity_author">Δημιουργός</string>
|
||||
<string name="aboutactivity_authorsite">Ιστότοπος δημιουργού</string>
|
||||
<string name="aboutactivity_authorsite_summary">Προβολή ιστότοπου δημιουργού</string>
|
||||
<string name="aboutactivity_authoremail">Email δημιουργού</string>
|
||||
<string name="aboutactivity_authoremail_summary">Αποστολή email στον δημιουργό</string>
|
||||
<string name="aboutactivity_authortwitter">Twitter</string>
|
||||
<string name="aboutactivity_authortwitter_summary">Προβολή σελίδας στο Twitter</string>
|
||||
<string name="aboutactivity_authorgoogleplus">Google Plus</string>
|
||||
<string name="aboutactivity_authorgoogleplus_summary">Προβολή σελίδας στο Google Plus</string>
|
||||
<string name="aboutactivity_betatester">Γίνετε beta tester</string>
|
||||
<string name="aboutactivity_betatester_summary">Γίνετε μέρος της κοινότητας για να λαμβάνετε ενημερώσεις beta εκδόσεων</string>
|
||||
<string name="aboutactivity_helptranslate">Μεταφράστε την εφαρμογή</string>
|
||||
<string name="aboutactivity_helptranslate_summary">Διορθώσει κάποια λάθη ή προσθέσετε μια νέα μετάφραση</string>
|
||||
<string name="aboutactivity_readme">Αρχείο πληροφοριών</string>
|
||||
<string name="aboutactivity_readme_summary">Διαβάστε την αναφορά</string>
|
||||
<string name="aboutactivity_faq">ΣΥΧΝΈΣ ΕΡΩΤΉΣΕΙΣ</string>
|
||||
<string name="aboutactivity_faq_summary">Προβολή ΣΕΑ εφαρμογής</string>
|
||||
<string name="aboutactivity_changelog">Αρχείο καταγραφής αλλαγών</string>
|
||||
<string name="aboutactivity_changelog_summary">Προβολή αρχείου καταγραφής αλλαγών</string>
|
||||
<string name="aboutactivity_license">Όροι παροχής υπηρεσιών</string>
|
||||
<string name="aboutactivity_license_summary">Διαβάστε τους όρους παροχής υπηρεσιών</string>
|
||||
<string name="aboutactivity_license_accept">Αποδοχή</string>
|
||||
<string name="aboutactivity_license_refuse">Άρνηση</string>
|
||||
<string name="aboutactivity_privacy">Πολιτική απορρήτου</string>
|
||||
<string name="aboutactivity_privacy_summary">Διαβάζετε την πολιτική απορρήτου</string>
|
||||
<string name="aboutactivity_todo">Λίστα ToDo</string>
|
||||
<string name="aboutactivity_todo_summary">Διαβάστε τη λίστα todo</string>
|
||||
<string name="aboutactivity_donate">Κάντε μια δωρεά</string>
|
||||
<string name="aboutactivity_donate_summary">Σας ευχαριστούμε για την υποστήριξη!</string>
|
||||
<string name="aboutactivity_market">Play Store</string>
|
||||
<string name="aboutactivity_market_summary">Αποστολή σχολίων και βαθμολογίας!</string>
|
||||
<string name="aboutactivity_authormarket">Κατάστημα του δημιουργού</string>
|
||||
<string name="aboutactivity_authormarket_summary">Προβολή άλλων εφαρμογών του δημιουργού!</string>
|
||||
<string name="aboutactivity_xda">XDA thread</string>
|
||||
<string name="aboutactivity_xda_summary">Post your feedback here!</string>
|
||||
</resources>
|
@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@ -17,10 +18,47 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Usar monoespacio</string>
|
||||
<string name="recent_files">Archivos recientes</string>
|
||||
<string name="font_size">Tamaño de la fuente</string>
|
||||
<string name="connection_name">Nombre de la conexión</string>
|
||||
<string name="line_numbers">Números de línea</string>
|
||||
<string name="wrap_content">Ajuste de línea</string>
|
||||
<string name="view_it_on_the_web">Ver en la web</string>
|
||||
<string name="file">Fichero</string>
|
||||
<string name="folder">archivo</string>
|
||||
<string name="light_theme">Tema claro</string>
|
||||
<string name="goto_line">Ir a línea</string>
|
||||
<string name="find">Buscar</string>
|
||||
<string name="replace">Reemplazar</string>
|
||||
<string name="share">Compartir</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Sugerencias de teclado y Swipe</string>
|
||||
<string name="enable_autoencoding">Auto-Codificación</string>
|
||||
<string name="set_as_working_folder">Establecer como la carpeta de trabajo</string>
|
||||
<string name="is_the_working_folder">Este es el directorio de trabajo</string>
|
||||
<string name="save_changes">¿Deseas guardar los cambios del fichero %s?</string>
|
||||
<string name="regular_expression">Expresión regular</string>
|
||||
<string name="text_to_find">Texto a encontrar</string>
|
||||
<string name="text_to_replace">Texto a reemplazar</string>
|
||||
<string name="next">Siguiente</string>
|
||||
<string name="previous">Anterior</string>
|
||||
<string name="please_wait">Espere por favor…</string>
|
||||
<string name="occurrences_found">%s coincidencias fueron encontradas</string>
|
||||
<string name="app_version">Versión %s</string>
|
||||
<string name="translate_the_app">Traducir</string>
|
||||
<string name="changelog">Log de cambios</string>
|
||||
<string name="match_case">Coincidir mayúsculas y minúscualas</string>
|
||||
<string name="long_click_for_more_options">Pulsación larga para más opciones</string>
|
||||
<string name="pro_version">Versión Pro</string>
|
||||
<string name="auto_save">Auto guardar</string>
|
||||
<string name="read_only">Sólo lectura</string>
|
||||
<string name="send_error_reports">Envíar reporte de errores</string>
|
||||
<string name="extra_options">Opciones extra</string>
|
||||
<string name="split_text_if_too_long">Split the text if too long</string>
|
||||
<string name="ignore_back_button">Ignorar el botón de regreso</string>
|
||||
<string name="donate">Donate</string>
|
||||
<string name="aggiungi_account">Nueva Cuenta</string>
|
||||
<string name="attiva">Activo</string>
|
||||
<string name="cancella">Borrar</string>
|
||||
@ -131,40 +169,4 @@
|
||||
<string name="open_a_file">Abrir un archivo</string>
|
||||
<string name="open_this_time_only">Abrir solo esta vez</string>
|
||||
<string name="change_list_type">Cambiar el tipo de lista</string>
|
||||
<string name="use_monospace">Usar monoespacio</string>
|
||||
<string name="recent_files">Archivos recientes</string>
|
||||
<string name="font_size">Tamaño de la fuente</string>
|
||||
<string name="connection_name">Nombre de la conexión</string>
|
||||
<string name="line_numbers">Números de línea</string>
|
||||
<string name="wrap_content">Ajuste de línea</string>
|
||||
<string name="view_it_on_the_web">Ver en la web</string>
|
||||
<string name="add">Añadir</string>
|
||||
<string name="file">Fichero</string>
|
||||
<string name="folder">archivo</string>
|
||||
<string name="light_theme">Tema claro</string>
|
||||
<string name="goto_line">Ir a línea</string>
|
||||
<string name="find">Buscar</string>
|
||||
<string name="replace">Reemplazar</string>
|
||||
<string name="root_permission">Permisos de root</string>
|
||||
<string name="share">Compartir</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Sugerencias de teclado y Swipe</string>
|
||||
<string name="enable_autoencoding">Auto-Codificación</string>
|
||||
<string name="set_as_working_folder">Establecer como la carpeta de trabajo</string>
|
||||
<string name="is_the_working_folder">Este es el directorio de trabajo</string>
|
||||
<string name="save_changes">¿Deseas guardar los cambios del fichero %s?</string>
|
||||
<string name="regular_expression">Expresión regular</string>
|
||||
<string name="text_to_find">Texto a encontrar</string>
|
||||
<string name="text_to_replace">Texto a reemplazar</string>
|
||||
<string name="next">Siguiente</string>
|
||||
<string name="previous">Anterior</string>
|
||||
<string name="please_wait">Espere por favor…</string>
|
||||
<string name="occurrences_found">%s coincidencias fueron encontradas</string>
|
||||
<string name="app_version">Versión %s</string>
|
||||
<string name="translate_the_app">Traducir</string>
|
||||
<string name="changelog">Log de cambios</string>
|
||||
<string name="match_case">Coincidir mayúsculas y minúscualas</string>
|
||||
<string name="long_click_for_more_options">Pulsación larga para más opciones</string>
|
||||
<string name="pro_version">Versión Pro</string>
|
||||
<string name="auto_save">Auto guardar</string>
|
||||
<string name="read_only">Sólo lectura</string>
|
||||
</resources>
|
||||
|
@ -1,63 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
~ This file is part of Turbo Editor.
|
||||
~
|
||||
~ Turbo Editor is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 3 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Turbo Editor is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="aboutactivity_info_category">Información</string>
|
||||
<string name="aboutactivity_app_category">Información sobre la aplicación</string>
|
||||
<string name="aboutactivity_miscellaneous_category">Misceláneos</string>
|
||||
<string name="aboutactivity_version">Versión %1$s</string>
|
||||
<string name="aboutactivity_author">Autor</string>
|
||||
<string name="aboutactivity_authorsite">Site del autor</string>
|
||||
<string name="aboutactivity_authorsite_summary">Abrir el site del autor</string>
|
||||
<string name="aboutactivity_authoremail">Correo del autor</string>
|
||||
<string name="aboutactivity_authoremail_summary">Enviar correo al autor</string>
|
||||
<string name="aboutactivity_authortwitter">Twitter</string>
|
||||
<string name="aboutactivity_authortwitter_summary">Abrir el twitter</string>
|
||||
<string name="aboutactivity_authorgoogleplus">Google+</string>
|
||||
<string name="aboutactivity_authorgoogleplus_summary">Ir a la página de Google+</string>
|
||||
<string name="aboutactivity_betatester">Ser un beta tester</string>
|
||||
<string name="aboutactivity_betatester_summary">Ser parte de la comunidad para recibir actualizaciones beta</string>
|
||||
<string name="aboutactivity_helptranslate">Traducir la Aplicación</string>
|
||||
<string name="aboutactivity_helptranslate_summary">Corrige algunos errores o añadir una nueva traducción</string>
|
||||
<string name="aboutactivity_readme">Leeme</string>
|
||||
<string name="aboutactivity_readme_summary">Leer la referencia</string>
|
||||
<string name="aboutactivity_faq">Respuestas a preguntas frecuentes</string>
|
||||
<string name="aboutactivity_faq_summary">Mostrar las faqs</string>
|
||||
<string name="aboutactivity_changelog">Log de cambios</string>
|
||||
<string name="aboutactivity_changelog_summary">Mostrar el log de cambios</string>
|
||||
<string name="aboutactivity_license">Términos del servicio</string>
|
||||
<string name="aboutactivity_license_summary">Leer los términos del servicio</string>
|
||||
<string name="aboutactivity_license_accept">Aceptar</string>
|
||||
<string name="aboutactivity_license_refuse">Declinar</string>
|
||||
<string name="aboutactivity_privacy">Políticas de privacidad</string>
|
||||
<string name="aboutactivity_privacy_summary">Leer las políticas de privacidad</string>
|
||||
<string name="aboutactivity_todo">Cosas pendientes</string>
|
||||
<string name="aboutactivity_todo_summary">Ver los cambios pendientes</string>
|
||||
<string name="aboutactivity_donate">Donar</string>
|
||||
<string name="aboutactivity_donate_summary">¡Gracias por el soporte!</string>
|
||||
<string name="aboutactivity_market">Market de Android</string>
|
||||
<string name="aboutactivity_market_summary">¡Envía feedback y puntúa!</string>
|
||||
<string name="aboutactivity_authormarket">Market del autor</string>
|
||||
<string name="aboutactivity_authormarket_summary">¡Ver las aplicaciones del autor!</string>
|
||||
<string name="aboutactivity_xda">Hilo XDA</string>
|
||||
<string name="aboutactivity_xda_summary">Publicar su feedback aquí!</string>
|
||||
</resources>
|
@ -1,60 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
~ This file is part of Turbo Editor.
|
||||
~
|
||||
~ Turbo Editor is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 3 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Turbo Editor is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="aboutactivity_info_category">Información</string>
|
||||
<string name="aboutactivity_app_category">Informacion de la aplicacion</string>
|
||||
<string name="aboutactivity_miscellaneous_category">Misceláneos</string>
|
||||
<string name="aboutactivity_version">Version %1$s</string>
|
||||
<string name="aboutactivity_author">Autor</string>
|
||||
<string name="aboutactivity_authorsite">Sitio del autor</string>
|
||||
<string name="aboutactivity_authorsite_summary">Abrir el sitio del autor</string>
|
||||
<string name="aboutactivity_authoremail">Correo del autor</string>
|
||||
<string name="aboutactivity_authoremail_summary">Enviar correo al autor</string>
|
||||
<string name="aboutactivity_authortwitter">Twitter</string>
|
||||
<string name="aboutactivity_authortwitter_summary">Mostrar pagina de Twitter</string>
|
||||
<string name="aboutactivity_authorgoogleplus">Google+</string>
|
||||
<string name="aboutactivity_authorgoogleplus_summary">Ir a la página de Google+</string>
|
||||
<string name="aboutactivity_betatester">Convertido en un beta tester</string>
|
||||
<string name="aboutactivity_betatester_summary">Sea parte de la comunidad para recibir actualizaciones beta</string>
|
||||
<string name="aboutactivity_helptranslate">Traducir la aplicacion</string>
|
||||
<string name="aboutactivity_helptranslate_summary">Corregir algunos errores o añadir una nueva traducción</string>
|
||||
<string name="aboutactivity_readme">Leame</string>
|
||||
<string name="aboutactivity_readme_summary">Lea la referencia</string>
|
||||
<string name="aboutactivity_faq">Preguntas mas frecuentes</string>
|
||||
<string name="aboutactivity_faq_summary">Var las Preguntas mas frecuentes de la aplicacion</string>
|
||||
<string name="aboutactivity_changelog">Combios</string>
|
||||
<string name="aboutactivity_changelog_summary">Mostrar cambios en la aplicacion</string>
|
||||
<string name="aboutactivity_license">Terminos del servicio</string>
|
||||
<string name="aboutactivity_license_summary">Lea los terminos del servicio</string>
|
||||
<string name="aboutactivity_license_accept">Acepto</string>
|
||||
<string name="aboutactivity_license_refuse">Declinar</string>
|
||||
<string name="aboutactivity_privacy">Politica de privacidad</string>
|
||||
<string name="aboutactivity_privacy_summary">Lea la política de privacidad</string>
|
||||
<string name="aboutactivity_todo">Lista de pendientes</string>
|
||||
<string name="aboutactivity_todo_summary">Ver los cambios pendientes</string>
|
||||
<string name="aboutactivity_donate">Donar</string>
|
||||
<string name="aboutactivity_donate_summary">Gracias por apoyarme!</string>
|
||||
<string name="aboutactivity_market">Play Store</string>
|
||||
<string name="aboutactivity_market_summary">Enviar comentarios y votar!</string>
|
||||
<string name="aboutactivity_authormarket">Tienda de autor</string>
|
||||
<string name="aboutactivity_authormarket_summary">Ver aplicaciones del autor!</string>
|
||||
</resources>
|
@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@ -17,10 +18,47 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Käytä tasalevyistä fonttia</string>
|
||||
<string name="recent_files">Viimeisimmät tiedostot</string>
|
||||
<string name="font_size">Fonttikoko</string>
|
||||
<string name="connection_name">Yhteyden nimi</string>
|
||||
<string name="line_numbers">Rivinumerot</string>
|
||||
<string name="wrap_content">Rivitä sisältö</string>
|
||||
<string name="view_it_on_the_web">Tarkastele verkossa</string>
|
||||
<string name="file">Tiedosto</string>
|
||||
<string name="folder">Kansio</string>
|
||||
<string name="light_theme">Vaalea teema</string>
|
||||
<string name="goto_line">Siirry riville</string>
|
||||
<string name="find">Löydä</string>
|
||||
<string name="replace">Korvaa</string>
|
||||
<string name="share">Jaa</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Näppäimistöehdotukset ja pyyhkäisy</string>
|
||||
<string name="enable_autoencoding">Automaattinen koodaus</string>
|
||||
<string name="set_as_working_folder">Määritä työkansioksi</string>
|
||||
<string name="is_the_working_folder">Tämä on työkansio</string>
|
||||
<string name="save_changes">Haluatko tallentaa muutokset tiedostoon %s?</string>
|
||||
<string name="regular_expression">Säännöllinen lauseke</string>
|
||||
<string name="text_to_find">Etsittävä teksti</string>
|
||||
<string name="text_to_replace">Korvattava teksti</string>
|
||||
<string name="next">Seuraava</string>
|
||||
<string name="previous">Edellinen</string>
|
||||
<string name="please_wait">Odota…</string>
|
||||
<string name="occurrences_found">%s esiintymää löydettiin</string>
|
||||
<string name="app_version">Versio %s</string>
|
||||
<string name="translate_the_app">Auta kääntämisessä</string>
|
||||
<string name="changelog">Muutosloki</string>
|
||||
<string name="match_case">Sama kirjainkoko</string>
|
||||
<string name="long_click_for_more_options">Saat lisää vaihtoehtoja napsauttamalla</string>
|
||||
<string name="pro_version">Pro-versio</string>
|
||||
<string name="auto_save">Automaattinen tallennus</string>
|
||||
<string name="read_only">Vain luku</string>
|
||||
<string name="send_error_reports">Lähetä virheraportit</string>
|
||||
<string name="extra_options">Lisäasetukset</string>
|
||||
<string name="split_text_if_too_long">Jaa liian pitkä teksti</string>
|
||||
<string name="ignore_back_button">Ohita Takaisin-painike</string>
|
||||
<string name="donate">Donate</string>
|
||||
<string name="aggiungi_account">Uusi tili</string>
|
||||
<string name="attiva">Aktiivinen</string>
|
||||
<string name="cancella">Poista</string>
|
||||
@ -131,40 +169,4 @@
|
||||
<string name="open_a_file">Avaa tiedosto</string>
|
||||
<string name="open_this_time_only">Avaa vain tällä kertaa</string>
|
||||
<string name="change_list_type">Muuta luettelotyyliä</string>
|
||||
<string name="use_monospace">Käytä tasalevyistä fonttia</string>
|
||||
<string name="recent_files">Viimeisimmät tiedostot</string>
|
||||
<string name="font_size">Fonttikoko</string>
|
||||
<string name="connection_name">Yhteyden nimi</string>
|
||||
<string name="line_numbers">Rivinumerot</string>
|
||||
<string name="wrap_content">Rivitä sisältö</string>
|
||||
<string name="view_it_on_the_web">Tarkastele verkossa</string>
|
||||
<string name="add">Lisää</string>
|
||||
<string name="file">Tiedosto</string>
|
||||
<string name="folder">Kansio</string>
|
||||
<string name="light_theme">Vaalea teema</string>
|
||||
<string name="goto_line">Siirry riville</string>
|
||||
<string name="find">Löydä</string>
|
||||
<string name="replace">Korvaa</string>
|
||||
<string name="root_permission">Pääkäyttäjän oikeudet</string>
|
||||
<string name="share">Jaa</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Näppäimistöehdotukset ja pyyhkäisy</string>
|
||||
<string name="enable_autoencoding">Automaattinen koodaus</string>
|
||||
<string name="set_as_working_folder">Määritä työkansioksi</string>
|
||||
<string name="is_the_working_folder">Tämä on työkansio</string>
|
||||
<string name="save_changes">Haluatko tallentaa muutokset tiedostoon %s?</string>
|
||||
<string name="regular_expression">Säännöllinen lauseke</string>
|
||||
<string name="text_to_find">Etsittävä teksti</string>
|
||||
<string name="text_to_replace">Korvattava teksti</string>
|
||||
<string name="next">Seuraava</string>
|
||||
<string name="previous">Edellinen</string>
|
||||
<string name="please_wait">Odota…</string>
|
||||
<string name="occurrences_found">%s esiintymää löydettiin</string>
|
||||
<string name="app_version">Versio %s</string>
|
||||
<string name="translate_the_app">Auta kääntämisessä</string>
|
||||
<string name="changelog">Muutosloki</string>
|
||||
<string name="match_case">Sama kirjainkoko</string>
|
||||
<string name="long_click_for_more_options">Saat lisää vaihtoehtoja napsauttamalla</string>
|
||||
<string name="pro_version">Pro-versio</string>
|
||||
<string name="auto_save">Automaattinen tallennus</string>
|
||||
<string name="read_only">Vain luku</string>
|
||||
</resources>
|
||||
|
@ -1,63 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
~ This file is part of Turbo Editor.
|
||||
~
|
||||
~ Turbo Editor is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 3 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Turbo Editor is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="aboutactivity_info_category">Tiedot</string>
|
||||
<string name="aboutactivity_app_category">Sovelluksen tiedot</string>
|
||||
<string name="aboutactivity_miscellaneous_category">Sekalaiset</string>
|
||||
<string name="aboutactivity_version">Versio %1$s</string>
|
||||
<string name="aboutactivity_author">Kehittäjä</string>
|
||||
<string name="aboutactivity_authorsite">Kotisivut</string>
|
||||
<string name="aboutactivity_authorsite_summary">Näytä kehittäjän kotisivut</string>
|
||||
<string name="aboutactivity_authoremail">Sähköposti</string>
|
||||
<string name="aboutactivity_authoremail_summary">Lähetä sähköpostia kehittäjälle</string>
|
||||
<string name="aboutactivity_authortwitter">Twitter</string>
|
||||
<string name="aboutactivity_authortwitter_summary">Näytä kehittäjän Twitter-sivu</string>
|
||||
<string name="aboutactivity_authorgoogleplus">Google+</string>
|
||||
<string name="aboutactivity_authorgoogleplus_summary">Näytä kehittäjän Google+-sivu</string>
|
||||
<string name="aboutactivity_betatester">Ryhdy beetatestaajaksi</string>
|
||||
<string name="aboutactivity_betatester_summary">Ole osa yhteisöä vastaanottamalla beetapäivityksiä</string>
|
||||
<string name="aboutactivity_helptranslate">Käännä sovellus</string>
|
||||
<string name="aboutactivity_helptranslate_summary">Korjaa virheitä tai lisää uusia käännöksiä</string>
|
||||
<string name="aboutactivity_readme">Lue minut</string>
|
||||
<string name="aboutactivity_readme_summary">Lue viite</string>
|
||||
<string name="aboutactivity_faq">UKK</string>
|
||||
<string name="aboutactivity_faq_summary">Näytä usein kysytyt kysymykset</string>
|
||||
<string name="aboutactivity_changelog">Muutosloki</string>
|
||||
<string name="aboutactivity_changelog_summary">Näytä sovelluksen muutosloki</string>
|
||||
<string name="aboutactivity_license">Käyttöehdot</string>
|
||||
<string name="aboutactivity_license_summary">Lue käyttöehdot</string>
|
||||
<string name="aboutactivity_license_accept">Hyväksy</string>
|
||||
<string name="aboutactivity_license_refuse">Hylkää</string>
|
||||
<string name="aboutactivity_privacy">Yksityisyyskäytäntö</string>
|
||||
<string name="aboutactivity_privacy_summary">Lue yksityisyyskäytäntö</string>
|
||||
<string name="aboutactivity_todo">Tehtävälista</string>
|
||||
<string name="aboutactivity_todo_summary">Lue tehtävälista</string>
|
||||
<string name="aboutactivity_donate">Tee lahjoitus</string>
|
||||
<string name="aboutactivity_donate_summary">Kiitos tuestanne!</string>
|
||||
<string name="aboutactivity_market">Play-kauppa</string>
|
||||
<string name="aboutactivity_market_summary">Lähetä palautetta ja arvostele!</string>
|
||||
<string name="aboutactivity_authormarket">Muut sovellukset</string>
|
||||
<string name="aboutactivity_authormarket_summary">Näytä kehittäjän muut sovellukset</string>
|
||||
<string name="aboutactivity_xda">XDA-ketju</string>
|
||||
<string name="aboutactivity_xda_summary">Lähetä palautteesi tänne!</string>
|
||||
</resources>
|
@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@ -17,10 +18,47 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
<string name="recent_files">Recent files</string>
|
||||
<string name="font_size">Font size</string>
|
||||
<string name="connection_name">Connection Name</string>
|
||||
<string name="line_numbers">Line Numbers</string>
|
||||
<string name="wrap_content">Wrap content</string>
|
||||
<string name="view_it_on_the_web">View it on the web</string>
|
||||
<string name="file">File</string>
|
||||
<string name="folder">Folder</string>
|
||||
<string name="light_theme">Light Theme</string>
|
||||
<string name="goto_line">Go to Line</string>
|
||||
<string name="find">Find</string>
|
||||
<string name="replace">Replace</string>
|
||||
<string name="share">Share</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Keyboard suggestions and Swipe</string>
|
||||
<string name="enable_autoencoding">Auto-Encoding</string>
|
||||
<string name="set_as_working_folder">Set as the working folder</string>
|
||||
<string name="is_the_working_folder">This is the working folder</string>
|
||||
<string name="save_changes">Do you want to save the changes to the file %s?</string>
|
||||
<string name="regular_expression">Regular Expression</string>
|
||||
<string name="text_to_find">Text to find</string>
|
||||
<string name="text_to_replace">Text to replace</string>
|
||||
<string name="next">Next</string>
|
||||
<string name="previous">Previous</string>
|
||||
<string name="please_wait">Please wait…</string>
|
||||
<string name="occurrences_found">%s occurrences was found</string>
|
||||
<string name="app_version">Version %s</string>
|
||||
<string name="translate_the_app">Translate</string>
|
||||
<string name="changelog">Changelog</string>
|
||||
<string name="match_case">Match case</string>
|
||||
<string name="long_click_for_more_options">Long click for more options</string>
|
||||
<string name="pro_version">Pro version</string>
|
||||
<string name="auto_save">Auto save</string>
|
||||
<string name="read_only">Read only</string>
|
||||
<string name="send_error_reports">Send error reports</string>
|
||||
<string name="extra_options">Extra options</string>
|
||||
<string name="split_text_if_too_long">Split the text if too long</string>
|
||||
<string name="ignore_back_button">Ignore back button</string>
|
||||
<string name="donate">Donate</string>
|
||||
<string name="aggiungi_account">New account</string>
|
||||
<string name="attiva">Active</string>
|
||||
<string name="cancella">Delete</string>
|
||||
@ -131,40 +169,4 @@
|
||||
<string name="open_a_file">Open a file</string>
|
||||
<string name="open_this_time_only">Open this time only</string>
|
||||
<string name="change_list_type">Change the list type</string>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
<string name="recent_files">Recent files</string>
|
||||
<string name="font_size">Font size</string>
|
||||
<string name="connection_name">Connection Name</string>
|
||||
<string name="line_numbers">Line Numbers</string>
|
||||
<string name="wrap_content">Wrap content</string>
|
||||
<string name="view_it_on_the_web">View it on the web</string>
|
||||
<string name="add">Add</string>
|
||||
<string name="file">File</string>
|
||||
<string name="folder">Folder</string>
|
||||
<string name="light_theme">Light Theme</string>
|
||||
<string name="goto_line">Goto Line</string>
|
||||
<string name="find">Find</string>
|
||||
<string name="replace">Replace</string>
|
||||
<string name="root_permission">Root Permission</string>
|
||||
<string name="share">Share</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Keyboard suggestions and Swipe</string>
|
||||
<string name="enable_autoencoding">Auto-Encoding</string>
|
||||
<string name="set_as_working_folder">Set as the working folder</string>
|
||||
<string name="is_the_working_folder">This is the working folder</string>
|
||||
<string name="save_changes">Do you want to save the changes to the file %s?</string>
|
||||
<string name="regular_expression">Regular Expression</string>
|
||||
<string name="text_to_find">Text to find</string>
|
||||
<string name="text_to_replace">Text to replace</string>
|
||||
<string name="next">Next</string>
|
||||
<string name="previous">Previous</string>
|
||||
<string name="please_wait">Please wait…</string>
|
||||
<string name="occurrences_found">%s occurrences was found</string>
|
||||
<string name="app_version">Version %s</string>
|
||||
<string name="translate_the_app">Translate</string>
|
||||
<string name="changelog">Changelog</string>
|
||||
<string name="match_case">Match case</string>
|
||||
<string name="long_click_for_more_options">Long click for more options</string>
|
||||
<string name="pro_version">Pro version</string>
|
||||
<string name="auto_save">Auto save</string>
|
||||
<string name="read_only">Read only</string>
|
||||
</resources>
|
||||
|
@ -1,63 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
~ This file is part of Turbo Editor.
|
||||
~
|
||||
~ Turbo Editor is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 3 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Turbo Editor is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="aboutactivity_info_category">Info</string>
|
||||
<string name="aboutactivity_app_category">Application Info</string>
|
||||
<string name="aboutactivity_miscellaneous_category">Miscellaneous</string>
|
||||
<string name="aboutactivity_version">Version %1$s</string>
|
||||
<string name="aboutactivity_author">Author</string>
|
||||
<string name="aboutactivity_authorsite">Author site</string>
|
||||
<string name="aboutactivity_authorsite_summary">Show author site</string>
|
||||
<string name="aboutactivity_authoremail">Author mail</string>
|
||||
<string name="aboutactivity_authoremail_summary">Send mail to author</string>
|
||||
<string name="aboutactivity_authortwitter">Twitter</string>
|
||||
<string name="aboutactivity_authortwitter_summary">Show twitter page</string>
|
||||
<string name="aboutactivity_authorgoogleplus">Google Plus</string>
|
||||
<string name="aboutactivity_authorgoogleplus_summary">Show Google Plus page</string>
|
||||
<string name="aboutactivity_betatester">Become a beta tester</string>
|
||||
<string name="aboutactivity_betatester_summary">Be a part of the community to receive beta updates</string>
|
||||
<string name="aboutactivity_helptranslate">Translate the Application</string>
|
||||
<string name="aboutactivity_helptranslate_summary">Correct some mistakes or add a new translation</string>
|
||||
<string name="aboutactivity_readme">Read Me</string>
|
||||
<string name="aboutactivity_readme_summary">Read the reference</string>
|
||||
<string name="aboutactivity_faq">FAQ</string>
|
||||
<string name="aboutactivity_faq_summary">Show app faq</string>
|
||||
<string name="aboutactivity_changelog">ChangeLog</string>
|
||||
<string name="aboutactivity_changelog_summary">Show app changelog</string>
|
||||
<string name="aboutactivity_license">Terms of service</string>
|
||||
<string name="aboutactivity_license_summary">Read the Terms of service</string>
|
||||
<string name="aboutactivity_license_accept">Accept</string>
|
||||
<string name="aboutactivity_license_refuse">Refuse</string>
|
||||
<string name="aboutactivity_privacy">Privacy policy</string>
|
||||
<string name="aboutactivity_privacy_summary">Read the Privacy policy</string>
|
||||
<string name="aboutactivity_todo">ToDo List</string>
|
||||
<string name="aboutactivity_todo_summary">Read the todo list</string>
|
||||
<string name="aboutactivity_donate">Make a donation</string>
|
||||
<string name="aboutactivity_donate_summary">Thank you for supporting me!</string>
|
||||
<string name="aboutactivity_market">Play Store</string>
|
||||
<string name="aboutactivity_market_summary">Send feedback and rate it!</string>
|
||||
<string name="aboutactivity_authormarket">Author Store</string>
|
||||
<string name="aboutactivity_authormarket_summary">Show author applications!</string>
|
||||
<string name="aboutactivity_xda">XDA thread</string>
|
||||
<string name="aboutactivity_xda_summary">Post your feedback here!</string>
|
||||
</resources>
|
@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@ -17,10 +18,47 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Utiliser une police de largeur fixe</string>
|
||||
<string name="recent_files">Fichiers récents</string>
|
||||
<string name="font_size">Taille de la police</string>
|
||||
<string name="connection_name">Nom de la connexion</string>
|
||||
<string name="line_numbers">Numéros de ligne</string>
|
||||
<string name="wrap_content">Regrouper le contenu</string>
|
||||
<string name="view_it_on_the_web">Voir sur le web</string>
|
||||
<string name="file">Fichier</string>
|
||||
<string name="folder">Dossier </string>
|
||||
<string name="light_theme">Thème clair</string>
|
||||
<string name="goto_line">Aller à la ligne</string>
|
||||
<string name="find">Rechercher</string>
|
||||
<string name="replace">Remplacer</string>
|
||||
<string name="share">Partager</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Suggestions clavier et gestes spéciaux</string>
|
||||
<string name="enable_autoencoding">Encodage automatique</string>
|
||||
<string name="set_as_working_folder">Définir comme dossier courant</string>
|
||||
<string name="is_the_working_folder">C\'est le dossier courant</string>
|
||||
<string name="save_changes">Voulez-vous enregistrer les modifications du fichier %s ?</string>
|
||||
<string name="regular_expression">Expression régulière</string>
|
||||
<string name="text_to_find">Texte à rechercher</string>
|
||||
<string name="text_to_replace">Texte à remplacer</string>
|
||||
<string name="next">Suivant</string>
|
||||
<string name="previous">Précédent</string>
|
||||
<string name="please_wait">Veuillez patienter…</string>
|
||||
<string name="occurrences_found">occurrences de %s ont été trouvées</string>
|
||||
<string name="app_version">Version %s</string>
|
||||
<string name="translate_the_app">Traduire</string>
|
||||
<string name="changelog">Historique des changements</string>
|
||||
<string name="match_case">Respecter la casse</string>
|
||||
<string name="long_click_for_more_options">Clic long pour plus d\'options</string>
|
||||
<string name="pro_version">Version Pro</string>
|
||||
<string name="auto_save">Sauvegarde automatique</string>
|
||||
<string name="read_only">Lecture seule</string>
|
||||
<string name="send_error_reports">Envoyer les rapports d\'erreur</string>
|
||||
<string name="extra_options">Extra options</string>
|
||||
<string name="split_text_if_too_long">Split the text if too long</string>
|
||||
<string name="ignore_back_button">Ignore back button</string>
|
||||
<string name="donate">Donate</string>
|
||||
<string name="aggiungi_account">Nouveau compte</string>
|
||||
<string name="attiva">Actif</string>
|
||||
<string name="cancella">Supprimer</string>
|
||||
@ -131,40 +169,4 @@
|
||||
<string name="open_a_file">Ouvrir un fichier</string>
|
||||
<string name="open_this_time_only">Ouvrir cette fois-ci seulement</string>
|
||||
<string name="change_list_type">Modifier le type de liste</string>
|
||||
<string name="use_monospace">Utiliser une police de largeur fixe</string>
|
||||
<string name="recent_files">Fichiers récents</string>
|
||||
<string name="font_size">Taille de la police</string>
|
||||
<string name="connection_name">Nom de la connexion</string>
|
||||
<string name="line_numbers">Numéros de ligne</string>
|
||||
<string name="wrap_content">Regrouper le contenu</string>
|
||||
<string name="view_it_on_the_web">Voir sur le web</string>
|
||||
<string name="add">Ajouter</string>
|
||||
<string name="file">Fichier</string>
|
||||
<string name="folder">Dossier </string>
|
||||
<string name="light_theme">Thème clair</string>
|
||||
<string name="goto_line">Aller à la ligne</string>
|
||||
<string name="find">Rechercher</string>
|
||||
<string name="replace">Remplacer</string>
|
||||
<string name="root_permission">Autorisation racine</string>
|
||||
<string name="share">Partager</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Suggestions clavier et gestes spéciaux</string>
|
||||
<string name="enable_autoencoding">Encodage automatique</string>
|
||||
<string name="set_as_working_folder">Définir comme dossier courant</string>
|
||||
<string name="is_the_working_folder">C\'est le dossier courant</string>
|
||||
<string name="save_changes">Voulez-vous enregistrer les modifications du fichier %s ?</string>
|
||||
<string name="regular_expression">Expression régulière</string>
|
||||
<string name="text_to_find">Texte à rechercher</string>
|
||||
<string name="text_to_replace">Texte à remplacer</string>
|
||||
<string name="next">Suivant</string>
|
||||
<string name="previous">Précédent</string>
|
||||
<string name="please_wait">Veuillez patienter…</string>
|
||||
<string name="occurrences_found">occurrences de %s ont été trouvées</string>
|
||||
<string name="app_version">Version %s</string>
|
||||
<string name="translate_the_app">Traduire</string>
|
||||
<string name="changelog">Historique des changements</string>
|
||||
<string name="match_case">Respecter la casse</string>
|
||||
<string name="long_click_for_more_options">Clic long pour plus d\'options</string>
|
||||
<string name="pro_version">Version Pro</string>
|
||||
<string name="auto_save">Sauvegarde automatique</string>
|
||||
<string name="read_only">Lecture seule</string>
|
||||
</resources>
|
||||
|
@ -1,63 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
~ This file is part of Turbo Editor.
|
||||
~
|
||||
~ Turbo Editor is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 3 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Turbo Editor is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="aboutactivity_info_category">Informations</string>
|
||||
<string name="aboutactivity_app_category">Informations sur l\'application</string>
|
||||
<string name="aboutactivity_miscellaneous_category">Divers</string>
|
||||
<string name="aboutactivity_version">Version %1$s</string>
|
||||
<string name="aboutactivity_author">Auteur</string>
|
||||
<string name="aboutactivity_authorsite">Site de l\'auteur</string>
|
||||
<string name="aboutactivity_authorsite_summary">Voir le site de l\'auteur</string>
|
||||
<string name="aboutactivity_authoremail">Courrier de l\'auteur</string>
|
||||
<string name="aboutactivity_authoremail_summary">Envoyer un mail à l\'auteur</string>
|
||||
<string name="aboutactivity_authortwitter">Twitter</string>
|
||||
<string name="aboutactivity_authortwitter_summary">Voir la page Twitter</string>
|
||||
<string name="aboutactivity_authorgoogleplus">Google+</string>
|
||||
<string name="aboutactivity_authorgoogleplus_summary">Voir la page Google+</string>
|
||||
<string name="aboutactivity_betatester">Devenir un bêta-testeur</string>
|
||||
<string name="aboutactivity_betatester_summary">Faire partie de la communauté pour recevoir des mises à jour bêta</string>
|
||||
<string name="aboutactivity_helptranslate">Traduire l\'Application</string>
|
||||
<string name="aboutactivity_helptranslate_summary">Corriger certaines erreurs ou ajouter une nouvelle traduction</string>
|
||||
<string name="aboutactivity_readme">Lisez-moi</string>
|
||||
<string name="aboutactivity_readme_summary">Lire le manuel</string>
|
||||
<string name="aboutactivity_faq">Questions Fréquentes</string>
|
||||
<string name="aboutactivity_faq_summary">Voir les questions fréquentes</string>
|
||||
<string name="aboutactivity_changelog">Historique des changements</string>
|
||||
<string name="aboutactivity_changelog_summary">Voir l\'historique des changements</string>
|
||||
<string name="aboutactivity_license">Conditions d’utilisation</string>
|
||||
<string name="aboutactivity_license_summary">Lire les conditions d\'utilisation</string>
|
||||
<string name="aboutactivity_license_accept">Accepter</string>
|
||||
<string name="aboutactivity_license_refuse">Refuser</string>
|
||||
<string name="aboutactivity_privacy">Politique de confidentialité</string>
|
||||
<string name="aboutactivity_privacy_summary">Lire la politique de confidentialité</string>
|
||||
<string name="aboutactivity_todo">Liste des améliorations à apporter</string>
|
||||
<string name="aboutactivity_todo_summary">Lire a liste des améliorations à apporter</string>
|
||||
<string name="aboutactivity_donate">Faire un don</string>
|
||||
<string name="aboutactivity_donate_summary">Merci de me soutenir!</string>
|
||||
<string name="aboutactivity_market">Play Store</string>
|
||||
<string name="aboutactivity_market_summary">Envoyer vos commentaires et notez-le!</string>
|
||||
<string name="aboutactivity_authormarket">Boutique de l\'auteur</string>
|
||||
<string name="aboutactivity_authormarket_summary">Voir les autres applications de l\'auteur!</string>
|
||||
<string name="aboutactivity_xda">XDA thread</string>
|
||||
<string name="aboutactivity_xda_summary">Post your feedback here!</string>
|
||||
</resources>
|
@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@ -17,10 +18,47 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
<string name="recent_files">Recent files</string>
|
||||
<string name="font_size">Font size</string>
|
||||
<string name="connection_name">Connection Name</string>
|
||||
<string name="line_numbers">Line Numbers</string>
|
||||
<string name="wrap_content">Wrap content</string>
|
||||
<string name="view_it_on_the_web">View it on the web</string>
|
||||
<string name="file">File</string>
|
||||
<string name="folder">Folder</string>
|
||||
<string name="light_theme">Light Theme</string>
|
||||
<string name="goto_line">Go to Line</string>
|
||||
<string name="find">Find</string>
|
||||
<string name="replace">Replace</string>
|
||||
<string name="share">Compartir</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Keyboard suggestions and Swipe</string>
|
||||
<string name="enable_autoencoding">Auto-Encoding</string>
|
||||
<string name="set_as_working_folder">Set as the working folder</string>
|
||||
<string name="is_the_working_folder">This is the working folder</string>
|
||||
<string name="save_changes">Do you want to save the changes to the file %s?</string>
|
||||
<string name="regular_expression">Regular Expression</string>
|
||||
<string name="text_to_find">Text to find</string>
|
||||
<string name="text_to_replace">Text to replace</string>
|
||||
<string name="next">Next</string>
|
||||
<string name="previous">Previous</string>
|
||||
<string name="please_wait">Please wait…</string>
|
||||
<string name="occurrences_found">%s occurrences was found</string>
|
||||
<string name="app_version">Version %s</string>
|
||||
<string name="translate_the_app">Translate</string>
|
||||
<string name="changelog">Changelog</string>
|
||||
<string name="match_case">Match case</string>
|
||||
<string name="long_click_for_more_options">Long click for more options</string>
|
||||
<string name="pro_version">Pro version</string>
|
||||
<string name="auto_save">Auto save</string>
|
||||
<string name="read_only">Read only</string>
|
||||
<string name="send_error_reports">Send error reports</string>
|
||||
<string name="extra_options">Extra options</string>
|
||||
<string name="split_text_if_too_long">Split the text if too long</string>
|
||||
<string name="ignore_back_button">Ignore back button</string>
|
||||
<string name="donate">Donate</string>
|
||||
<string name="aggiungi_account">Nova conta</string>
|
||||
<string name="attiva">Activo</string>
|
||||
<string name="cancella">Borrar</string>
|
||||
@ -131,40 +169,4 @@
|
||||
<string name="open_a_file">Open a file</string>
|
||||
<string name="open_this_time_only">Open this time only</string>
|
||||
<string name="change_list_type">Change the list type</string>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
<string name="recent_files">Recent files</string>
|
||||
<string name="font_size">Font size</string>
|
||||
<string name="connection_name">Connection Name</string>
|
||||
<string name="line_numbers">Line Numbers</string>
|
||||
<string name="wrap_content">Wrap content</string>
|
||||
<string name="view_it_on_the_web">View it on the web</string>
|
||||
<string name="add">Add</string>
|
||||
<string name="file">File</string>
|
||||
<string name="folder">Folder</string>
|
||||
<string name="light_theme">Light Theme</string>
|
||||
<string name="goto_line">Goto Line</string>
|
||||
<string name="find">Find</string>
|
||||
<string name="replace">Replace</string>
|
||||
<string name="root_permission">Root Permission</string>
|
||||
<string name="share">Compartir</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Keyboard suggestions and Swipe</string>
|
||||
<string name="enable_autoencoding">Auto-Encoding</string>
|
||||
<string name="set_as_working_folder">Set as the working folder</string>
|
||||
<string name="is_the_working_folder">This is the working folder</string>
|
||||
<string name="save_changes">Do you want to save the changes to the file %s?</string>
|
||||
<string name="regular_expression">Regular Expression</string>
|
||||
<string name="text_to_find">Text to find</string>
|
||||
<string name="text_to_replace">Text to replace</string>
|
||||
<string name="next">Next</string>
|
||||
<string name="previous">Previous</string>
|
||||
<string name="please_wait">Please wait…</string>
|
||||
<string name="occurrences_found">%s occurrences was found</string>
|
||||
<string name="app_version">Version %s</string>
|
||||
<string name="translate_the_app">Translate</string>
|
||||
<string name="changelog">Changelog</string>
|
||||
<string name="match_case">Match case</string>
|
||||
<string name="long_click_for_more_options">Long click for more options</string>
|
||||
<string name="pro_version">Pro version</string>
|
||||
<string name="auto_save">Auto save</string>
|
||||
<string name="read_only">Read only</string>
|
||||
</resources>
|
||||
|
@ -1,63 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
~ This file is part of Turbo Editor.
|
||||
~
|
||||
~ Turbo Editor is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 3 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Turbo Editor is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="aboutactivity_info_category">Información</string>
|
||||
<string name="aboutactivity_app_category">Application Info</string>
|
||||
<string name="aboutactivity_miscellaneous_category">Miscellaneous</string>
|
||||
<string name="aboutactivity_version">Version %1$s</string>
|
||||
<string name="aboutactivity_author">Author</string>
|
||||
<string name="aboutactivity_authorsite">Author site</string>
|
||||
<string name="aboutactivity_authorsite_summary">Show author site</string>
|
||||
<string name="aboutactivity_authoremail">Author mail</string>
|
||||
<string name="aboutactivity_authoremail_summary">Send mail to author</string>
|
||||
<string name="aboutactivity_authortwitter">Twitter</string>
|
||||
<string name="aboutactivity_authortwitter_summary">Show twitter page</string>
|
||||
<string name="aboutactivity_authorgoogleplus">Google Plus</string>
|
||||
<string name="aboutactivity_authorgoogleplus_summary">Show Google Plus page</string>
|
||||
<string name="aboutactivity_betatester">Become a beta tester</string>
|
||||
<string name="aboutactivity_betatester_summary">Be a part of the community to receive beta updates</string>
|
||||
<string name="aboutactivity_helptranslate">Translate the Application</string>
|
||||
<string name="aboutactivity_helptranslate_summary">Correct some mistakes or add a new translation</string>
|
||||
<string name="aboutactivity_readme">Read Me</string>
|
||||
<string name="aboutactivity_readme_summary">Read the reference</string>
|
||||
<string name="aboutactivity_faq">FAQ</string>
|
||||
<string name="aboutactivity_faq_summary">Show app faq</string>
|
||||
<string name="aboutactivity_changelog">ChangeLog</string>
|
||||
<string name="aboutactivity_changelog_summary">Show app changelog</string>
|
||||
<string name="aboutactivity_license">Terms of service</string>
|
||||
<string name="aboutactivity_license_summary">Read the Terms of service</string>
|
||||
<string name="aboutactivity_license_accept">Accept</string>
|
||||
<string name="aboutactivity_license_refuse">Refuse</string>
|
||||
<string name="aboutactivity_privacy">Privacy policy</string>
|
||||
<string name="aboutactivity_privacy_summary">Read the Privacy policy</string>
|
||||
<string name="aboutactivity_todo">ToDo List</string>
|
||||
<string name="aboutactivity_todo_summary">Read the todo list</string>
|
||||
<string name="aboutactivity_donate">Make a donation</string>
|
||||
<string name="aboutactivity_donate_summary">Thank you for supporting me!</string>
|
||||
<string name="aboutactivity_market">Play Store</string>
|
||||
<string name="aboutactivity_market_summary">Send feedback and rate it!</string>
|
||||
<string name="aboutactivity_authormarket">Author Store</string>
|
||||
<string name="aboutactivity_authormarket_summary">Show author applications!</string>
|
||||
<string name="aboutactivity_xda">XDA thread</string>
|
||||
<string name="aboutactivity_xda_summary">Post your feedback here!</string>
|
||||
</resources>
|
@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@ -17,10 +18,47 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
<string name="recent_files">Recent files</string>
|
||||
<string name="font_size">Font size</string>
|
||||
<string name="connection_name">Connection Name</string>
|
||||
<string name="line_numbers">Line Numbers</string>
|
||||
<string name="wrap_content">Wrap content</string>
|
||||
<string name="view_it_on_the_web">View it on the web</string>
|
||||
<string name="file">File</string>
|
||||
<string name="folder">Folder</string>
|
||||
<string name="light_theme">Light Theme</string>
|
||||
<string name="goto_line">Go to Line</string>
|
||||
<string name="find">Find</string>
|
||||
<string name="replace">Replace</string>
|
||||
<string name="share">Share</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Keyboard suggestions and Swipe</string>
|
||||
<string name="enable_autoencoding">Auto-Encoding</string>
|
||||
<string name="set_as_working_folder">Set as the working folder</string>
|
||||
<string name="is_the_working_folder">This is the working folder</string>
|
||||
<string name="save_changes">Do you want to save the changes to the file %s?</string>
|
||||
<string name="regular_expression">Regular Expression</string>
|
||||
<string name="text_to_find">Text to find</string>
|
||||
<string name="text_to_replace">Text to replace</string>
|
||||
<string name="next">Next</string>
|
||||
<string name="previous">Previous</string>
|
||||
<string name="please_wait">Please wait…</string>
|
||||
<string name="occurrences_found">%s occurrences was found</string>
|
||||
<string name="app_version">Version %s</string>
|
||||
<string name="translate_the_app">Translate</string>
|
||||
<string name="changelog">Changelog</string>
|
||||
<string name="match_case">Match case</string>
|
||||
<string name="long_click_for_more_options">Long click for more options</string>
|
||||
<string name="pro_version">Pro version</string>
|
||||
<string name="auto_save">Auto save</string>
|
||||
<string name="read_only">Read only</string>
|
||||
<string name="send_error_reports">Send error reports</string>
|
||||
<string name="extra_options">Extra options</string>
|
||||
<string name="split_text_if_too_long">Split the text if too long</string>
|
||||
<string name="ignore_back_button">Ignore back button</string>
|
||||
<string name="donate">Donate</string>
|
||||
<string name="aggiungi_account">New account</string>
|
||||
<string name="attiva">Active</string>
|
||||
<string name="cancella">Delete</string>
|
||||
@ -131,40 +169,4 @@
|
||||
<string name="open_a_file">Open a file</string>
|
||||
<string name="open_this_time_only">Open this time only</string>
|
||||
<string name="change_list_type">Change the list type</string>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
<string name="recent_files">Recent files</string>
|
||||
<string name="font_size">Font size</string>
|
||||
<string name="connection_name">Connection Name</string>
|
||||
<string name="line_numbers">Line Numbers</string>
|
||||
<string name="wrap_content">Wrap content</string>
|
||||
<string name="view_it_on_the_web">View it on the web</string>
|
||||
<string name="add">Add</string>
|
||||
<string name="file">File</string>
|
||||
<string name="folder">Folder</string>
|
||||
<string name="light_theme">Light Theme</string>
|
||||
<string name="goto_line">Goto Line</string>
|
||||
<string name="find">Find</string>
|
||||
<string name="replace">Replace</string>
|
||||
<string name="root_permission">Root Permission</string>
|
||||
<string name="share">Share</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Keyboard suggestions and Swipe</string>
|
||||
<string name="enable_autoencoding">Auto-Encoding</string>
|
||||
<string name="set_as_working_folder">Set as the working folder</string>
|
||||
<string name="is_the_working_folder">This is the working folder</string>
|
||||
<string name="save_changes">Do you want to save the changes to the file %s?</string>
|
||||
<string name="regular_expression">Regular Expression</string>
|
||||
<string name="text_to_find">Text to find</string>
|
||||
<string name="text_to_replace">Text to replace</string>
|
||||
<string name="next">Next</string>
|
||||
<string name="previous">Previous</string>
|
||||
<string name="please_wait">Please wait…</string>
|
||||
<string name="occurrences_found">%s occurrences was found</string>
|
||||
<string name="app_version">Version %s</string>
|
||||
<string name="translate_the_app">Translate</string>
|
||||
<string name="changelog">Changelog</string>
|
||||
<string name="match_case">Match case</string>
|
||||
<string name="long_click_for_more_options">Long click for more options</string>
|
||||
<string name="pro_version">Pro version</string>
|
||||
<string name="auto_save">Auto save</string>
|
||||
<string name="read_only">Read only</string>
|
||||
</resources>
|
||||
|
@ -1,63 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
~ This file is part of Turbo Editor.
|
||||
~
|
||||
~ Turbo Editor is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 3 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Turbo Editor is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="aboutactivity_info_category">Info</string>
|
||||
<string name="aboutactivity_app_category">Application Info</string>
|
||||
<string name="aboutactivity_miscellaneous_category">Miscellaneous</string>
|
||||
<string name="aboutactivity_version">Version %1$s</string>
|
||||
<string name="aboutactivity_author">Author</string>
|
||||
<string name="aboutactivity_authorsite">Author site</string>
|
||||
<string name="aboutactivity_authorsite_summary">Show author site</string>
|
||||
<string name="aboutactivity_authoremail">Author mail</string>
|
||||
<string name="aboutactivity_authoremail_summary">Send mail to author</string>
|
||||
<string name="aboutactivity_authortwitter">Twitter</string>
|
||||
<string name="aboutactivity_authortwitter_summary">Show twitter page</string>
|
||||
<string name="aboutactivity_authorgoogleplus">Google Plus</string>
|
||||
<string name="aboutactivity_authorgoogleplus_summary">Show Google Plus page</string>
|
||||
<string name="aboutactivity_betatester">Become a beta tester</string>
|
||||
<string name="aboutactivity_betatester_summary">Be a part of the community to receive beta updates</string>
|
||||
<string name="aboutactivity_helptranslate">Translate the Application</string>
|
||||
<string name="aboutactivity_helptranslate_summary">Correct some mistakes or add a new translation</string>
|
||||
<string name="aboutactivity_readme">Read Me</string>
|
||||
<string name="aboutactivity_readme_summary">Read the reference</string>
|
||||
<string name="aboutactivity_faq">FAQ</string>
|
||||
<string name="aboutactivity_faq_summary">Show app faq</string>
|
||||
<string name="aboutactivity_changelog">ChangeLog</string>
|
||||
<string name="aboutactivity_changelog_summary">Show app changelog</string>
|
||||
<string name="aboutactivity_license">Terms of service</string>
|
||||
<string name="aboutactivity_license_summary">Read the Terms of service</string>
|
||||
<string name="aboutactivity_license_accept">Accept</string>
|
||||
<string name="aboutactivity_license_refuse">Refuse</string>
|
||||
<string name="aboutactivity_privacy">Privacy policy</string>
|
||||
<string name="aboutactivity_privacy_summary">Read the Privacy policy</string>
|
||||
<string name="aboutactivity_todo">ToDo List</string>
|
||||
<string name="aboutactivity_todo_summary">Read the todo list</string>
|
||||
<string name="aboutactivity_donate">Make a donation</string>
|
||||
<string name="aboutactivity_donate_summary">Thank you for supporting me!</string>
|
||||
<string name="aboutactivity_market">Play Store</string>
|
||||
<string name="aboutactivity_market_summary">Send feedback and rate it!</string>
|
||||
<string name="aboutactivity_authormarket">Author Store</string>
|
||||
<string name="aboutactivity_authormarket_summary">Show author applications!</string>
|
||||
<string name="aboutactivity_xda">XDA thread</string>
|
||||
<string name="aboutactivity_xda_summary">Post your feedback here!</string>
|
||||
</resources>
|
@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@ -17,10 +18,47 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
<string name="recent_files">Recent files</string>
|
||||
<string name="font_size">Font size</string>
|
||||
<string name="connection_name">Connection Name</string>
|
||||
<string name="line_numbers">Line Numbers</string>
|
||||
<string name="wrap_content">Wrap content</string>
|
||||
<string name="view_it_on_the_web">View it on the web</string>
|
||||
<string name="file">File</string>
|
||||
<string name="folder">Folder</string>
|
||||
<string name="light_theme">Light Theme</string>
|
||||
<string name="goto_line">Go to Line</string>
|
||||
<string name="find">Find</string>
|
||||
<string name="replace">Replace</string>
|
||||
<string name="share">Share</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Keyboard suggestions and Swipe</string>
|
||||
<string name="enable_autoencoding">Auto-Encoding</string>
|
||||
<string name="set_as_working_folder">Set as the working folder</string>
|
||||
<string name="is_the_working_folder">This is the working folder</string>
|
||||
<string name="save_changes">Do you want to save the changes to the file %s?</string>
|
||||
<string name="regular_expression">Regular Expression</string>
|
||||
<string name="text_to_find">Text to find</string>
|
||||
<string name="text_to_replace">Text to replace</string>
|
||||
<string name="next">Next</string>
|
||||
<string name="previous">Previous</string>
|
||||
<string name="please_wait">Please wait…</string>
|
||||
<string name="occurrences_found">%s occurrences was found</string>
|
||||
<string name="app_version">Version %s</string>
|
||||
<string name="translate_the_app">Translate</string>
|
||||
<string name="changelog">Changelog</string>
|
||||
<string name="match_case">Match case</string>
|
||||
<string name="long_click_for_more_options">Long click for more options</string>
|
||||
<string name="pro_version">Pro version</string>
|
||||
<string name="auto_save">Auto save</string>
|
||||
<string name="read_only">Read only</string>
|
||||
<string name="send_error_reports">Send error reports</string>
|
||||
<string name="extra_options">Extra options</string>
|
||||
<string name="split_text_if_too_long">Split the text if too long</string>
|
||||
<string name="ignore_back_button">Ignore back button</string>
|
||||
<string name="donate">Donate</string>
|
||||
<string name="aggiungi_account">New account</string>
|
||||
<string name="attiva">Active</string>
|
||||
<string name="cancella">Delete</string>
|
||||
@ -131,40 +169,4 @@
|
||||
<string name="open_a_file">Open a file</string>
|
||||
<string name="open_this_time_only">Open this time only</string>
|
||||
<string name="change_list_type">Change the list type</string>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
<string name="recent_files">Recent files</string>
|
||||
<string name="font_size">Font size</string>
|
||||
<string name="connection_name">Connection Name</string>
|
||||
<string name="line_numbers">Line Numbers</string>
|
||||
<string name="wrap_content">Wrap content</string>
|
||||
<string name="view_it_on_the_web">View it on the web</string>
|
||||
<string name="add">Add</string>
|
||||
<string name="file">File</string>
|
||||
<string name="folder">Folder</string>
|
||||
<string name="light_theme">Light Theme</string>
|
||||
<string name="goto_line">Goto Line</string>
|
||||
<string name="find">Find</string>
|
||||
<string name="replace">Replace</string>
|
||||
<string name="root_permission">Root Permission</string>
|
||||
<string name="share">Share</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Keyboard suggestions and Swipe</string>
|
||||
<string name="enable_autoencoding">Auto-Encoding</string>
|
||||
<string name="set_as_working_folder">Set as the working folder</string>
|
||||
<string name="is_the_working_folder">This is the working folder</string>
|
||||
<string name="save_changes">Do you want to save the changes to the file %s?</string>
|
||||
<string name="regular_expression">Regular Expression</string>
|
||||
<string name="text_to_find">Text to find</string>
|
||||
<string name="text_to_replace">Text to replace</string>
|
||||
<string name="next">Next</string>
|
||||
<string name="previous">Previous</string>
|
||||
<string name="please_wait">Please wait…</string>
|
||||
<string name="occurrences_found">%s occurrences was found</string>
|
||||
<string name="app_version">Version %s</string>
|
||||
<string name="translate_the_app">Translate</string>
|
||||
<string name="changelog">Changelog</string>
|
||||
<string name="match_case">Match case</string>
|
||||
<string name="long_click_for_more_options">Long click for more options</string>
|
||||
<string name="pro_version">Pro version</string>
|
||||
<string name="auto_save">Auto save</string>
|
||||
<string name="read_only">Read only</string>
|
||||
</resources>
|
||||
|
@ -1,63 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
~ This file is part of Turbo Editor.
|
||||
~
|
||||
~ Turbo Editor is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 3 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Turbo Editor is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="aboutactivity_info_category">Info</string>
|
||||
<string name="aboutactivity_app_category">Application Info</string>
|
||||
<string name="aboutactivity_miscellaneous_category">Miscellaneous</string>
|
||||
<string name="aboutactivity_version">Version %1$s</string>
|
||||
<string name="aboutactivity_author">Author</string>
|
||||
<string name="aboutactivity_authorsite">Author site</string>
|
||||
<string name="aboutactivity_authorsite_summary">Show author site</string>
|
||||
<string name="aboutactivity_authoremail">Author mail</string>
|
||||
<string name="aboutactivity_authoremail_summary">Send mail to author</string>
|
||||
<string name="aboutactivity_authortwitter">Twitter</string>
|
||||
<string name="aboutactivity_authortwitter_summary">Show twitter page</string>
|
||||
<string name="aboutactivity_authorgoogleplus">Google Plus</string>
|
||||
<string name="aboutactivity_authorgoogleplus_summary">Show Google Plus page</string>
|
||||
<string name="aboutactivity_betatester">Become a beta tester</string>
|
||||
<string name="aboutactivity_betatester_summary">Be a part of the community to receive beta updates</string>
|
||||
<string name="aboutactivity_helptranslate">Translate the Application</string>
|
||||
<string name="aboutactivity_helptranslate_summary">Correct some mistakes or add a new translation</string>
|
||||
<string name="aboutactivity_readme">Read Me</string>
|
||||
<string name="aboutactivity_readme_summary">Read the reference</string>
|
||||
<string name="aboutactivity_faq">FAQ</string>
|
||||
<string name="aboutactivity_faq_summary">Show app faq</string>
|
||||
<string name="aboutactivity_changelog">ChangeLog</string>
|
||||
<string name="aboutactivity_changelog_summary">Show app changelog</string>
|
||||
<string name="aboutactivity_license">Terms of service</string>
|
||||
<string name="aboutactivity_license_summary">Read the Terms of service</string>
|
||||
<string name="aboutactivity_license_accept">Accept</string>
|
||||
<string name="aboutactivity_license_refuse">Refuse</string>
|
||||
<string name="aboutactivity_privacy">Privacy policy</string>
|
||||
<string name="aboutactivity_privacy_summary">Read the Privacy policy</string>
|
||||
<string name="aboutactivity_todo">ToDo List</string>
|
||||
<string name="aboutactivity_todo_summary">Read the todo list</string>
|
||||
<string name="aboutactivity_donate">Make a donation</string>
|
||||
<string name="aboutactivity_donate_summary">Thank you for supporting me!</string>
|
||||
<string name="aboutactivity_market">Play Store</string>
|
||||
<string name="aboutactivity_market_summary">Send feedback and rate it!</string>
|
||||
<string name="aboutactivity_authormarket">Author Store</string>
|
||||
<string name="aboutactivity_authormarket_summary">Show author applications!</string>
|
||||
<string name="aboutactivity_xda">XDA thread</string>
|
||||
<string name="aboutactivity_xda_summary">Post your feedback here!</string>
|
||||
</resources>
|
@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@ -17,10 +18,47 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Fix szélességű betűk használata</string>
|
||||
<string name="recent_files">Legutóbbi fájlok</string>
|
||||
<string name="font_size">Betűméret</string>
|
||||
<string name="connection_name">Kapcsolat neve</string>
|
||||
<string name="line_numbers">Sorszámok</string>
|
||||
<string name="wrap_content">Tartalom tördelése</string>
|
||||
<string name="view_it_on_the_web">Megtekintés az interneten</string>
|
||||
<string name="file">Fájl</string>
|
||||
<string name="folder">Mappa</string>
|
||||
<string name="light_theme">Világos téma</string>
|
||||
<string name="goto_line">Sorhoz ugrás</string>
|
||||
<string name="find">Keresés</string>
|
||||
<string name="replace">Csere</string>
|
||||
<string name="share">Megosztás</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Billentyűzet javaslatok és Swipe</string>
|
||||
<string name="enable_autoencoding">Automatikus kódolás</string>
|
||||
<string name="set_as_working_folder">Beállítás munkakönyvtárlént</string>
|
||||
<string name="is_the_working_folder">Ez a munkakönyvtár</string>
|
||||
<string name="save_changes">Szeretné menteni a változtatásokat a(z) \"%s\" fájlba?</string>
|
||||
<string name="regular_expression">Reguláris kifejezés</string>
|
||||
<string name="text_to_find">Keresendő szöveg</string>
|
||||
<string name="text_to_replace">Cserélendő szöveg</string>
|
||||
<string name="next">Következő</string>
|
||||
<string name="previous">Előző</string>
|
||||
<string name="please_wait">Kérem várjon…</string>
|
||||
<string name="occurrences_found">%s előfordulás</string>
|
||||
<string name="app_version">Változatszám: %s</string>
|
||||
<string name="translate_the_app">Fordítás</string>
|
||||
<string name="changelog">Változásnapló</string>
|
||||
<string name="match_case">Kis- és nagybetűk egyezése</string>
|
||||
<string name="long_click_for_more_options">Hosszú-kattintás a további beállításokhoz</string>
|
||||
<string name="pro_version">Pro változat</string>
|
||||
<string name="auto_save">Automatikus mentés</string>
|
||||
<string name="read_only">Csak olvasható</string>
|
||||
<string name="send_error_reports">Send error reports</string>
|
||||
<string name="extra_options">Extra options</string>
|
||||
<string name="split_text_if_too_long">Split the text if too long</string>
|
||||
<string name="ignore_back_button">Ignore back button</string>
|
||||
<string name="donate">Donate</string>
|
||||
<string name="aggiungi_account">Új fiók</string>
|
||||
<string name="attiva">Aktív</string>
|
||||
<string name="cancella">Törlés</string>
|
||||
@ -131,40 +169,4 @@
|
||||
<string name="open_a_file">Fájl megnyitása</string>
|
||||
<string name="open_this_time_only">Megnyitás csak most</string>
|
||||
<string name="change_list_type">A lista típusának módosítása</string>
|
||||
<string name="use_monospace">Fix szélességű betűk használata</string>
|
||||
<string name="recent_files">Legutóbbi fájlok</string>
|
||||
<string name="font_size">Betűméret</string>
|
||||
<string name="connection_name">Kapcsolat neve</string>
|
||||
<string name="line_numbers">Sorszámok</string>
|
||||
<string name="wrap_content">Tartalom tördelése</string>
|
||||
<string name="view_it_on_the_web">Megtekintés az interneten</string>
|
||||
<string name="add">Hozzáadás</string>
|
||||
<string name="file">Fájl</string>
|
||||
<string name="folder">Mappa</string>
|
||||
<string name="light_theme">Világos téma</string>
|
||||
<string name="goto_line">Sorhoz ugrás</string>
|
||||
<string name="find">Keresés</string>
|
||||
<string name="replace">Csere</string>
|
||||
<string name="root_permission">Root hozzáférés</string>
|
||||
<string name="share">Megosztás</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Billentyűzet javaslatok és Swipe</string>
|
||||
<string name="enable_autoencoding">Automatikus kódolás</string>
|
||||
<string name="set_as_working_folder">Beállítás munkakönyvtárlént</string>
|
||||
<string name="is_the_working_folder">Ez a munkakönyvtár</string>
|
||||
<string name="save_changes">Szeretné menteni a változtatásokat a(z) \"%s\" fájlba?</string>
|
||||
<string name="regular_expression">Reguláris kifejezés</string>
|
||||
<string name="text_to_find">Keresendő szöveg</string>
|
||||
<string name="text_to_replace">Cserélendő szöveg</string>
|
||||
<string name="next">Következő</string>
|
||||
<string name="previous">Előző</string>
|
||||
<string name="please_wait">Kérem várjon…</string>
|
||||
<string name="occurrences_found">%s előfordulás</string>
|
||||
<string name="app_version">Változatszám: %s</string>
|
||||
<string name="translate_the_app">Fordítás</string>
|
||||
<string name="changelog">Változásnapló</string>
|
||||
<string name="match_case">Kis- és nagybetűk egyezése</string>
|
||||
<string name="long_click_for_more_options">Hosszú-kattintás a további beállításokhoz</string>
|
||||
<string name="pro_version">Pro változat</string>
|
||||
<string name="auto_save">Automatikus mentés</string>
|
||||
<string name="read_only">Csak olvasható</string>
|
||||
</resources>
|
||||
|
@ -1,63 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
~ This file is part of Turbo Editor.
|
||||
~
|
||||
~ Turbo Editor is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 3 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Turbo Editor is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="aboutactivity_info_category">Információ</string>
|
||||
<string name="aboutactivity_app_category">Alkalmazás-információ</string>
|
||||
<string name="aboutactivity_miscellaneous_category">Egyebek</string>
|
||||
<string name="aboutactivity_version">Változat: %1$s</string>
|
||||
<string name="aboutactivity_author">Szerző</string>
|
||||
<string name="aboutactivity_authorsite">Szerző oldala</string>
|
||||
<string name="aboutactivity_authorsite_summary">Szerző oldalának megjelenítése</string>
|
||||
<string name="aboutactivity_authoremail">A szerző email címe</string>
|
||||
<string name="aboutactivity_authoremail_summary">Email küldése a szerzőnek</string>
|
||||
<string name="aboutactivity_authortwitter">Twitter</string>
|
||||
<string name="aboutactivity_authortwitter_summary">Twitter oldal megjelenítése</string>
|
||||
<string name="aboutactivity_authorgoogleplus">Google Plus</string>
|
||||
<string name="aboutactivity_authorgoogleplus_summary">Google Plus oldal megjelenítése</string>
|
||||
<string name="aboutactivity_betatester">Legyen béta tesztelő!</string>
|
||||
<string name="aboutactivity_betatester_summary">Legyen a közösség tagja, hogy megkaphassa a béta frissítéseket!</string>
|
||||
<string name="aboutactivity_helptranslate">Fordítsa le az alkalmazást!</string>
|
||||
<string name="aboutactivity_helptranslate_summary">Javítsa a hibákat vagy adjon hozzá új fordításokat!</string>
|
||||
<string name="aboutactivity_readme">Olvasd el!</string>
|
||||
<string name="aboutactivity_readme_summary">Olvassa el a jegyzetet!</string>
|
||||
<string name="aboutactivity_faq">GY.I.K.</string>
|
||||
<string name="aboutactivity_faq_summary">Az alkalmazás GY.I.K megjelenítése</string>
|
||||
<string name="aboutactivity_changelog">Változásnapló</string>
|
||||
<string name="aboutactivity_changelog_summary">Változások naplójának megjelenítése</string>
|
||||
<string name="aboutactivity_license">Szolgáltatási feltételek</string>
|
||||
<string name="aboutactivity_license_summary">Olvassa el a szolgáltatási feltételeket!</string>
|
||||
<string name="aboutactivity_license_accept">Elfogadás</string>
|
||||
<string name="aboutactivity_license_refuse">Visszautasítás</string>
|
||||
<string name="aboutactivity_privacy">Adatvédelmi nyilatkozat</string>
|
||||
<string name="aboutactivity_privacy_summary">Olvassa el az adatvédelmi nyilatkozatot!</string>
|
||||
<string name="aboutactivity_todo">ToDo lista</string>
|
||||
<string name="aboutactivity_todo_summary">Olvassa el a tennivalók listáját!</string>
|
||||
<string name="aboutactivity_donate">Támogasson!</string>
|
||||
<string name="aboutactivity_donate_summary">Köszönöm a támogatását!</string>
|
||||
<string name="aboutactivity_market">Play Store</string>
|
||||
<string name="aboutactivity_market_summary">Küldjön visszajelzést és értékelje!</string>
|
||||
<string name="aboutactivity_authormarket">A szerző tárhelye</string>
|
||||
<string name="aboutactivity_authormarket_summary">A szerző alkalmazásainak megjelenítése</string>
|
||||
<string name="aboutactivity_xda">XDA thread</string>
|
||||
<string name="aboutactivity_xda_summary">Post your feedback here!</string>
|
||||
</resources>
|
@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@ -17,10 +18,47 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
<string name="recent_files">Recent files</string>
|
||||
<string name="font_size">Font size</string>
|
||||
<string name="connection_name">Connection Name</string>
|
||||
<string name="line_numbers">Line Numbers</string>
|
||||
<string name="wrap_content">Wrap content</string>
|
||||
<string name="view_it_on_the_web">View it on the web</string>
|
||||
<string name="file">File</string>
|
||||
<string name="folder">Folder</string>
|
||||
<string name="light_theme">Light Theme</string>
|
||||
<string name="goto_line">Go to Line</string>
|
||||
<string name="find">Find</string>
|
||||
<string name="replace">Replace</string>
|
||||
<string name="share">Share</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Keyboard suggestions and Swipe</string>
|
||||
<string name="enable_autoencoding">Auto-Encoding</string>
|
||||
<string name="set_as_working_folder">Set as the working folder</string>
|
||||
<string name="is_the_working_folder">This is the working folder</string>
|
||||
<string name="save_changes">Do you want to save the changes to the file %s?</string>
|
||||
<string name="regular_expression">Regular Expression</string>
|
||||
<string name="text_to_find">Text to find</string>
|
||||
<string name="text_to_replace">Text to replace</string>
|
||||
<string name="next">Next</string>
|
||||
<string name="previous">Previous</string>
|
||||
<string name="please_wait">Please wait…</string>
|
||||
<string name="occurrences_found">%s occurrences was found</string>
|
||||
<string name="app_version">Version %s</string>
|
||||
<string name="translate_the_app">Translate</string>
|
||||
<string name="changelog">Changelog</string>
|
||||
<string name="match_case">Match case</string>
|
||||
<string name="long_click_for_more_options">Long click for more options</string>
|
||||
<string name="pro_version">Pro version</string>
|
||||
<string name="auto_save">Auto save</string>
|
||||
<string name="read_only">Read only</string>
|
||||
<string name="send_error_reports">Send error reports</string>
|
||||
<string name="extra_options">Extra options</string>
|
||||
<string name="split_text_if_too_long">Split the text if too long</string>
|
||||
<string name="ignore_back_button">Ignore back button</string>
|
||||
<string name="donate">Donate</string>
|
||||
<string name="aggiungi_account">New account</string>
|
||||
<string name="attiva">Active</string>
|
||||
<string name="cancella">Delete</string>
|
||||
@ -131,40 +169,4 @@
|
||||
<string name="open_a_file">Open a file</string>
|
||||
<string name="open_this_time_only">Open this time only</string>
|
||||
<string name="change_list_type">Change the list type</string>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
<string name="recent_files">Recent files</string>
|
||||
<string name="font_size">Font size</string>
|
||||
<string name="connection_name">Connection Name</string>
|
||||
<string name="line_numbers">Line Numbers</string>
|
||||
<string name="wrap_content">Wrap content</string>
|
||||
<string name="view_it_on_the_web">View it on the web</string>
|
||||
<string name="add">Add</string>
|
||||
<string name="file">File</string>
|
||||
<string name="folder">Folder</string>
|
||||
<string name="light_theme">Light Theme</string>
|
||||
<string name="goto_line">Goto Line</string>
|
||||
<string name="find">Find</string>
|
||||
<string name="replace">Replace</string>
|
||||
<string name="root_permission">Root Permission</string>
|
||||
<string name="share">Share</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Keyboard suggestions and Swipe</string>
|
||||
<string name="enable_autoencoding">Auto-Encoding</string>
|
||||
<string name="set_as_working_folder">Set as the working folder</string>
|
||||
<string name="is_the_working_folder">This is the working folder</string>
|
||||
<string name="save_changes">Do you want to save the changes to the file %s?</string>
|
||||
<string name="regular_expression">Regular Expression</string>
|
||||
<string name="text_to_find">Text to find</string>
|
||||
<string name="text_to_replace">Text to replace</string>
|
||||
<string name="next">Next</string>
|
||||
<string name="previous">Previous</string>
|
||||
<string name="please_wait">Please wait…</string>
|
||||
<string name="occurrences_found">%s occurrences was found</string>
|
||||
<string name="app_version">Version %s</string>
|
||||
<string name="translate_the_app">Translate</string>
|
||||
<string name="changelog">Changelog</string>
|
||||
<string name="match_case">Match case</string>
|
||||
<string name="long_click_for_more_options">Long click for more options</string>
|
||||
<string name="pro_version">Pro version</string>
|
||||
<string name="auto_save">Auto save</string>
|
||||
<string name="read_only">Read only</string>
|
||||
</resources>
|
||||
|
@ -1,63 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
~ This file is part of Turbo Editor.
|
||||
~
|
||||
~ Turbo Editor is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 3 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Turbo Editor is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="aboutactivity_info_category">Info</string>
|
||||
<string name="aboutactivity_app_category">Application Info</string>
|
||||
<string name="aboutactivity_miscellaneous_category">Miscellaneous</string>
|
||||
<string name="aboutactivity_version">Version %1$s</string>
|
||||
<string name="aboutactivity_author">Author</string>
|
||||
<string name="aboutactivity_authorsite">Author site</string>
|
||||
<string name="aboutactivity_authorsite_summary">Show author site</string>
|
||||
<string name="aboutactivity_authoremail">Author mail</string>
|
||||
<string name="aboutactivity_authoremail_summary">Send mail to author</string>
|
||||
<string name="aboutactivity_authortwitter">Twitter</string>
|
||||
<string name="aboutactivity_authortwitter_summary">Show twitter page</string>
|
||||
<string name="aboutactivity_authorgoogleplus">Google Plus</string>
|
||||
<string name="aboutactivity_authorgoogleplus_summary">Show Google Plus page</string>
|
||||
<string name="aboutactivity_betatester">Become a beta tester</string>
|
||||
<string name="aboutactivity_betatester_summary">Be a part of the community to receive beta updates</string>
|
||||
<string name="aboutactivity_helptranslate">Translate the Application</string>
|
||||
<string name="aboutactivity_helptranslate_summary">Correct some mistakes or add a new translation</string>
|
||||
<string name="aboutactivity_readme">Read Me</string>
|
||||
<string name="aboutactivity_readme_summary">Read the reference</string>
|
||||
<string name="aboutactivity_faq">FAQ</string>
|
||||
<string name="aboutactivity_faq_summary">Show app faq</string>
|
||||
<string name="aboutactivity_changelog">ChangeLog</string>
|
||||
<string name="aboutactivity_changelog_summary">Show app changelog</string>
|
||||
<string name="aboutactivity_license">Terms of service</string>
|
||||
<string name="aboutactivity_license_summary">Read the Terms of service</string>
|
||||
<string name="aboutactivity_license_accept">Accept</string>
|
||||
<string name="aboutactivity_license_refuse">Refuse</string>
|
||||
<string name="aboutactivity_privacy">Privacy policy</string>
|
||||
<string name="aboutactivity_privacy_summary">Read the Privacy policy</string>
|
||||
<string name="aboutactivity_todo">ToDo List</string>
|
||||
<string name="aboutactivity_todo_summary">Read the todo list</string>
|
||||
<string name="aboutactivity_donate">Make a donation</string>
|
||||
<string name="aboutactivity_donate_summary">Thank you for supporting me!</string>
|
||||
<string name="aboutactivity_market">Play Store</string>
|
||||
<string name="aboutactivity_market_summary">Send feedback and rate it!</string>
|
||||
<string name="aboutactivity_authormarket">Author Store</string>
|
||||
<string name="aboutactivity_authormarket_summary">Show author applications!</string>
|
||||
<string name="aboutactivity_xda">XDA thread</string>
|
||||
<string name="aboutactivity_xda_summary">Post your feedback here!</string>
|
||||
</resources>
|
@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@ -17,10 +18,47 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Gunakan monospace</string>
|
||||
<string name="recent_files">File baru-baru ini</string>
|
||||
<string name="font_size">Ukuran font</string>
|
||||
<string name="connection_name">Nama Sambungan</string>
|
||||
<string name="line_numbers">Nomor Baris</string>
|
||||
<string name="wrap_content">Wrap Konten</string>
|
||||
<string name="view_it_on_the_web">Lihat di web</string>
|
||||
<string name="file">File</string>
|
||||
<string name="folder">Folder</string>
|
||||
<string name="light_theme">Tema Terang</string>
|
||||
<string name="goto_line">Pergi ke Baris</string>
|
||||
<string name="find">Cari</string>
|
||||
<string name="replace">Replace</string>
|
||||
<string name="share">Bagikan</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Keyboard suggestions and Swipe</string>
|
||||
<string name="enable_autoencoding">Pengkodean-Otomatis</string>
|
||||
<string name="set_as_working_folder">Set as the working folder</string>
|
||||
<string name="is_the_working_folder">This is the working folder</string>
|
||||
<string name="save_changes">Do you want to save the changes to the file %s?</string>
|
||||
<string name="regular_expression">Regular Expression</string>
|
||||
<string name="text_to_find">Text to find</string>
|
||||
<string name="text_to_replace">Text to replace</string>
|
||||
<string name="next">Next</string>
|
||||
<string name="previous">Previous</string>
|
||||
<string name="please_wait">Please wait…</string>
|
||||
<string name="occurrences_found">%s occurrences was found</string>
|
||||
<string name="app_version">Version %s</string>
|
||||
<string name="translate_the_app">Translate</string>
|
||||
<string name="changelog">Changelog</string>
|
||||
<string name="match_case">Match case</string>
|
||||
<string name="long_click_for_more_options">Long click for more options</string>
|
||||
<string name="pro_version">Pro version</string>
|
||||
<string name="auto_save">Auto save</string>
|
||||
<string name="read_only">Read only</string>
|
||||
<string name="send_error_reports">Send error reports</string>
|
||||
<string name="extra_options">Extra options</string>
|
||||
<string name="split_text_if_too_long">Split the text if too long</string>
|
||||
<string name="ignore_back_button">Ignore back button</string>
|
||||
<string name="donate">Donate</string>
|
||||
<string name="aggiungi_account">Akun baru</string>
|
||||
<string name="attiva">Aktif</string>
|
||||
<string name="cancella">Hapus</string>
|
||||
@ -131,40 +169,4 @@
|
||||
<string name="open_a_file">Buka file</string>
|
||||
<string name="open_this_time_only">Hanya buka kali ini</string>
|
||||
<string name="change_list_type">Ubah tipe daftar</string>
|
||||
<string name="use_monospace">Gunakan monospace</string>
|
||||
<string name="recent_files">File baru-baru ini</string>
|
||||
<string name="font_size">Ukuran font</string>
|
||||
<string name="connection_name">Nama Sambungan</string>
|
||||
<string name="line_numbers">Nomor Baris</string>
|
||||
<string name="wrap_content">Wrap Konten</string>
|
||||
<string name="view_it_on_the_web">Lihat di web</string>
|
||||
<string name="add">Tambah</string>
|
||||
<string name="file">File</string>
|
||||
<string name="folder">Folder</string>
|
||||
<string name="light_theme">Tema Terang</string>
|
||||
<string name="goto_line">Pergi ke Baris</string>
|
||||
<string name="find">Cari</string>
|
||||
<string name="replace">Replace</string>
|
||||
<string name="root_permission">Perijinan Root</string>
|
||||
<string name="share">Bagikan</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Keyboard suggestions and Swipe</string>
|
||||
<string name="enable_autoencoding">Pengkodean-Otomatis</string>
|
||||
<string name="set_as_working_folder">Set as the working folder</string>
|
||||
<string name="is_the_working_folder">This is the working folder</string>
|
||||
<string name="save_changes">Do you want to save the changes to the file %s?</string>
|
||||
<string name="regular_expression">Regular Expression</string>
|
||||
<string name="text_to_find">Text to find</string>
|
||||
<string name="text_to_replace">Text to replace</string>
|
||||
<string name="next">Next</string>
|
||||
<string name="previous">Previous</string>
|
||||
<string name="please_wait">Please wait…</string>
|
||||
<string name="occurrences_found">%s occurrences was found</string>
|
||||
<string name="app_version">Version %s</string>
|
||||
<string name="translate_the_app">Translate</string>
|
||||
<string name="changelog">Changelog</string>
|
||||
<string name="match_case">Match case</string>
|
||||
<string name="long_click_for_more_options">Long click for more options</string>
|
||||
<string name="pro_version">Pro version</string>
|
||||
<string name="auto_save">Auto save</string>
|
||||
<string name="read_only">Read only</string>
|
||||
</resources>
|
||||
|
@ -1,63 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
~ This file is part of Turbo Editor.
|
||||
~
|
||||
~ Turbo Editor is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 3 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Turbo Editor is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="aboutactivity_info_category">Info</string>
|
||||
<string name="aboutactivity_app_category">Info Aplikasi</string>
|
||||
<string name="aboutactivity_miscellaneous_category">Lain-lain</string>
|
||||
<string name="aboutactivity_version">Versi %1$s</string>
|
||||
<string name="aboutactivity_author">Pembuat</string>
|
||||
<string name="aboutactivity_authorsite">Situs pembuat</string>
|
||||
<string name="aboutactivity_authorsite_summary">Tampilkan situs pembuat</string>
|
||||
<string name="aboutactivity_authoremail">Email pembuat</string>
|
||||
<string name="aboutactivity_authoremail_summary">Kirim email ke pembuat</string>
|
||||
<string name="aboutactivity_authortwitter">Twitter</string>
|
||||
<string name="aboutactivity_authortwitter_summary">Tampilkan halaman twitter</string>
|
||||
<string name="aboutactivity_authorgoogleplus">Google Plus</string>
|
||||
<string name="aboutactivity_authorgoogleplus_summary">Tampilkan halaman Google Plus</string>
|
||||
<string name="aboutactivity_betatester">Menjadi beta tester</string>
|
||||
<string name="aboutactivity_betatester_summary">Menjadi bagian dari komunitas untuk menerima pembaruan beta</string>
|
||||
<string name="aboutactivity_helptranslate">Terjemahkan aplikasi</string>
|
||||
<string name="aboutactivity_helptranslate_summary">Perbaiki terjemahan atau tambah terjemahan baru</string>
|
||||
<string name="aboutactivity_readme">Harap baca</string>
|
||||
<string name="aboutactivity_readme_summary">Baca referensi</string>
|
||||
<string name="aboutactivity_faq">FAQ</string>
|
||||
<string name="aboutactivity_faq_summary">Tampilkan FAQ app</string>
|
||||
<string name="aboutactivity_changelog">Changelog</string>
|
||||
<string name="aboutactivity_changelog_summary">Tampilkan changelog app</string>
|
||||
<string name="aboutactivity_license">Ketentuan layanan</string>
|
||||
<string name="aboutactivity_license_summary">Baca Ketentuan layanan</string>
|
||||
<string name="aboutactivity_license_accept">Terima</string>
|
||||
<string name="aboutactivity_license_refuse">Tolak</string>
|
||||
<string name="aboutactivity_privacy">Kebijakan privasi</string>
|
||||
<string name="aboutactivity_privacy_summary">Baca kebijakan privasi</string>
|
||||
<string name="aboutactivity_todo">Daftar yang akan dilakukan</string>
|
||||
<string name="aboutactivity_todo_summary">Baca yang akan daftar yang akan dilakukan</string>
|
||||
<string name="aboutactivity_donate">Donasi</string>
|
||||
<string name="aboutactivity_donate_summary">Terima Kasih telah mendukung saya!</string>
|
||||
<string name="aboutactivity_market">Play Store</string>
|
||||
<string name="aboutactivity_market_summary">Kirim umpan balik dan beri peringkat!</string>
|
||||
<string name="aboutactivity_authormarket">Store Pembuat</string>
|
||||
<string name="aboutactivity_authormarket_summary">Tampilkan aplikasi dari pembuat!</string>
|
||||
<string name="aboutactivity_xda">XDA thread</string>
|
||||
<string name="aboutactivity_xda_summary">Post your feedback here!</string>
|
||||
</resources>
|
@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@ -17,10 +18,47 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Monospace</string>
|
||||
<string name="recent_files">File recenti</string>
|
||||
<string name="font_size">Dimensione del carattere</string>
|
||||
<string name="connection_name">Nome della connessione</string>
|
||||
<string name="line_numbers">Numeri delle linee</string>
|
||||
<string name="wrap_content">Vai a capo</string>
|
||||
<string name="view_it_on_the_web">Guardalo sul web</string>
|
||||
<string name="file">File</string>
|
||||
<string name="folder">Cartella</string>
|
||||
<string name="light_theme">Tema chiaro</string>
|
||||
<string name="goto_line">Vai alla riga</string>
|
||||
<string name="find">Trova</string>
|
||||
<string name="replace">Sostituisci</string>
|
||||
<string name="share">Condividi</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Suggerimenti della tastiera e swipe</string>
|
||||
<string name="enable_autoencoding">Codifica automatica</string>
|
||||
<string name="set_as_working_folder">Imposta come cartella di lavoro</string>
|
||||
<string name="is_the_working_folder">È la cartella di lavoro</string>
|
||||
<string name="save_changes">Si desidera salvare le modifiche al file %s?</string>
|
||||
<string name="regular_expression">Espressione regolare</string>
|
||||
<string name="text_to_find">Testo da cercare</string>
|
||||
<string name="text_to_replace">Testo da sostituire</string>
|
||||
<string name="next">Prossimo</string>
|
||||
<string name="previous">Precedente</string>
|
||||
<string name="please_wait">Attendere prego…</string>
|
||||
<string name="occurrences_found">%s occorrenze trovate</string>
|
||||
<string name="app_version">Versione %s</string>
|
||||
<string name="translate_the_app">Traduci</string>
|
||||
<string name="changelog">ChangeLog</string>
|
||||
<string name="match_case">Maiuscole-minuscole</string>
|
||||
<string name="long_click_for_more_options">Click lungo per ulteriori opzioni</string>
|
||||
<string name="pro_version">Versione Pro</string>
|
||||
<string name="auto_save">Salvataggio automatico</string>
|
||||
<string name="read_only">Solo lettura</string>
|
||||
<string name="send_error_reports">Invia rapporti di errore</string>
|
||||
<string name="extra_options">Extra options</string>
|
||||
<string name="split_text_if_too_long">Split the text if too long</string>
|
||||
<string name="ignore_back_button">Ignore back button</string>
|
||||
<string name="donate">Donate</string>
|
||||
<string name="aggiungi_account">Nuovo account</string>
|
||||
<string name="attiva">Attiva</string>
|
||||
<string name="cancella">Cancella</string>
|
||||
@ -131,40 +169,4 @@
|
||||
<string name="open_a_file">Apri un file</string>
|
||||
<string name="open_this_time_only">Apri solo questa volta</string>
|
||||
<string name="change_list_type">Cambia il tipo di lista</string>
|
||||
<string name="use_monospace">Monospace</string>
|
||||
<string name="recent_files">File recenti</string>
|
||||
<string name="font_size">Dimensione del carattere</string>
|
||||
<string name="connection_name">Nome della connessione</string>
|
||||
<string name="line_numbers">Numeri delle linee</string>
|
||||
<string name="wrap_content">Vai a capo</string>
|
||||
<string name="view_it_on_the_web">Guardalo sul web</string>
|
||||
<string name="add">Aggiungi</string>
|
||||
<string name="file">File</string>
|
||||
<string name="folder">Cartella</string>
|
||||
<string name="light_theme">Tema chiaro</string>
|
||||
<string name="goto_line">Vai alla riga</string>
|
||||
<string name="find">Trova</string>
|
||||
<string name="replace">Sostituisci</string>
|
||||
<string name="root_permission">Permessi di root</string>
|
||||
<string name="share">Condividi</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Suggerimenti della tastiera e swipe</string>
|
||||
<string name="enable_autoencoding">Codifica automatica</string>
|
||||
<string name="set_as_working_folder">Imposta come cartella di lavoro</string>
|
||||
<string name="is_the_working_folder">È la cartella di lavoro</string>
|
||||
<string name="save_changes">Si desidera salvare le modifiche al file %s?</string>
|
||||
<string name="regular_expression">Espressione regolare</string>
|
||||
<string name="text_to_find">Testo da cercare</string>
|
||||
<string name="text_to_replace">Testo da sostituire</string>
|
||||
<string name="next">Prossimo</string>
|
||||
<string name="previous">Precedente</string>
|
||||
<string name="please_wait">Attendere prego…</string>
|
||||
<string name="occurrences_found">%s occorrenze trovate</string>
|
||||
<string name="app_version">Versione %s</string>
|
||||
<string name="translate_the_app">Traduci</string>
|
||||
<string name="changelog">ChangeLog</string>
|
||||
<string name="match_case">Maiuscole-minuscole</string>
|
||||
<string name="long_click_for_more_options">Click lungo per ulteriori opzioni</string>
|
||||
<string name="pro_version">Versione Pro</string>
|
||||
<string name="auto_save">Salvataggio automatico</string>
|
||||
<string name="read_only">Solo lettura</string>
|
||||
</resources>
|
||||
|
@ -1,63 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
~ This file is part of Turbo Editor.
|
||||
~
|
||||
~ Turbo Editor is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 3 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Turbo Editor is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="aboutactivity_info_category">Informazioni</string>
|
||||
<string name="aboutactivity_app_category">Informazioni applicazione</string>
|
||||
<string name="aboutactivity_miscellaneous_category">Varie</string>
|
||||
<string name="aboutactivity_version">Versione %1$s</string>
|
||||
<string name="aboutactivity_author">Autore</string>
|
||||
<string name="aboutactivity_authorsite">Sito Web Autore</string>
|
||||
<string name="aboutactivity_authorsite_summary">Visualizza il sito dell\'autore</string>
|
||||
<string name="aboutactivity_authoremail">Email Autore</string>
|
||||
<string name="aboutactivity_authoremail_summary">Manda una mail all\'autore</string>
|
||||
<string name="aboutactivity_authortwitter">Twitter</string>
|
||||
<string name="aboutactivity_authortwitter_summary">Visualizza la pagina twitter</string>
|
||||
<string name="aboutactivity_authorgoogleplus">Google Plus</string>
|
||||
<string name="aboutactivity_authorgoogleplus_summary">Visualizza pagina Google Plus</string>
|
||||
<string name="aboutactivity_betatester">Diventa un beta tester</string>
|
||||
<string name="aboutactivity_betatester_summary">Diventa una parte della gruppo per ricevere gli aggiornamenti beta</string>
|
||||
<string name="aboutactivity_helptranslate">Traduci l\'applicazione</string>
|
||||
<string name="aboutactivity_helptranslate_summary">Correggi alcuni errori o aggiungi una nuova traduzione</string>
|
||||
<string name="aboutactivity_readme">Leggimi</string>
|
||||
<string name="aboutactivity_readme_summary">Leggi la guida</string>
|
||||
<string name="aboutactivity_faq">Domande frequenti</string>
|
||||
<string name="aboutactivity_faq_summary">Visualizza le FAQ</string>
|
||||
<string name="aboutactivity_changelog">ChangeLog</string>
|
||||
<string name="aboutactivity_changelog_summary">Visualizza i cambiamenti</string>
|
||||
<string name="aboutactivity_license">Termini di servizio</string>
|
||||
<string name="aboutactivity_license_summary">Leggi i termini di servizio</string>
|
||||
<string name="aboutactivity_license_accept">Accetta</string>
|
||||
<string name="aboutactivity_license_refuse">Rifiuta</string>
|
||||
<string name="aboutactivity_privacy">Norme sulla privacy</string>
|
||||
<string name="aboutactivity_privacy_summary">Leggi le norme sulla privacy</string>
|
||||
<string name="aboutactivity_todo">Da Fare</string>
|
||||
<string name="aboutactivity_todo_summary">Leggi la lista delle cosa da fare</string>
|
||||
<string name="aboutactivity_donate">Fai una donazione</string>
|
||||
<string name="aboutactivity_donate_summary">Grazie per il tuo supporto!</string>
|
||||
<string name="aboutactivity_market">Android Market</string>
|
||||
<string name="aboutactivity_market_summary">Visualizza l\'app nel market!</string>
|
||||
<string name="aboutactivity_authormarket">Market Autore</string>
|
||||
<string name="aboutactivity_authormarket_summary">Visualizza altre app!</string>
|
||||
<string name="aboutactivity_xda">XDA thread</string>
|
||||
<string name="aboutactivity_xda_summary">Posta il tuo feedback qui!</string>
|
||||
</resources>
|
@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@ -17,10 +18,47 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
<string name="recent_files">Recent files</string>
|
||||
<string name="font_size">Font size</string>
|
||||
<string name="connection_name">Connection Name</string>
|
||||
<string name="line_numbers">Line Numbers</string>
|
||||
<string name="wrap_content">Wrap content</string>
|
||||
<string name="view_it_on_the_web">View it on the web</string>
|
||||
<string name="file">File</string>
|
||||
<string name="folder">Folder</string>
|
||||
<string name="light_theme">Light Theme</string>
|
||||
<string name="goto_line">Go to Line</string>
|
||||
<string name="find">Find</string>
|
||||
<string name="replace">Replace</string>
|
||||
<string name="share">Share</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Keyboard suggestions and Swipe</string>
|
||||
<string name="enable_autoencoding">Auto-Encoding</string>
|
||||
<string name="set_as_working_folder">Set as the working folder</string>
|
||||
<string name="is_the_working_folder">This is the working folder</string>
|
||||
<string name="save_changes">Do you want to save the changes to the file %s?</string>
|
||||
<string name="regular_expression">Regular Expression</string>
|
||||
<string name="text_to_find">Text to find</string>
|
||||
<string name="text_to_replace">Text to replace</string>
|
||||
<string name="next">Next</string>
|
||||
<string name="previous">Previous</string>
|
||||
<string name="please_wait">Please wait…</string>
|
||||
<string name="occurrences_found">%s occurrences was found</string>
|
||||
<string name="app_version">Version %s</string>
|
||||
<string name="translate_the_app">Translate</string>
|
||||
<string name="changelog">Changelog</string>
|
||||
<string name="match_case">Match case</string>
|
||||
<string name="long_click_for_more_options">Long click for more options</string>
|
||||
<string name="pro_version">Pro version</string>
|
||||
<string name="auto_save">Auto save</string>
|
||||
<string name="read_only">Read only</string>
|
||||
<string name="send_error_reports">Send error reports</string>
|
||||
<string name="extra_options">Extra options</string>
|
||||
<string name="split_text_if_too_long">Split the text if too long</string>
|
||||
<string name="ignore_back_button">Ignore back button</string>
|
||||
<string name="donate">Donate</string>
|
||||
<string name="aggiungi_account">משתמש חדש</string>
|
||||
<string name="attiva">אקטיבי</string>
|
||||
<string name="cancella">מחק</string>
|
||||
@ -131,40 +169,4 @@
|
||||
<string name="open_a_file">Open a file</string>
|
||||
<string name="open_this_time_only">Open this time only</string>
|
||||
<string name="change_list_type">Change the list type</string>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
<string name="recent_files">Recent files</string>
|
||||
<string name="font_size">Font size</string>
|
||||
<string name="connection_name">Connection Name</string>
|
||||
<string name="line_numbers">Line Numbers</string>
|
||||
<string name="wrap_content">Wrap content</string>
|
||||
<string name="view_it_on_the_web">View it on the web</string>
|
||||
<string name="add">Add</string>
|
||||
<string name="file">File</string>
|
||||
<string name="folder">Folder</string>
|
||||
<string name="light_theme">Light Theme</string>
|
||||
<string name="goto_line">Goto Line</string>
|
||||
<string name="find">Find</string>
|
||||
<string name="replace">Replace</string>
|
||||
<string name="root_permission">Root Permission</string>
|
||||
<string name="share">Share</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Keyboard suggestions and Swipe</string>
|
||||
<string name="enable_autoencoding">Auto-Encoding</string>
|
||||
<string name="set_as_working_folder">Set as the working folder</string>
|
||||
<string name="is_the_working_folder">This is the working folder</string>
|
||||
<string name="save_changes">Do you want to save the changes to the file %s?</string>
|
||||
<string name="regular_expression">Regular Expression</string>
|
||||
<string name="text_to_find">Text to find</string>
|
||||
<string name="text_to_replace">Text to replace</string>
|
||||
<string name="next">Next</string>
|
||||
<string name="previous">Previous</string>
|
||||
<string name="please_wait">Please wait…</string>
|
||||
<string name="occurrences_found">%s occurrences was found</string>
|
||||
<string name="app_version">Version %s</string>
|
||||
<string name="translate_the_app">Translate</string>
|
||||
<string name="changelog">Changelog</string>
|
||||
<string name="match_case">Match case</string>
|
||||
<string name="long_click_for_more_options">Long click for more options</string>
|
||||
<string name="pro_version">Pro version</string>
|
||||
<string name="auto_save">Auto save</string>
|
||||
<string name="read_only">Read only</string>
|
||||
</resources>
|
||||
|
@ -1,63 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
~ This file is part of Turbo Editor.
|
||||
~
|
||||
~ Turbo Editor is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 3 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Turbo Editor is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="aboutactivity_info_category">מידע</string>
|
||||
<string name="aboutactivity_app_category">Application Info</string>
|
||||
<string name="aboutactivity_miscellaneous_category">Miscellaneous</string>
|
||||
<string name="aboutactivity_version">Version %1$s</string>
|
||||
<string name="aboutactivity_author">Author</string>
|
||||
<string name="aboutactivity_authorsite">Author site</string>
|
||||
<string name="aboutactivity_authorsite_summary">Show author site</string>
|
||||
<string name="aboutactivity_authoremail">Author mail</string>
|
||||
<string name="aboutactivity_authoremail_summary">Send mail to author</string>
|
||||
<string name="aboutactivity_authortwitter">Twitter</string>
|
||||
<string name="aboutactivity_authortwitter_summary">Show twitter page</string>
|
||||
<string name="aboutactivity_authorgoogleplus">Google Plus</string>
|
||||
<string name="aboutactivity_authorgoogleplus_summary">Show Google Plus page</string>
|
||||
<string name="aboutactivity_betatester">Become a beta tester</string>
|
||||
<string name="aboutactivity_betatester_summary">Be a part of the community to receive beta updates</string>
|
||||
<string name="aboutactivity_helptranslate">Translate the Application</string>
|
||||
<string name="aboutactivity_helptranslate_summary">Correct some mistakes or add a new translation</string>
|
||||
<string name="aboutactivity_readme">Read Me</string>
|
||||
<string name="aboutactivity_readme_summary">Read the reference</string>
|
||||
<string name="aboutactivity_faq">FAQ</string>
|
||||
<string name="aboutactivity_faq_summary">Show app faq</string>
|
||||
<string name="aboutactivity_changelog">ChangeLog</string>
|
||||
<string name="aboutactivity_changelog_summary">Show app changelog</string>
|
||||
<string name="aboutactivity_license">Terms of service</string>
|
||||
<string name="aboutactivity_license_summary">Read the Terms of service</string>
|
||||
<string name="aboutactivity_license_accept">Accept</string>
|
||||
<string name="aboutactivity_license_refuse">Refuse</string>
|
||||
<string name="aboutactivity_privacy">Privacy policy</string>
|
||||
<string name="aboutactivity_privacy_summary">Read the Privacy policy</string>
|
||||
<string name="aboutactivity_todo">ToDo List</string>
|
||||
<string name="aboutactivity_todo_summary">Read the todo list</string>
|
||||
<string name="aboutactivity_donate">Make a donation</string>
|
||||
<string name="aboutactivity_donate_summary">Thank you for supporting me!</string>
|
||||
<string name="aboutactivity_market">Play Store</string>
|
||||
<string name="aboutactivity_market_summary">Send feedback and rate it!</string>
|
||||
<string name="aboutactivity_authormarket">Author Store</string>
|
||||
<string name="aboutactivity_authormarket_summary">Show author applications!</string>
|
||||
<string name="aboutactivity_xda">XDA thread</string>
|
||||
<string name="aboutactivity_xda_summary">Post your feedback here!</string>
|
||||
</resources>
|
@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@ -17,154 +18,155 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="aggiungi_account">New account</string>
|
||||
<string name="use_monospace">モノスペースを使用</string>
|
||||
<string name="recent_files">最近使用したファイル</string>
|
||||
<string name="font_size">フォント サイズ</string>
|
||||
<string name="connection_name">接続名</string>
|
||||
<string name="line_numbers">行番号</string>
|
||||
<string name="wrap_content">コンテンツを折り返し</string>
|
||||
<string name="view_it_on_the_web">Web 上で見る</string>
|
||||
<string name="file">ファイル</string>
|
||||
<string name="folder">フォルダー</string>
|
||||
<string name="light_theme">ライトテーマ</string>
|
||||
<string name="goto_line">行へ移動</string>
|
||||
<string name="find">検索</string>
|
||||
<string name="replace">置換</string>
|
||||
<string name="share">共有</string>
|
||||
<string name="keyboard_suggestions_and_swipe">キーボードの候補とスワイプ</string>
|
||||
<string name="enable_autoencoding">自動エンコーディング</string>
|
||||
<string name="set_as_working_folder">作業フォルダーとして設定</string>
|
||||
<string name="is_the_working_folder">これは作業フォルダーです</string>
|
||||
<string name="save_changes">ファイル %s に変更を保存しますか?</string>
|
||||
<string name="regular_expression">正規表現</string>
|
||||
<string name="text_to_find">検索するテキスト</string>
|
||||
<string name="text_to_replace">置換するテキスト</string>
|
||||
<string name="next">次へ</string>
|
||||
<string name="previous">前へ</string>
|
||||
<string name="please_wait">お待ちください…</string>
|
||||
<string name="occurrences_found">%s の出現が見つかりました</string>
|
||||
<string name="app_version">バージョン %s</string>
|
||||
<string name="translate_the_app">翻訳</string>
|
||||
<string name="changelog">変更履歴</string>
|
||||
<string name="match_case">大文字と小文字を区別</string>
|
||||
<string name="long_click_for_more_options">追加のオプションは長押ししてください</string>
|
||||
<string name="pro_version">プロ バージョン</string>
|
||||
<string name="auto_save">自動保存</string>
|
||||
<string name="read_only">読み取り専用</string>
|
||||
<string name="send_error_reports">エラーレポートを送信</string>
|
||||
<string name="extra_options">追加のオプション</string>
|
||||
<string name="split_text_if_too_long">長すぎる場合にテキストを分割</string>
|
||||
<string name="ignore_back_button">戻るボタンを無視</string>
|
||||
<string name="donate">Donate</string>
|
||||
<string name="aggiungi_account">新しいアカウント</string>
|
||||
<string name="attiva">アクティブ</string>
|
||||
<string name="cancella">削除</string>
|
||||
<string name="cancellazione">ファイルを削除中…</string>
|
||||
<string name="caricamento">ローディング…</string>
|
||||
<string name="cartella_locale_corrente">ローカルのカレントフォルダ</string>
|
||||
<string name="chiave_privata">秘密鍵</string>
|
||||
<string name="chiaro">Light</string>
|
||||
<string name="chiaro">ライト</string>
|
||||
<string name="codifica">文字エンコード</string>
|
||||
<string name="condividi">Share</string>
|
||||
<string name="crea_cartella_locale">New local folder</string>
|
||||
<string name="crea_cartella_remota">New remote folder</string>
|
||||
<string name="crea_file_remoto">New remote file</string>
|
||||
<string name="new_local_file">New local file</string>
|
||||
<string name="condividi">共有</string>
|
||||
<string name="crea_cartella_locale">新しいローカル フォルダー</string>
|
||||
<string name="crea_cartella_remota">新しいリモート フォルダー</string>
|
||||
<string name="crea_file_remoto">新しいリモート ファイル</string>
|
||||
<string name="new_local_file">新しいローカル ファイル</string>
|
||||
<string name="disconneti">切断</string>
|
||||
<string name="default_local_folder">デフォルトのローカルフォルダ</string>
|
||||
<string name="dove_scaricare">Where to download?</string>
|
||||
<string name="dove_scaricare">ここにダウンロードしますか?</string>
|
||||
<string name="download">ダウンロード</string>
|
||||
<string name="download_completato">Download completed</string>
|
||||
<string name="duplicate">Duplicate</string>
|
||||
<string name="fatto">Done</string>
|
||||
<string name="home">Home</string>
|
||||
<string name="download_completato">ダウンロードが完了しました</string>
|
||||
<string name="duplicate">複製</string>
|
||||
<string name="fatto">完了</string>
|
||||
<string name="home">ホーム</string>
|
||||
<string name="host">ホスト</string>
|
||||
<string name="info">情報</string>
|
||||
<string name="locale">Local</string>
|
||||
<string name="locale">ローカル</string>
|
||||
<string name="log_in">ログイン中…</string>
|
||||
<string name="modifica">Edit</string>
|
||||
<string name="modifica">編集</string>
|
||||
<string name="muovi">移動</string>
|
||||
<string name="nascondi">Hide</string>
|
||||
<string name="nome_app">Turbo Client</string>
|
||||
<string name="nome_app_turbo_editor">Turbo Editor</string>
|
||||
<string name="nascondi">非表示</string>
|
||||
<string name="nome_app">ターボ クライアント</string>
|
||||
<string name="nome_app_turbo_editor">ターボ エディター</string>
|
||||
<string name="nome_utente">ユーザー名</string>
|
||||
<string name="passiva">パッシブモード</string>
|
||||
<string name="passphrase">Passphrase</string>
|
||||
<string name="passphrase">パスフレーズ</string>
|
||||
<string name="password">パスワード</string>
|
||||
<string name="password_summary">Leave it empty to prompt for it every session</string>
|
||||
<string name="password_summary">毎回入力するには空にしてください</string>
|
||||
<string name="porta">ポート番号</string>
|
||||
<string name="preferenze">設定</string>
|
||||
<string name="remoto">Remote</string>
|
||||
<string name="riavva_per_tema">To change the theme, restart the application</string>
|
||||
<string name="remoto">リモート</string>
|
||||
<string name="riavva_per_tema">テーマを変更するにはアプリを再起動してください</string>
|
||||
<string name="rinomina">名前の変更</string>
|
||||
<string name="root">Root</string>
|
||||
<string name="salva">保存</string>
|
||||
<string name="scuro">Dark</string>
|
||||
<string name="scuro">ダーク</string>
|
||||
<string name="seleziona">選択</string>
|
||||
<string name="seleziona_account">アカウントを選択</string>
|
||||
<string name="sicuro">本当に実行しますか?</string>
|
||||
<string name="something_failed">Something failed</string>
|
||||
<string name="skip_same_file">Do not transfer same file</string>
|
||||
<string name="something_failed">何かエラーがあります</string>
|
||||
<string name="skip_same_file">同じファイルを転送できません。</string>
|
||||
<string name="tema_app">アプリのテーマ</string>
|
||||
<string name="tipo_connessione">接続のタイプ</string>
|
||||
<string name="tipo_protocollo">プロトコルのタイプ</string>
|
||||
<string name="un_altra_cartella">他のフォルダ</string>
|
||||
<string name="use_passphrase">Use a passphrase</string>
|
||||
<string name="use_passphrase">パスフレーズを使用</string>
|
||||
<string name="upload">アップロード</string>
|
||||
<string name="upload_completato">Upload completed</string>
|
||||
<string name="what_to_do">What do you want to do?</string>
|
||||
<string name="menu_syntax_highlight">Syntax highlight</string>
|
||||
<string name="upload_completato">アップロードが完了しました</string>
|
||||
<string name="what_to_do">下記のどれかを選択して下さい。</string>
|
||||
<string name="menu_syntax_highlight">構文の強調表示</string>
|
||||
<string name="testo_indietro">取り消し</string>
|
||||
<string name="testo_rifai">やり直し</string>
|
||||
<string name="sync">同期</string>
|
||||
<string name="remote_folder_to_sync">同期するリモートのフォルダ</string>
|
||||
<string name="local_folder_to_sync">同期するローカルのフォルダ</string>
|
||||
<string name="vota">評価する</string>
|
||||
<string name="inapp_unavailable">Cannot contact Google Play</string>
|
||||
<string name="inapp_description">Support the development of other great features.</string>
|
||||
<string name="upgrade_premium">Upgrade to Premium</string>
|
||||
<string name="upgrade_premium_summary">Upgrade to Premium and support the development of Turbo Client!</string>
|
||||
<string name="download_unlocked_version">Download unlocked version</string>
|
||||
<string name="inapp_second_description">What is Turbo Client worth to you? Set your price! </string>
|
||||
<string name="inapp_first_description">Upgrade to unlock this features:</string>
|
||||
<string name="inapp_item_openandeditfiles">Power to open and modify any type of file.</string>
|
||||
<string name="inapp_item_backup_service">Backup service to backup and restore your data safely. </string>
|
||||
<string name="inapp_unlock_features">Unlock the Premium features</string>
|
||||
<string name="inapp_seconditem_description">I really like this app!</string>
|
||||
<string name="inapp_thirditem_description">I love this app!</string>
|
||||
<string name="backup_accounts">Backup the accounts</string>
|
||||
<string name="restore_accounts">Restore the accounts</string>
|
||||
<string name="share_accounts">Backup and share the accounts</string>
|
||||
<string name="importing_accounts">Importing the accounts…</string>
|
||||
<string name="exporting_accounts">Exporting the accounts...</string>
|
||||
<string name="backup_not_found">No backups found</string>
|
||||
<string name="err_cant_open_the_file">Cannot open the file</string>
|
||||
<string name="err_temp_folder_doesnt_exist">Temporary folder does not exist</string>
|
||||
<string name="err_occured">An error occurred</string>
|
||||
<string name="inapp_unavailable">Google Play に接続できません。</string>
|
||||
<string name="inapp_description">他の素晴らしい機能の開発をサポートします。</string>
|
||||
<string name="upgrade_premium">プレミアムにアップグレード</string>
|
||||
<string name="upgrade_premium_summary">プレミアムにアップグレードし、ターボ クライアントの開発をサポートします !</string>
|
||||
<string name="download_unlocked_version">ロック解除されたバージョンをダウンロード</string>
|
||||
<string name="inapp_second_description">ターボ クライアントはあなたにどれくらい価値がありますか?価格を設定してください! </string>
|
||||
<string name="inapp_first_description">この機能をロック解除するためアップグレード:</string>
|
||||
<string name="inapp_item_openandeditfiles">任意の種類のファイルを開いて変更します。</string>
|
||||
<string name="inapp_item_backup_service">安全にデータのバックアップおよび復元を行うバックアップサービス。 </string>
|
||||
<string name="inapp_unlock_features">プレミアム機能をロック解除</string>
|
||||
<string name="inapp_seconditem_description">このアプリケーションが本当に好き!</string>
|
||||
<string name="inapp_thirditem_description">このアプリが大好き!</string>
|
||||
<string name="backup_accounts">アカウントをバックアップ</string>
|
||||
<string name="restore_accounts">アカウントを復元</string>
|
||||
<string name="share_accounts">アカウントのバックアップおよび共有</string>
|
||||
<string name="importing_accounts">アカウントをインポートしています…</string>
|
||||
<string name="exporting_accounts">アカウントをエクスポートしています…</string>
|
||||
<string name="backup_not_found">バックアップはありません</string>
|
||||
<string name="err_cant_open_the_file">ファイルを開くことができません</string>
|
||||
<string name="err_temp_folder_doesnt_exist">一時フォルダーが存在しません</string>
|
||||
<string name="err_occured">エラーが発生しました</string>
|
||||
<string name="ui_ux">UI</string>
|
||||
<string name="remove">Remove</string>
|
||||
<string name="modification_date">Modification date</string>
|
||||
<string name="name">Name</string>
|
||||
<string name="size">Size</string>
|
||||
<string name="sort">Sort</string>
|
||||
<string name="open">Open</string>
|
||||
<string name="file_modified">The file %1$s was modified, do you want to upload it?</string>
|
||||
<string name="file_saved_with_success">The file %1$s was saved with success!</string>
|
||||
<string name="create_new_account">Create a new account</string>
|
||||
<string name="create_new_account_to_start">Create a new account to start.</string>
|
||||
<string name="type">Type</string>
|
||||
<string name="send_feedback">Send feedback</string>
|
||||
<string name="copy_url">Copy URL</string>
|
||||
<string name="cut">Cut</string>
|
||||
<string name="paste">paste</string>
|
||||
<string name="advanced">Advanced</string>
|
||||
<string name="auto">Auto</string>
|
||||
<string name="bytes">Bytes</string>
|
||||
<string name="unit_measurement_for_file_size">Unit of measurement for file size</string>
|
||||
<string name="open_source_license">Open Source licenses</string>
|
||||
<string name="open_source_license_summary">Show open source licenses</string>
|
||||
<string name="open_a_file">Open a file</string>
|
||||
<string name="open_this_time_only">Open this time only</string>
|
||||
<string name="change_list_type">Change the list type</string>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
<string name="recent_files">Recent files</string>
|
||||
<string name="font_size">Font size</string>
|
||||
<string name="connection_name">Connection Name</string>
|
||||
<string name="line_numbers">Line Numbers</string>
|
||||
<string name="wrap_content">Wrap content</string>
|
||||
<string name="view_it_on_the_web">View it on the web</string>
|
||||
<string name="add">Add</string>
|
||||
<string name="file">File</string>
|
||||
<string name="folder">Folder</string>
|
||||
<string name="light_theme">Light Theme</string>
|
||||
<string name="goto_line">Goto Line</string>
|
||||
<string name="find">Find</string>
|
||||
<string name="replace">Replace</string>
|
||||
<string name="root_permission">Root Permission</string>
|
||||
<string name="share">Share</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Keyboard suggestions and Swipe</string>
|
||||
<string name="enable_autoencoding">Auto-Encoding</string>
|
||||
<string name="set_as_working_folder">Set as the working folder</string>
|
||||
<string name="is_the_working_folder">This is the working folder</string>
|
||||
<string name="save_changes">Do you want to save the changes to the file %s?</string>
|
||||
<string name="regular_expression">Regular Expression</string>
|
||||
<string name="text_to_find">Text to find</string>
|
||||
<string name="text_to_replace">Text to replace</string>
|
||||
<string name="next">Next</string>
|
||||
<string name="previous">Previous</string>
|
||||
<string name="please_wait">Please wait…</string>
|
||||
<string name="occurrences_found">%s occurrences was found</string>
|
||||
<string name="app_version">Version %s</string>
|
||||
<string name="translate_the_app">Translate</string>
|
||||
<string name="changelog">Changelog</string>
|
||||
<string name="match_case">Match case</string>
|
||||
<string name="long_click_for_more_options">Long click for more options</string>
|
||||
<string name="pro_version">Pro version</string>
|
||||
<string name="auto_save">Auto save</string>
|
||||
<string name="read_only">Read only</string>
|
||||
<string name="remove">削除</string>
|
||||
<string name="modification_date">変更日</string>
|
||||
<string name="name">名前</string>
|
||||
<string name="size">サイズ</string>
|
||||
<string name="sort">並べ換え</string>
|
||||
<string name="open">開く</string>
|
||||
<string name="file_modified">ファイル %1$s は変更されました、アップロードしますか?</string>
|
||||
<string name="file_saved_with_success">ファイル %1$s は保存されました!</string>
|
||||
<string name="create_new_account">新しいアカウントを作成します</string>
|
||||
<string name="create_new_account_to_start">新しいアカウントを作成して開始します。</string>
|
||||
<string name="type">種類</string>
|
||||
<string name="send_feedback">フィードバックを送信</string>
|
||||
<string name="copy_url">URLをコピー</string>
|
||||
<string name="cut">切り取り</string>
|
||||
<string name="paste">貼り付け</string>
|
||||
<string name="advanced">詳細</string>
|
||||
<string name="auto">自動</string>
|
||||
<string name="bytes">バイト</string>
|
||||
<string name="unit_measurement_for_file_size">ファイルサイズの単位</string>
|
||||
<string name="open_source_license">オープン ソース ライセンス</string>
|
||||
<string name="open_source_license_summary">オープン ソース ライセンスを表示</string>
|
||||
<string name="open_a_file">ファイルを開く</string>
|
||||
<string name="open_this_time_only">今回のみ開く</string>
|
||||
<string name="change_list_type">リストの種類を変更</string>
|
||||
</resources>
|
||||
|
@ -1,63 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
~ This file is part of Turbo Editor.
|
||||
~
|
||||
~ Turbo Editor is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 3 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Turbo Editor is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="aboutactivity_info_category">情報</string>
|
||||
<string name="aboutactivity_app_category">Application Info</string>
|
||||
<string name="aboutactivity_miscellaneous_category">Miscellaneous</string>
|
||||
<string name="aboutactivity_version">Version %1$s</string>
|
||||
<string name="aboutactivity_author">Author</string>
|
||||
<string name="aboutactivity_authorsite">Author site</string>
|
||||
<string name="aboutactivity_authorsite_summary">Show author site</string>
|
||||
<string name="aboutactivity_authoremail">Author mail</string>
|
||||
<string name="aboutactivity_authoremail_summary">Send mail to author</string>
|
||||
<string name="aboutactivity_authortwitter">Twitter</string>
|
||||
<string name="aboutactivity_authortwitter_summary">Show twitter page</string>
|
||||
<string name="aboutactivity_authorgoogleplus">Google Plus</string>
|
||||
<string name="aboutactivity_authorgoogleplus_summary">Show Google Plus page</string>
|
||||
<string name="aboutactivity_betatester">Become a beta tester</string>
|
||||
<string name="aboutactivity_betatester_summary">Be a part of the community to receive beta updates</string>
|
||||
<string name="aboutactivity_helptranslate">Translate the Application</string>
|
||||
<string name="aboutactivity_helptranslate_summary">Correct some mistakes or add a new translation</string>
|
||||
<string name="aboutactivity_readme">Read Me</string>
|
||||
<string name="aboutactivity_readme_summary">Read the reference</string>
|
||||
<string name="aboutactivity_faq">FAQ</string>
|
||||
<string name="aboutactivity_faq_summary">Show app faq</string>
|
||||
<string name="aboutactivity_changelog">ChangeLog</string>
|
||||
<string name="aboutactivity_changelog_summary">Show app changelog</string>
|
||||
<string name="aboutactivity_license">Terms of service</string>
|
||||
<string name="aboutactivity_license_summary">Read the Terms of service</string>
|
||||
<string name="aboutactivity_license_accept">Accept</string>
|
||||
<string name="aboutactivity_license_refuse">Refuse</string>
|
||||
<string name="aboutactivity_privacy">Privacy policy</string>
|
||||
<string name="aboutactivity_privacy_summary">Read the Privacy policy</string>
|
||||
<string name="aboutactivity_todo">ToDo List</string>
|
||||
<string name="aboutactivity_todo_summary">Read the todo list</string>
|
||||
<string name="aboutactivity_donate">Make a donation</string>
|
||||
<string name="aboutactivity_donate_summary">Thank you for supporting me!</string>
|
||||
<string name="aboutactivity_market">Play Store</string>
|
||||
<string name="aboutactivity_market_summary">Send feedback and rate it!</string>
|
||||
<string name="aboutactivity_authormarket">Author Store</string>
|
||||
<string name="aboutactivity_authormarket_summary">Show author applications!</string>
|
||||
<string name="aboutactivity_xda">XDA thread</string>
|
||||
<string name="aboutactivity_xda_summary">Post your feedback here!</string>
|
||||
</resources>
|
@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@ -17,10 +18,47 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">고정 폭 사용</string>
|
||||
<string name="recent_files">최근 파일</string>
|
||||
<string name="font_size">글꼴 크기</string>
|
||||
<string name="connection_name">연결 이름</string>
|
||||
<string name="line_numbers">줄 번호</string>
|
||||
<string name="wrap_content">자동 줄넘기기</string>
|
||||
<string name="view_it_on_the_web">웹에서 보기</string>
|
||||
<string name="file">파일</string>
|
||||
<string name="folder">폴더</string>
|
||||
<string name="light_theme">밝은 테마</string>
|
||||
<string name="goto_line">라인으로 가기</string>
|
||||
<string name="find">찾기</string>
|
||||
<string name="replace">바꾸기</string>
|
||||
<string name="share">공유</string>
|
||||
<string name="keyboard_suggestions_and_swipe">키보드 제안 및 스와이프</string>
|
||||
<string name="enable_autoencoding">자동 인코딩</string>
|
||||
<string name="set_as_working_folder">작업 폴더 설정</string>
|
||||
<string name="is_the_working_folder">이건 작업 폴더입니다</string>
|
||||
<string name="save_changes">파일 %s의 변경 사항을 저장하겠습니까?</string>
|
||||
<string name="regular_expression">정규 표현식</string>
|
||||
<string name="text_to_find">찾을 텍스트</string>
|
||||
<string name="text_to_replace">바꿀 텍스트</string>
|
||||
<string name="next">다음</string>
|
||||
<string name="previous">이전</string>
|
||||
<string name="please_wait">기다려 주십시오…</string>
|
||||
<string name="occurrences_found">%s개 발견</string>
|
||||
<string name="app_version">버전 %s</string>
|
||||
<string name="translate_the_app">번역</string>
|
||||
<string name="changelog"><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD></string>
|
||||
<string name="match_case">대/소문자 구분</string>
|
||||
<string name="long_click_for_more_options">길게 눌러 옵션 더보기</string>
|
||||
<string name="pro_version">프로 버전</string>
|
||||
<string name="auto_save">자동 저장</string>
|
||||
<string name="read_only">읽기 전용</string>
|
||||
<string name="send_error_reports">Send error reports</string>
|
||||
<string name="extra_options">Extra options</string>
|
||||
<string name="split_text_if_too_long">Split the text if too long</string>
|
||||
<string name="ignore_back_button">Ignore back button</string>
|
||||
<string name="donate">Donate</string>
|
||||
<string name="aggiungi_account">새 계정</string>
|
||||
<string name="attiva">액티브(Active)</string>
|
||||
<string name="cancella">삭제</string>
|
||||
@ -33,11 +71,11 @@
|
||||
<string name="condividi">공유</string>
|
||||
<string name="crea_cartella_locale">새 로컬 폴더</string>
|
||||
<string name="crea_cartella_remota">새 원격 폴더</string>
|
||||
<string name="crea_file_remoto">새 원겯 파일</string>
|
||||
<string name="crea_file_remoto">새 원격 파일</string>
|
||||
<string name="new_local_file">새 로컬 파일</string>
|
||||
<string name="disconneti">연결 끊기</string>
|
||||
<string name="default_local_folder">기본 로컬 폴더</string>
|
||||
<string name="dove_scaricare">어디에 다운로드 하시겠습니까?</string>
|
||||
<string name="dove_scaricare">어디에 다운로드하겠습니까?</string>
|
||||
<string name="download">내려받기</string>
|
||||
<string name="download_completato">다운로드 완료</string>
|
||||
<string name="duplicate">복사</string>
|
||||
@ -56,11 +94,11 @@
|
||||
<string name="passiva">패시브 모드</string>
|
||||
<string name="passphrase">암호</string>
|
||||
<string name="password">비밀번호</string>
|
||||
<string name="password_summary">모든 섹션을 비워주세요</string>
|
||||
<string name="password_summary">모든 섹션을 비워주십시오</string>
|
||||
<string name="porta">포트</string>
|
||||
<string name="preferenze">환경 설정</string>
|
||||
<string name="remoto">원격</string>
|
||||
<string name="riavva_per_tema">테마 변경을 적용하려면 재시작하세요</string>
|
||||
<string name="riavva_per_tema">테마 변경을 적용하려면 재시작하십시오</string>
|
||||
<string name="rinomina">이름 바꾸기</string>
|
||||
<string name="root">루트</string>
|
||||
<string name="salva">저장</string>
|
||||
@ -69,7 +107,7 @@
|
||||
<string name="seleziona_account">계정을 선택하십시오</string>
|
||||
<string name="sicuro">정말로 실행하시겠습니까?</string>
|
||||
<string name="something_failed">실패</string>
|
||||
<string name="skip_same_file">같은파일을 전송하지 마세요</string>
|
||||
<string name="skip_same_file">같은 파일을 전송하지 마십시오</string>
|
||||
<string name="tema_app">앱 테마</string>
|
||||
<string name="tipo_connessione">연결 방식</string>
|
||||
<string name="tipo_protocollo">프로토콜 방식</string>
|
||||
@ -77,7 +115,7 @@
|
||||
<string name="use_passphrase">암호 사용</string>
|
||||
<string name="upload">올리기</string>
|
||||
<string name="upload_completato">업로드 완료</string>
|
||||
<string name="what_to_do">뭘 할까요?</string>
|
||||
<string name="what_to_do">무엇을 하겠습니까?</string>
|
||||
<string name="menu_syntax_highlight">구문 하이라이트</string>
|
||||
<string name="testo_indietro">실행 취소</string>
|
||||
<string name="testo_rifai">다시 실행</string>
|
||||
@ -85,24 +123,24 @@
|
||||
<string name="remote_folder_to_sync">동기화 할 원격 폴더</string>
|
||||
<string name="local_folder_to_sync">동기화 할 로컬 폴더</string>
|
||||
<string name="vota">평가</string>
|
||||
<string name="inapp_unavailable">구글 플래이에 연결 할 수 없습니다</string>
|
||||
<string name="inapp_unavailable">구글 플레이에 연결할 수 없습니다</string>
|
||||
<string name="inapp_description">다른 기능 개발을 지원합니다</string>
|
||||
<string name="upgrade_premium">프리미엄 업그레이드</string>
|
||||
<string name="upgrade_premium_summary">프리미엄으로 업그레이드 하고 터보 클라이언트의 개발을 지원하겠습니다!</string>
|
||||
<string name="download_unlocked_version">공개버전 다운로드</string>
|
||||
<string name="inapp_second_description">당신에게 있어서 터보 클라이언트의 가치는 얼마입니까? 가격을 설정해주세요!</string>
|
||||
<string name="upgrade_premium">프리미엄으로 업그레이드</string>
|
||||
<string name="upgrade_premium_summary">프리미엄으로 업그레이드하고 터보 클라이언트의 개발을 지원하십시오!</string>
|
||||
<string name="download_unlocked_version">해제된 버전 다운로드</string>
|
||||
<string name="inapp_second_description">당신에게 터보 클라이언트의 가치는 얼마입니까? 가격을 측정해주세요!</string>
|
||||
<string name="inapp_first_description">이 기능을 업그레이드:</string>
|
||||
<string name="inapp_item_openandeditfiles">모든 파일을 열고 수정합니다.</string>
|
||||
<string name="inapp_item_backup_service">백업을 하여 데이터를 안전하게 복원합니다.</string>
|
||||
<string name="inapp_item_backup_service">백업하여 데이터를 안전하게 복원합니다.</string>
|
||||
<string name="inapp_unlock_features">프리미엄 기능 잠금 해제</string>
|
||||
<string name="inapp_seconditem_description">이 앱을 좋아합니다!</string>
|
||||
<string name="inapp_thirditem_description">이 앱을 사랑합니다!</string>
|
||||
<string name="backup_accounts">계정 백업</string>
|
||||
<string name="restore_accounts">계정 복원</string>
|
||||
<string name="share_accounts">백업 및 계정 공유</string>
|
||||
<string name="importing_accounts">계정 가져오기</string>
|
||||
<string name="exporting_accounts">계정 내보내기</string>
|
||||
<string name="backup_not_found">백업이 발견되지 않음</string>
|
||||
<string name="importing_accounts">계정을 가져오는 중…</string>
|
||||
<string name="exporting_accounts">계정을 내보내는 중...</string>
|
||||
<string name="backup_not_found">발견한 백업 없음</string>
|
||||
<string name="err_cant_open_the_file">파일을 열 수 없습니다</string>
|
||||
<string name="err_temp_folder_doesnt_exist">임시 폴더가 존재하지 않습니다</string>
|
||||
<string name="err_occured">오류가 발생했습니다!</string>
|
||||
@ -114,12 +152,12 @@
|
||||
<string name="sort">정렬</string>
|
||||
<string name="open">열기</string>
|
||||
<string name="file_modified">파일 %1$ s 수정함. 업로드 하시겠습니까?</string>
|
||||
<string name="file_saved_with_success">파일 %1$ s 저장 완료!</string>
|
||||
<string name="file_saved_with_success">파일 %1$s 저장 완료!</string>
|
||||
<string name="create_new_account">새 계정 만들기</string>
|
||||
<string name="create_new_account_to_start">시작 하려면 새 계정을 만듭니다.</string>
|
||||
<string name="type">타입</string>
|
||||
<string name="create_new_account_to_start">시작하려면 새 계정을 만드십시오.</string>
|
||||
<string name="type">유형</string>
|
||||
<string name="send_feedback">의견 보내기</string>
|
||||
<string name="copy_url">주소 복사</string>
|
||||
<string name="copy_url">URL 복사</string>
|
||||
<string name="cut">잘라내기</string>
|
||||
<string name="paste">붙여넣기</string>
|
||||
<string name="advanced">고급</string>
|
||||
@ -129,42 +167,6 @@
|
||||
<string name="open_source_license">오픈 소스 라이센스</string>
|
||||
<string name="open_source_license_summary">오픈 소스 라이센스 표시</string>
|
||||
<string name="open_a_file">파일 열기</string>
|
||||
<string name="open_this_time_only">이번만 열기</string>
|
||||
<string name="change_list_type">목록 타입 변경</string>
|
||||
<string name="use_monospace">고정 폭 사용</string>
|
||||
<string name="recent_files">최근 파일</string>
|
||||
<string name="font_size">글꼴 크기</string>
|
||||
<string name="connection_name">연결 이름</string>
|
||||
<string name="line_numbers">줄 번호</string>
|
||||
<string name="wrap_content">Wrap content</string>
|
||||
<string name="view_it_on_the_web">View it on the web</string>
|
||||
<string name="add">Add</string>
|
||||
<string name="file">File</string>
|
||||
<string name="folder">폴더</string>
|
||||
<string name="light_theme">Light Theme</string>
|
||||
<string name="goto_line">Goto Line</string>
|
||||
<string name="find">Find</string>
|
||||
<string name="replace">Replace</string>
|
||||
<string name="root_permission">Root Permission</string>
|
||||
<string name="share">공유</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Keyboard suggestions and Swipe</string>
|
||||
<string name="enable_autoencoding">Auto-Encoding</string>
|
||||
<string name="set_as_working_folder">Set as the working folder</string>
|
||||
<string name="is_the_working_folder">This is the working folder</string>
|
||||
<string name="save_changes">Do you want to save the changes to the file %s?</string>
|
||||
<string name="regular_expression">Regular Expression</string>
|
||||
<string name="text_to_find">Text to find</string>
|
||||
<string name="text_to_replace">Text to replace</string>
|
||||
<string name="next">Next</string>
|
||||
<string name="previous">Previous</string>
|
||||
<string name="please_wait">Please wait…</string>
|
||||
<string name="occurrences_found">%s occurrences was found</string>
|
||||
<string name="app_version">Version %s</string>
|
||||
<string name="translate_the_app">Translate</string>
|
||||
<string name="changelog"><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD></string>
|
||||
<string name="match_case">Match case</string>
|
||||
<string name="long_click_for_more_options">Long click for more options</string>
|
||||
<string name="pro_version">Pro version</string>
|
||||
<string name="auto_save">Auto save</string>
|
||||
<string name="read_only">Read only</string>
|
||||
<string name="open_this_time_only">한 번만 열기</string>
|
||||
<string name="change_list_type">목록 유형 변경</string>
|
||||
</resources>
|
||||
|
@ -1,63 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
~ This file is part of Turbo Editor.
|
||||
~
|
||||
~ Turbo Editor is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 3 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Turbo Editor is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="aboutactivity_info_category"><EFBFBD><EFBFBD><EFBFBD><EFBFBD></string>
|
||||
<string name="aboutactivity_app_category">APP <20><><EFBFBD><EFBFBD></string>
|
||||
<string name="aboutactivity_miscellaneous_category"><EFBFBD><EFBFBD>Ÿ</string>
|
||||
<string name="aboutactivity_version"><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %1$s</string>
|
||||
<string name="aboutactivity_author"><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></string>
|
||||
<string name="aboutactivity_authorsite"><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ʈ</string>
|
||||
<string name="aboutactivity_authorsite_summary"><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>Ʈ ǥ<><C7A5></string>
|
||||
<string name="aboutactivity_authoremail"><EFBFBD≯<EFBFBD><EFBFBD><EFBFBD></string>
|
||||
<string name="aboutactivity_authoremail_summary"><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ڿ<EFBFBD><EFBFBD><EFBFBD> <20≯<EFBFBD><CCB8><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD></string>
|
||||
<string name="aboutactivity_authortwitter">Ʈ<EFBFBD><EFBFBD><EFBFBD><EFBFBD></string>
|
||||
<string name="aboutactivity_authortwitter_summary">Ʈ<EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ǥ<><C7A5></string>
|
||||
<string name="aboutactivity_authorgoogleplus"><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>÷<EFBFBD><C3B7><EFBFBD></string>
|
||||
<string name="aboutactivity_authorgoogleplus_summary"><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>÷<EFBFBD><C3B7><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ǥ<><C7A5></string>
|
||||
<string name="aboutactivity_betatester">베타테스터 신청</string>
|
||||
<string name="aboutactivity_betatester_summary">베타 버전 업데이트를 받기 위해 커뮤니티의 일원이 됩니다</string>
|
||||
<string name="aboutactivity_helptranslate">어플리케이션 번역</string>
|
||||
<string name="aboutactivity_helptranslate_summary">BUMCORE™에서 2013. 11. 19. 번역 완료</string>
|
||||
<string name="aboutactivity_readme"><EFBFBD>о<EFBFBD> <20><><EFBFBD><EFBFBD></string>
|
||||
<string name="aboutactivity_readme_summary"><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20>б<EFBFBD></string>
|
||||
<string name="aboutactivity_faq">자주 묻는 질문(FAQ)</string>
|
||||
<string name="aboutactivity_faq_summary"><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>亯 ǥ<><C7A5></string>
|
||||
<string name="aboutactivity_changelog"><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD></string>
|
||||
<string name="aboutactivity_changelog_summary">APP <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> ǥ<><C7A5></string>
|
||||
<string name="aboutactivity_license"><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD></string>
|
||||
<string name="aboutactivity_license_summary"><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20>о<EFBFBD> <20><><EFBFBD><EFBFBD></string>
|
||||
<string name="aboutactivity_license_accept"><EFBFBD><EFBFBD><EFBFBD><EFBFBD></string>
|
||||
<string name="aboutactivity_license_refuse"><EFBFBD>ź<EFBFBD></string>
|
||||
<string name="aboutactivity_privacy"><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><>ȣ <20><>å</string>
|
||||
<string name="aboutactivity_privacy_summary"><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><>ȣ <20><>å <20>о<EFBFBD> <20><><EFBFBD><EFBFBD></string>
|
||||
<string name="aboutactivity_todo"><EFBFBD>۾<EFBFBD> <20><><EFBFBD><EFBFBD></string>
|
||||
<string name="aboutactivity_todo_summary"><EFBFBD>۾<EFBFBD> <20><><EFBFBD><EFBFBD> <20>Ͼ<EFBFBD> <20><><EFBFBD><EFBFBD></string>
|
||||
<string name="aboutactivity_donate"><EFBFBD>Ŀ<EFBFBD><EFBFBD>ϱ<EFBFBD></string>
|
||||
<string name="aboutactivity_donate_summary"><EFBFBD>Ŀ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ֽɿ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>帳<EFBFBD>ϴ<EFBFBD>!</string>
|
||||
<string name="aboutactivity_market"><EFBFBD>÷<EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD></string>
|
||||
<string name="aboutactivity_market_summary"><EFBFBD>ǵ<EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>!</string>
|
||||
<string name="aboutactivity_authormarket"><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD></string>
|
||||
<string name="aboutactivity_authormarket_summary"><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><> ǥ<><C7A5>!</string>
|
||||
<string name="aboutactivity_xda">XDA thread</string>
|
||||
<string name="aboutactivity_xda_summary">Post your feedback here!</string>
|
||||
</resources>
|
@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
@ -17,10 +18,47 @@
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
<string name="recent_files">Recent files</string>
|
||||
<string name="font_size">Font size</string>
|
||||
<string name="connection_name">Connection Name</string>
|
||||
<string name="line_numbers">Line Numbers</string>
|
||||
<string name="wrap_content">Wrap content</string>
|
||||
<string name="view_it_on_the_web">View it on the web</string>
|
||||
<string name="file">File</string>
|
||||
<string name="folder">Folder</string>
|
||||
<string name="light_theme">Light Theme</string>
|
||||
<string name="goto_line">Go to Line</string>
|
||||
<string name="find">Find</string>
|
||||
<string name="replace">Replace</string>
|
||||
<string name="share">Share</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Keyboard suggestions and Swipe</string>
|
||||
<string name="enable_autoencoding">Auto-Encoding</string>
|
||||
<string name="set_as_working_folder">Set as the working folder</string>
|
||||
<string name="is_the_working_folder">This is the working folder</string>
|
||||
<string name="save_changes">Do you want to save the changes to the file %s?</string>
|
||||
<string name="regular_expression">Regular Expression</string>
|
||||
<string name="text_to_find">Text to find</string>
|
||||
<string name="text_to_replace">Text to replace</string>
|
||||
<string name="next">Next</string>
|
||||
<string name="previous">Previous</string>
|
||||
<string name="please_wait">Please wait…</string>
|
||||
<string name="occurrences_found">%s occurrences was found</string>
|
||||
<string name="app_version">Version %s</string>
|
||||
<string name="translate_the_app">Translate</string>
|
||||
<string name="changelog">Changelog</string>
|
||||
<string name="match_case">Match case</string>
|
||||
<string name="long_click_for_more_options">Long click for more options</string>
|
||||
<string name="pro_version">Pro version</string>
|
||||
<string name="auto_save">Auto save</string>
|
||||
<string name="read_only">Read only</string>
|
||||
<string name="send_error_reports">Send error reports</string>
|
||||
<string name="extra_options">Extra options</string>
|
||||
<string name="split_text_if_too_long">Split the text if too long</string>
|
||||
<string name="ignore_back_button">Ignore back button</string>
|
||||
<string name="donate">Donate</string>
|
||||
<string name="aggiungi_account">New account</string>
|
||||
<string name="attiva">Active</string>
|
||||
<string name="cancella">Delete</string>
|
||||
@ -131,40 +169,4 @@
|
||||
<string name="open_a_file">Open a file</string>
|
||||
<string name="open_this_time_only">Open this time only</string>
|
||||
<string name="change_list_type">Change the list type</string>
|
||||
<string name="use_monospace">Use monospace</string>
|
||||
<string name="recent_files">Recent files</string>
|
||||
<string name="font_size">Font size</string>
|
||||
<string name="connection_name">Connection Name</string>
|
||||
<string name="line_numbers">Line Numbers</string>
|
||||
<string name="wrap_content">Wrap content</string>
|
||||
<string name="view_it_on_the_web">View it on the web</string>
|
||||
<string name="add">Add</string>
|
||||
<string name="file">File</string>
|
||||
<string name="folder">Folder</string>
|
||||
<string name="light_theme">Light Theme</string>
|
||||
<string name="goto_line">Goto Line</string>
|
||||
<string name="find">Find</string>
|
||||
<string name="replace">Replace</string>
|
||||
<string name="root_permission">Root Permission</string>
|
||||
<string name="share">Share</string>
|
||||
<string name="keyboard_suggestions_and_swipe">Keyboard suggestions and Swipe</string>
|
||||
<string name="enable_autoencoding">Auto-Encoding</string>
|
||||
<string name="set_as_working_folder">Set as the working folder</string>
|
||||
<string name="is_the_working_folder">This is the working folder</string>
|
||||
<string name="save_changes">Do you want to save the changes to the file %s?</string>
|
||||
<string name="regular_expression">Regular Expression</string>
|
||||
<string name="text_to_find">Text to find</string>
|
||||
<string name="text_to_replace">Text to replace</string>
|
||||
<string name="next">Next</string>
|
||||
<string name="previous">Previous</string>
|
||||
<string name="please_wait">Please wait…</string>
|
||||
<string name="occurrences_found">%s occurrences was found</string>
|
||||
<string name="app_version">Version %s</string>
|
||||
<string name="translate_the_app">Translate</string>
|
||||
<string name="changelog">Changelog</string>
|
||||
<string name="match_case">Match case</string>
|
||||
<string name="long_click_for_more_options">Long click for more options</string>
|
||||
<string name="pro_version">Pro version</string>
|
||||
<string name="auto_save">Auto save</string>
|
||||
<string name="read_only">Read only</string>
|
||||
</resources>
|
||||
|
@ -1,63 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
~ This file is part of Turbo Editor.
|
||||
~
|
||||
~ Turbo Editor is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 3 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Turbo Editor is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--Generated by crowdin.net-->
|
||||
<resources>
|
||||
<string name="aboutactivity_info_category">Info</string>
|
||||
<string name="aboutactivity_app_category">Application Info</string>
|
||||
<string name="aboutactivity_miscellaneous_category">Miscellaneous</string>
|
||||
<string name="aboutactivity_version">Version %1$s</string>
|
||||
<string name="aboutactivity_author">Author</string>
|
||||
<string name="aboutactivity_authorsite">Author site</string>
|
||||
<string name="aboutactivity_authorsite_summary">Show author site</string>
|
||||
<string name="aboutactivity_authoremail">Author mail</string>
|
||||
<string name="aboutactivity_authoremail_summary">Send mail to author</string>
|
||||
<string name="aboutactivity_authortwitter">Twitter</string>
|
||||
<string name="aboutactivity_authortwitter_summary">Show twitter page</string>
|
||||
<string name="aboutactivity_authorgoogleplus">Google Plus</string>
|
||||
<string name="aboutactivity_authorgoogleplus_summary">Show Google Plus page</string>
|
||||
<string name="aboutactivity_betatester">Become a beta tester</string>
|
||||
<string name="aboutactivity_betatester_summary">Be a part of the community to receive beta updates</string>
|
||||
<string name="aboutactivity_helptranslate">Translate the Application</string>
|
||||
<string name="aboutactivity_helptranslate_summary">Correct some mistakes or add a new translation</string>
|
||||
<string name="aboutactivity_readme">Read Me</string>
|
||||
<string name="aboutactivity_readme_summary">Read the reference</string>
|
||||
<string name="aboutactivity_faq">FAQ</string>
|
||||
<string name="aboutactivity_faq_summary">Show app faq</string>
|
||||
<string name="aboutactivity_changelog">ChangeLog</string>
|
||||
<string name="aboutactivity_changelog_summary">Show app changelog</string>
|
||||
<string name="aboutactivity_license">Terms of service</string>
|
||||
<string name="aboutactivity_license_summary">Read the Terms of service</string>
|
||||
<string name="aboutactivity_license_accept">Accept</string>
|
||||
<string name="aboutactivity_license_refuse">Refuse</string>
|
||||
<string name="aboutactivity_privacy">Privacy policy</string>
|
||||
<string name="aboutactivity_privacy_summary">Read the Privacy policy</string>
|
||||
<string name="aboutactivity_todo">ToDo List</string>
|
||||
<string name="aboutactivity_todo_summary">Read the todo list</string>
|
||||
<string name="aboutactivity_donate">Make a donation</string>
|
||||
<string name="aboutactivity_donate_summary">Thank you for supporting me!</string>
|
||||
<string name="aboutactivity_market">Play Store</string>
|
||||
<string name="aboutactivity_market_summary">Send feedback and rate it!</string>
|
||||
<string name="aboutactivity_authormarket">Author Store</string>
|
||||
<string name="aboutactivity_authormarket_summary">Show author applications!</string>
|
||||
<string name="aboutactivity_xda">XDA thread</string>
|
||||
<string name="aboutactivity_xda_summary">Post your feedback here!</string>
|
||||
</resources>
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user