mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-22 20:31:16 +00:00
Improve log activity title
This commit is contained in:
parent
f1102dcc02
commit
61d1119889
37 changed files with 95 additions and 130 deletions
|
@ -70,7 +70,6 @@
|
||||||
</activity>
|
</activity>
|
||||||
<activity
|
<activity
|
||||||
android:name=".activities.LogActivity"
|
android:name=".activities.LogActivity"
|
||||||
android:label="@string/log_title"
|
|
||||||
android:parentActivityName=".activities.SettingsActivity">
|
android:parentActivityName=".activities.SettingsActivity">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name=".activities.LogActivity" />
|
<action android:name=".activities.LogActivity" />
|
||||||
|
|
|
@ -39,6 +39,7 @@ public class LogActivity extends SyncthingActivity {
|
||||||
super.onCreate(savedInstanceState);
|
super.onCreate(savedInstanceState);
|
||||||
|
|
||||||
setContentView(R.layout.activity_log);
|
setContentView(R.layout.activity_log);
|
||||||
|
setTitle(R.string.syncthing_log_title);
|
||||||
|
|
||||||
if (savedInstanceState != null) {
|
if (savedInstanceState != null) {
|
||||||
mSyncthingLog = savedInstanceState.getBoolean("syncthingLog");
|
mSyncthingLog = savedInstanceState.getBoolean("syncthingLog");
|
||||||
|
@ -63,7 +64,7 @@ public class LogActivity extends SyncthingActivity {
|
||||||
inflater.inflate(R.menu.log_list, menu);
|
inflater.inflate(R.menu.log_list, menu);
|
||||||
|
|
||||||
MenuItem switchLog = menu.findItem(R.id.switch_logs);
|
MenuItem switchLog = menu.findItem(R.id.switch_logs);
|
||||||
switchLog.setTitle(mSyncthingLog ? R.string.log_android_title : R.string.log_syncthing_title);
|
switchLog.setTitle(mSyncthingLog ? R.string.view_android_log : R.string.view_syncthing_log);
|
||||||
|
|
||||||
// Add the share button
|
// Add the share button
|
||||||
MenuItem shareItem = menu.findItem(R.id.menu_share);
|
MenuItem shareItem = menu.findItem(R.id.menu_share);
|
||||||
|
@ -82,7 +83,13 @@ public class LogActivity extends SyncthingActivity {
|
||||||
switch (item.getItemId()) {
|
switch (item.getItemId()) {
|
||||||
case R.id.switch_logs:
|
case R.id.switch_logs:
|
||||||
mSyncthingLog = !mSyncthingLog;
|
mSyncthingLog = !mSyncthingLog;
|
||||||
item.setTitle(mSyncthingLog ? R.string.log_android_title : R.string.log_syncthing_title);
|
if (mSyncthingLog) {
|
||||||
|
item.setTitle(R.string.view_android_log);
|
||||||
|
setTitle(R.string.syncthing_log_title);
|
||||||
|
} else {
|
||||||
|
item.setTitle(R.string.view_syncthing_log);
|
||||||
|
setTitle(R.string.android_log_title);
|
||||||
|
}
|
||||||
updateLog();
|
updateLog();
|
||||||
return true;
|
return true;
|
||||||
default:
|
default:
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
android:layout_height="match_parent">
|
android:layout_height="match_parent">
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/textView5"
|
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_margin="10dp"
|
android:layout_margin="10dp"
|
||||||
|
@ -23,7 +22,6 @@
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/textView6"
|
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="@string/external_versioning_description" />
|
android:text="@string/external_versioning_description" />
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
android:layout_height="wrap_content">
|
android:layout_height="wrap_content">
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/textView7"
|
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_margin="10dp"
|
android:layout_margin="10dp"
|
||||||
|
|
|
@ -10,14 +10,12 @@
|
||||||
android:orientation="vertical" >
|
android:orientation="vertical" >
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/textView8"
|
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="@string/simple_file_versioning_description"
|
android:text="@string/simple_file_versioning_description"
|
||||||
android:layout_margin="10dp" />
|
android:layout_margin="10dp" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/textView"
|
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_margin="10dp"
|
android:layout_margin="10dp"
|
||||||
|
@ -36,7 +34,6 @@
|
||||||
tools:layout="@layout/numberpicker_fragment" />
|
tools:layout="@layout/numberpicker_fragment" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/textView2"
|
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="@string/keep_versions_description"
|
android:text="@string/keep_versions_description"
|
||||||
|
|
|
@ -5,7 +5,6 @@
|
||||||
android:layout_height="wrap_content" >
|
android:layout_height="wrap_content" >
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/textView10"
|
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="@string/staggered_versioning_description"
|
android:text="@string/staggered_versioning_description"
|
||||||
|
@ -31,7 +30,6 @@
|
||||||
tools:layout="@layout/numberpicker_fragment" />
|
tools:layout="@layout/numberpicker_fragment" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/textView11"
|
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="@string/maximum_age_description"
|
android:text="@string/maximum_age_description"
|
||||||
|
@ -39,7 +37,6 @@
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/textView13"
|
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_margin="10dp"
|
android:layout_margin="10dp"
|
||||||
|
@ -61,7 +58,6 @@
|
||||||
android:hint="@string/directory"/>
|
android:hint="@string/directory"/>
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/textView12"
|
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_margin="10dp"
|
android:layout_margin="10dp"
|
||||||
|
|
|
@ -11,14 +11,12 @@
|
||||||
android:orientation="vertical" >
|
android:orientation="vertical" >
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/textView9"
|
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="@string/trashcan_versioning_description"
|
android:text="@string/trashcan_versioning_description"
|
||||||
android:layout_margin="10dp" />
|
android:layout_margin="10dp" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/textView3"
|
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="@string/clean_out_after"
|
android:text="@string/clean_out_after"
|
||||||
|
@ -37,7 +35,6 @@
|
||||||
tools:layout="@layout/numberpicker_fragment" />
|
tools:layout="@layout/numberpicker_fragment" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/textView4"
|
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="@string/cleanout_after_description"
|
android:text="@string/cleanout_after_description"
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<NumberPicker xmlns:android="http://schemas.android.com/apk/res/android"
|
<NumberPicker xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:id="@+id/numberpicker"
|
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"/>
|
android:layout_height="match_parent"/>
|
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
<item
|
<item
|
||||||
android:id="@+id/switch_logs"
|
android:id="@+id/switch_logs"
|
||||||
android:title="@string/log_android_title"
|
android:title="@string/view_android_log"
|
||||||
app:showAsAction="ifRoom" />
|
app:showAsAction="ifRoom" />
|
||||||
|
|
||||||
<item
|
<item
|
||||||
|
|
|
@ -227,11 +227,10 @@
|
||||||
<string name="create_folder_failed">Създаването на нова папка се провали</string>
|
<string name="create_folder_failed">Създаването на нова папка се провали</string>
|
||||||
<!--LogActivity-->
|
<!--LogActivity-->
|
||||||
<!--Title of the "log" activity-->
|
<!--Title of the "log" activity-->
|
||||||
<string name="log_title">Журнал</string>
|
<!--Title of the "log android" menu button-->
|
||||||
<!--Title of the "log android" menu button-->
|
<string name="view_android_log">Към журнала на Android</string>
|
||||||
<string name="log_android_title">Към журнала на Android</string>
|
|
||||||
<!--Title of the "log Syncthing" menu button-->
|
<!--Title of the "log Syncthing" menu button-->
|
||||||
<string name="log_syncthing_title">Към журнала на Syncthing</string>
|
<string name="view_syncthing_log">Към журнала на Syncthing</string>
|
||||||
<string name="retrieving_logs">Извличане на журналите...</string>
|
<string name="retrieving_logs">Извличане на журналите...</string>
|
||||||
<!--Title of the "share log" menu button-->
|
<!--Title of the "share log" menu button-->
|
||||||
<string name="share_title">Сподели</string>
|
<string name="share_title">Сподели</string>
|
||||||
|
|
|
@ -261,11 +261,10 @@ Ens podeu informar dels problemes que trobeu a través de Github.</string>
|
||||||
<string name="create_folder_failed">No s\'ha pogut crear la carpeta</string>
|
<string name="create_folder_failed">No s\'ha pogut crear la carpeta</string>
|
||||||
<!--LogActivity-->
|
<!--LogActivity-->
|
||||||
<!--Title of the "log" activity-->
|
<!--Title of the "log" activity-->
|
||||||
<string name="log_title">Registre</string>
|
<!--Title of the "log android" menu button-->
|
||||||
<!--Title of the "log android" menu button-->
|
<string name="view_android_log">Mostra el registre de l\'Android</string>
|
||||||
<string name="log_android_title">Mostra el registre de l\'Android</string>
|
|
||||||
<!--Title of the "log Syncthing" menu button-->
|
<!--Title of the "log Syncthing" menu button-->
|
||||||
<string name="log_syncthing_title">Mostra el registre del Syncthing</string>
|
<string name="view_syncthing_log">Mostra el registre del Syncthing</string>
|
||||||
<string name="retrieving_logs">Obtenint registres...</string>
|
<string name="retrieving_logs">Obtenint registres...</string>
|
||||||
<!--Title of the "share log" menu button-->
|
<!--Title of the "share log" menu button-->
|
||||||
<string name="share_title">Comparteix</string>
|
<string name="share_title">Comparteix</string>
|
||||||
|
|
|
@ -236,11 +236,10 @@ Všechny zaznamenané chyby prosím hlašte přes Github.</string>
|
||||||
<string name="create_folder_failed">Vytvoření adresáře selhalo</string>
|
<string name="create_folder_failed">Vytvoření adresáře selhalo</string>
|
||||||
<!--LogActivity-->
|
<!--LogActivity-->
|
||||||
<!--Title of the "log" activity-->
|
<!--Title of the "log" activity-->
|
||||||
<string name="log_title">Log</string>
|
<!--Title of the "log android" menu button-->
|
||||||
<!--Title of the "log android" menu button-->
|
<string name="view_android_log">Zobrazit log pro Android</string>
|
||||||
<string name="log_android_title">Zobrazit log pro Android</string>
|
|
||||||
<!--Title of the "log Syncthing" menu button-->
|
<!--Title of the "log Syncthing" menu button-->
|
||||||
<string name="log_syncthing_title">Zobrazit log pro Syncthing</string>
|
<string name="view_syncthing_log">Zobrazit log pro Syncthing</string>
|
||||||
<string name="retrieving_logs">Získávám logy...</string>
|
<string name="retrieving_logs">Získávám logy...</string>
|
||||||
<!--Title of the "share log" menu button-->
|
<!--Title of the "share log" menu button-->
|
||||||
<string name="share_title">Sdílet</string>
|
<string name="share_title">Sdílet</string>
|
||||||
|
|
|
@ -248,11 +248,10 @@ Vær venlig at rapportere ethvert problem, du støder på, via Github. </string>
|
||||||
<string name="create_folder_failed">Det lykkedes ikke at oprette en ny mappe</string>
|
<string name="create_folder_failed">Det lykkedes ikke at oprette en ny mappe</string>
|
||||||
<!--LogActivity-->
|
<!--LogActivity-->
|
||||||
<!--Title of the "log" activity-->
|
<!--Title of the "log" activity-->
|
||||||
<string name="log_title">Log</string>
|
<!--Title of the "log android" menu button-->
|
||||||
<!--Title of the "log android" menu button-->
|
<string name="view_android_log">Vis Android Log</string>
|
||||||
<string name="log_android_title">Vis Android Log</string>
|
|
||||||
<!--Title of the "log Syncthing" menu button-->
|
<!--Title of the "log Syncthing" menu button-->
|
||||||
<string name="log_syncthing_title">Vis Syncthing Log</string>
|
<string name="view_syncthing_log">Vis Syncthing Log</string>
|
||||||
<string name="retrieving_logs">Indhenter logs...</string>
|
<string name="retrieving_logs">Indhenter logs...</string>
|
||||||
<!--Title of the "share log" menu button-->
|
<!--Title of the "share log" menu button-->
|
||||||
<string name="share_title">Del</string>
|
<string name="share_title">Del</string>
|
||||||
|
|
|
@ -255,11 +255,10 @@ Bitte melden Sie auftretende Probleme via Github.</string>
|
||||||
<string name="create_folder_failed">Verzeichniserstellung fehlgeschlagen</string>
|
<string name="create_folder_failed">Verzeichniserstellung fehlgeschlagen</string>
|
||||||
<!--LogActivity-->
|
<!--LogActivity-->
|
||||||
<!--Title of the "log" activity-->
|
<!--Title of the "log" activity-->
|
||||||
<string name="log_title">Log</string>
|
<!--Title of the "log android" menu button-->
|
||||||
<!--Title of the "log android" menu button-->
|
<string name="view_android_log">Zeige Android-Log</string>
|
||||||
<string name="log_android_title">Zeige Android-Log</string>
|
|
||||||
<!--Title of the "log Syncthing" menu button-->
|
<!--Title of the "log Syncthing" menu button-->
|
||||||
<string name="log_syncthing_title">Zeige Syncthing-Log</string>
|
<string name="view_syncthing_log">Zeige Syncthing-Log</string>
|
||||||
<string name="retrieving_logs">Rufe Protokoll ab...</string>
|
<string name="retrieving_logs">Rufe Protokoll ab...</string>
|
||||||
<!--Title of the "share log" menu button-->
|
<!--Title of the "share log" menu button-->
|
||||||
<string name="share_title">Teilen</string>
|
<string name="share_title">Teilen</string>
|
||||||
|
|
|
@ -261,11 +261,10 @@
|
||||||
<string name="create_folder_failed">Η δημιουργία φακέλου απέτυχε</string>
|
<string name="create_folder_failed">Η δημιουργία φακέλου απέτυχε</string>
|
||||||
<!--LogActivity-->
|
<!--LogActivity-->
|
||||||
<!--Title of the "log" activity-->
|
<!--Title of the "log" activity-->
|
||||||
<string name="log_title">Καταγραφή συμβάντων</string>
|
<!--Title of the "log android" menu button-->
|
||||||
<!--Title of the "log android" menu button-->
|
<string name="view_android_log">Εμφάνιση καταγραφής Android</string>
|
||||||
<string name="log_android_title">Εμφάνιση καταγραφής Android</string>
|
|
||||||
<!--Title of the "log Syncthing" menu button-->
|
<!--Title of the "log Syncthing" menu button-->
|
||||||
<string name="log_syncthing_title">Εμφάνιση καταγραφής Syncthing</string>
|
<string name="view_syncthing_log">Εμφάνιση καταγραφής Syncthing</string>
|
||||||
<string name="retrieving_logs">Ανάκτηση καταγραφών...</string>
|
<string name="retrieving_logs">Ανάκτηση καταγραφών...</string>
|
||||||
<!--Title of the "share log" menu button-->
|
<!--Title of the "share log" menu button-->
|
||||||
<string name="share_title">Κοινή χρήση</string>
|
<string name="share_title">Κοινή χρήση</string>
|
||||||
|
|
|
@ -208,11 +208,10 @@
|
||||||
<string name="create_folder_failed">Fallo al crear carpeta</string>
|
<string name="create_folder_failed">Fallo al crear carpeta</string>
|
||||||
<!--LogActivity-->
|
<!--LogActivity-->
|
||||||
<!--Title of the "log" activity-->
|
<!--Title of the "log" activity-->
|
||||||
<string name="log_title">Registro</string>
|
<!--Title of the "log android" menu button-->
|
||||||
<!--Title of the "log android" menu button-->
|
<string name="view_android_log">Ver registro de Android</string>
|
||||||
<string name="log_android_title">Ver registro de Android</string>
|
|
||||||
<!--Title of the "log Syncthing" menu button-->
|
<!--Title of the "log Syncthing" menu button-->
|
||||||
<string name="log_syncthing_title">Ver registro de Syncthing</string>
|
<string name="view_syncthing_log">Ver registro de Syncthing</string>
|
||||||
<!--Title of the "share log" menu button-->
|
<!--Title of the "share log" menu button-->
|
||||||
<string name="share_title">Compartir</string>
|
<string name="share_title">Compartir</string>
|
||||||
<!--ShareActivity-->
|
<!--ShareActivity-->
|
||||||
|
|
|
@ -242,11 +242,10 @@
|
||||||
<string name="create_folder_failed">Error al crear la carpeta</string>
|
<string name="create_folder_failed">Error al crear la carpeta</string>
|
||||||
<!--LogActivity-->
|
<!--LogActivity-->
|
||||||
<!--Title of the "log" activity-->
|
<!--Title of the "log" activity-->
|
||||||
<string name="log_title">Registro</string>
|
<!--Title of the "log android" menu button-->
|
||||||
<!--Title of the "log android" menu button-->
|
<string name="view_android_log">Mostrar registro de Android</string>
|
||||||
<string name="log_android_title">Mostrar registro de Android</string>
|
|
||||||
<!--Title of the "log Syncthing" menu button-->
|
<!--Title of the "log Syncthing" menu button-->
|
||||||
<string name="log_syncthing_title">Mostrar registro de Syncthing</string>
|
<string name="view_syncthing_log">Mostrar registro de Syncthing</string>
|
||||||
<string name="retrieving_logs">Recuperando los registros...</string>
|
<string name="retrieving_logs">Recuperando los registros...</string>
|
||||||
<!--Title of the "share log" menu button-->
|
<!--Title of the "share log" menu button-->
|
||||||
<string name="share_title">Compartir</string>
|
<string name="share_title">Compartir</string>
|
||||||
|
|
|
@ -243,11 +243,10 @@ Ilmoitathan ystävällisesti kaikista havaitsemistasi ongelmista Githubin kautta
|
||||||
<string name="create_folder_failed">Kansion luominen epäonnistui</string>
|
<string name="create_folder_failed">Kansion luominen epäonnistui</string>
|
||||||
<!--LogActivity-->
|
<!--LogActivity-->
|
||||||
<!--Title of the "log" activity-->
|
<!--Title of the "log" activity-->
|
||||||
<string name="log_title">Loki</string>
|
<!--Title of the "log android" menu button-->
|
||||||
<!--Title of the "log android" menu button-->
|
<string name="view_android_log">Näytä Android loki</string>
|
||||||
<string name="log_android_title">Näytä Android loki</string>
|
|
||||||
<!--Title of the "log Syncthing" menu button-->
|
<!--Title of the "log Syncthing" menu button-->
|
||||||
<string name="log_syncthing_title">Näytä Synching loki</string>
|
<string name="view_syncthing_log">Näytä Synching loki</string>
|
||||||
<string name="retrieving_logs">Noudetaan lokeja...</string>
|
<string name="retrieving_logs">Noudetaan lokeja...</string>
|
||||||
<!--Title of the "share log" menu button-->
|
<!--Title of the "share log" menu button-->
|
||||||
<string name="share_title">Jaa</string>
|
<string name="share_title">Jaa</string>
|
||||||
|
|
|
@ -261,11 +261,10 @@ S\'il vous plaît, soumettez les problèmes que vous rencontrez via Github.</str
|
||||||
<string name="create_folder_failed">Échec de création du partage</string>
|
<string name="create_folder_failed">Échec de création du partage</string>
|
||||||
<!--LogActivity-->
|
<!--LogActivity-->
|
||||||
<!--Title of the "log" activity-->
|
<!--Title of the "log" activity-->
|
||||||
<string name="log_title">Journal</string>
|
<!--Title of the "log android" menu button-->
|
||||||
<!--Title of the "log android" menu button-->
|
<string name="view_android_log">Voir le journal Android</string>
|
||||||
<string name="log_android_title">Voir le journal Android</string>
|
|
||||||
<!--Title of the "log Syncthing" menu button-->
|
<!--Title of the "log Syncthing" menu button-->
|
||||||
<string name="log_syncthing_title">Voir le journal Syncthing</string>
|
<string name="view_syncthing_log">Voir le journal Syncthing</string>
|
||||||
<string name="retrieving_logs">Récupération des journaux....</string>
|
<string name="retrieving_logs">Récupération des journaux....</string>
|
||||||
<!--Title of the "share log" menu button-->
|
<!--Title of the "share log" menu button-->
|
||||||
<string name="share_title">Partage</string>
|
<string name="share_title">Partage</string>
|
||||||
|
|
|
@ -269,11 +269,10 @@ Biztosan törölni szeretnéd a Syncthing index adatbázisát?</string>
|
||||||
<string name="create_folder_failed">Nem sikerült létrehozni a mappát</string>
|
<string name="create_folder_failed">Nem sikerült létrehozni a mappát</string>
|
||||||
<!--LogActivity-->
|
<!--LogActivity-->
|
||||||
<!--Title of the "log" activity-->
|
<!--Title of the "log" activity-->
|
||||||
<string name="log_title">Napló</string>
|
<!--Title of the "log android" menu button-->
|
||||||
<!--Title of the "log android" menu button-->
|
<string name="view_android_log">Android napló megtekintése</string>
|
||||||
<string name="log_android_title">Android napló megtekintése</string>
|
|
||||||
<!--Title of the "log Syncthing" menu button-->
|
<!--Title of the "log Syncthing" menu button-->
|
||||||
<string name="log_syncthing_title">Syncthing napló megtekintése</string>
|
<string name="view_syncthing_log">Syncthing napló megtekintése</string>
|
||||||
<string name="retrieving_logs">Naplók betöltése...</string>
|
<string name="retrieving_logs">Naplók betöltése...</string>
|
||||||
<!--Title of the "share log" menu button-->
|
<!--Title of the "share log" menu button-->
|
||||||
<string name="share_title">Megosztás</string>
|
<string name="share_title">Megosztás</string>
|
||||||
|
|
|
@ -241,11 +241,10 @@ Jika ada masalah silakan laporkan lewat Github.</string>
|
||||||
<string name="create_folder_failed">Gagal membuat folder</string>
|
<string name="create_folder_failed">Gagal membuat folder</string>
|
||||||
<!--LogActivity-->
|
<!--LogActivity-->
|
||||||
<!--Title of the "log" activity-->
|
<!--Title of the "log" activity-->
|
||||||
<string name="log_title">Log</string>
|
<!--Title of the "log android" menu button-->
|
||||||
<!--Title of the "log android" menu button-->
|
<string name="view_android_log">Lihat Log Android</string>
|
||||||
<string name="log_android_title">Lihat Log Android</string>
|
|
||||||
<!--Title of the "log Syncthing" menu button-->
|
<!--Title of the "log Syncthing" menu button-->
|
||||||
<string name="log_syncthing_title">Lihat Log Syncthing</string>
|
<string name="view_syncthing_log">Lihat Log Syncthing</string>
|
||||||
<string name="retrieving_logs">Memuat log...</string>
|
<string name="retrieving_logs">Memuat log...</string>
|
||||||
<!--Title of the "share log" menu button-->
|
<!--Title of the "share log" menu button-->
|
||||||
<string name="share_title">Bagikan</string>
|
<string name="share_title">Bagikan</string>
|
||||||
|
|
|
@ -258,11 +258,10 @@ Si prega di segnalare eventuali problemi che si incontrano via Github.</string>
|
||||||
<string name="create_folder_failed">Impossibile creare la cartella</string>
|
<string name="create_folder_failed">Impossibile creare la cartella</string>
|
||||||
<!--LogActivity-->
|
<!--LogActivity-->
|
||||||
<!--Title of the "log" activity-->
|
<!--Title of the "log" activity-->
|
||||||
<string name="log_title">Registro</string>
|
<!--Title of the "log android" menu button-->
|
||||||
<!--Title of the "log android" menu button-->
|
<string name="view_android_log">Mostra Registro di Android</string>
|
||||||
<string name="log_android_title">Mostra Registro di Android</string>
|
|
||||||
<!--Title of the "log Syncthing" menu button-->
|
<!--Title of the "log Syncthing" menu button-->
|
||||||
<string name="log_syncthing_title">Mostra Registro di Syncthing</string>
|
<string name="view_syncthing_log">Mostra Registro di Syncthing</string>
|
||||||
<string name="retrieving_logs">Recupero log...</string>
|
<string name="retrieving_logs">Recupero log...</string>
|
||||||
<!--Title of the "share log" menu button-->
|
<!--Title of the "share log" menu button-->
|
||||||
<string name="share_title">Condividi</string>
|
<string name="share_title">Condividi</string>
|
||||||
|
|
|
@ -259,11 +259,10 @@
|
||||||
<string name="create_folder_failed">フォルダーの作成に失敗しました</string>
|
<string name="create_folder_failed">フォルダーの作成に失敗しました</string>
|
||||||
<!--LogActivity-->
|
<!--LogActivity-->
|
||||||
<!--Title of the "log" activity-->
|
<!--Title of the "log" activity-->
|
||||||
<string name="log_title">ログ</string>
|
<!--Title of the "log android" menu button-->
|
||||||
<!--Title of the "log android" menu button-->
|
<string name="view_android_log">Android ログを表示</string>
|
||||||
<string name="log_android_title">Android ログを表示</string>
|
|
||||||
<!--Title of the "log Syncthing" menu button-->
|
<!--Title of the "log Syncthing" menu button-->
|
||||||
<string name="log_syncthing_title">Syncthing ログを表示</string>
|
<string name="view_syncthing_log">Syncthing ログを表示</string>
|
||||||
<string name="retrieving_logs">ログの取得中…</string>
|
<string name="retrieving_logs">ログの取得中…</string>
|
||||||
<!--Title of the "share log" menu button-->
|
<!--Title of the "share log" menu button-->
|
||||||
<string name="share_title">共有</string>
|
<string name="share_title">共有</string>
|
||||||
|
|
|
@ -259,11 +259,10 @@
|
||||||
<string name="create_folder_failed">폴더를 생성할 수 없었습니다</string>
|
<string name="create_folder_failed">폴더를 생성할 수 없었습니다</string>
|
||||||
<!--LogActivity-->
|
<!--LogActivity-->
|
||||||
<!--Title of the "log" activity-->
|
<!--Title of the "log" activity-->
|
||||||
<string name="log_title">로그</string>
|
<!--Title of the "log android" menu button-->
|
||||||
<!--Title of the "log android" menu button-->
|
<string name="view_android_log">Android 로그 보기</string>
|
||||||
<string name="log_android_title">Android 로그 보기</string>
|
|
||||||
<!--Title of the "log Syncthing" menu button-->
|
<!--Title of the "log Syncthing" menu button-->
|
||||||
<string name="log_syncthing_title">Syncthing 로그 보기</string>
|
<string name="view_syncthing_log">Syncthing 로그 보기</string>
|
||||||
<string name="retrieving_logs">로그를 받아오는중...</string>
|
<string name="retrieving_logs">로그를 받아오는중...</string>
|
||||||
<!--Title of the "share log" menu button-->
|
<!--Title of the "share log" menu button-->
|
||||||
<string name="share_title">공유</string>
|
<string name="share_title">공유</string>
|
||||||
|
|
|
@ -214,11 +214,10 @@
|
||||||
<string name="create_folder_failed">Feil ved opprettelse av mappe</string>
|
<string name="create_folder_failed">Feil ved opprettelse av mappe</string>
|
||||||
<!--LogActivity-->
|
<!--LogActivity-->
|
||||||
<!--Title of the "log" activity-->
|
<!--Title of the "log" activity-->
|
||||||
<string name="log_title">Logg</string>
|
<!--Title of the "log android" menu button-->
|
||||||
<!--Title of the "log android" menu button-->
|
<string name="view_android_log">Vis Android-logg</string>
|
||||||
<string name="log_android_title">Vis Android-logg</string>
|
|
||||||
<!--Title of the "log Syncthing" menu button-->
|
<!--Title of the "log Syncthing" menu button-->
|
||||||
<string name="log_syncthing_title">Vis Syncthing-logg</string>
|
<string name="view_syncthing_log">Vis Syncthing-logg</string>
|
||||||
<!--Title of the "share log" menu button-->
|
<!--Title of the "share log" menu button-->
|
||||||
<string name="share_title">Del</string>
|
<string name="share_title">Del</string>
|
||||||
<!--ShareActivity-->
|
<!--ShareActivity-->
|
||||||
|
|
|
@ -248,11 +248,10 @@ Als je problemen tegenkomt, meld ze dan via GitHub.</string>
|
||||||
<string name="create_folder_failed">Aanmaken van map mislukt</string>
|
<string name="create_folder_failed">Aanmaken van map mislukt</string>
|
||||||
<!--LogActivity-->
|
<!--LogActivity-->
|
||||||
<!--Title of the "log" activity-->
|
<!--Title of the "log" activity-->
|
||||||
<string name="log_title">Log</string>
|
<!--Title of the "log android" menu button-->
|
||||||
<!--Title of the "log android" menu button-->
|
<string name="view_android_log">Bekijk Android-log</string>
|
||||||
<string name="log_android_title">Bekijk Android-log</string>
|
|
||||||
<!--Title of the "log Syncthing" menu button-->
|
<!--Title of the "log Syncthing" menu button-->
|
||||||
<string name="log_syncthing_title">Bekijk Syncthing-log</string>
|
<string name="view_syncthing_log">Bekijk Syncthing-log</string>
|
||||||
<string name="retrieving_logs">Logs worden opgehaald…</string>
|
<string name="retrieving_logs">Logs worden opgehaald…</string>
|
||||||
<!--Title of the "share log" menu button-->
|
<!--Title of the "share log" menu button-->
|
||||||
<string name="share_title">Delen</string>
|
<string name="share_title">Delen</string>
|
||||||
|
|
|
@ -214,11 +214,10 @@
|
||||||
<string name="create_folder_failed">Lukkast ikkje med å lage mappe</string>
|
<string name="create_folder_failed">Lukkast ikkje med å lage mappe</string>
|
||||||
<!--LogActivity-->
|
<!--LogActivity-->
|
||||||
<!--Title of the "log" activity-->
|
<!--Title of the "log" activity-->
|
||||||
<string name="log_title">Logg</string>
|
<!--Title of the "log android" menu button-->
|
||||||
<!--Title of the "log android" menu button-->
|
<string name="view_android_log">Vis Android-logg</string>
|
||||||
<string name="log_android_title">Vis Android-logg</string>
|
|
||||||
<!--Title of the "log Syncthing" menu button-->
|
<!--Title of the "log Syncthing" menu button-->
|
||||||
<string name="log_syncthing_title">Vis Synchting-logg</string>
|
<string name="view_syncthing_log">Vis Synchting-logg</string>
|
||||||
<!--Title of the "share log" menu button-->
|
<!--Title of the "share log" menu button-->
|
||||||
<string name="share_title">Del</string>
|
<string name="share_title">Del</string>
|
||||||
<!--ShareActivity-->
|
<!--ShareActivity-->
|
||||||
|
|
|
@ -237,11 +237,10 @@ Proszę zgłaszać napotkane błędy programu za pośrednictwem serwisu Github.<
|
||||||
<string name="create_folder_failed">Nie udało się utworzyć katalogu</string>
|
<string name="create_folder_failed">Nie udało się utworzyć katalogu</string>
|
||||||
<!--LogActivity-->
|
<!--LogActivity-->
|
||||||
<!--Title of the "log" activity-->
|
<!--Title of the "log" activity-->
|
||||||
<string name="log_title">Dziennik</string>
|
<!--Title of the "log android" menu button-->
|
||||||
<!--Title of the "log android" menu button-->
|
<string name="view_android_log">Wyświetl dziennik systemu</string>
|
||||||
<string name="log_android_title">Wyświetl dziennik systemu</string>
|
|
||||||
<!--Title of the "log Syncthing" menu button-->
|
<!--Title of the "log Syncthing" menu button-->
|
||||||
<string name="log_syncthing_title">Wyświetl dziennik programu</string>
|
<string name="view_syncthing_log">Wyświetl dziennik programu</string>
|
||||||
<string name="retrieving_logs">Uzyskiwanie dzienników…</string>
|
<string name="retrieving_logs">Uzyskiwanie dzienników…</string>
|
||||||
<!--Title of the "share log" menu button-->
|
<!--Title of the "share log" menu button-->
|
||||||
<string name="share_title">Udostępnij</string>
|
<string name="share_title">Udostępnij</string>
|
||||||
|
|
|
@ -255,11 +255,10 @@ Por favor, nos avise sobre quaisquer problemas que você encontrar via Github.</
|
||||||
<string name="create_folder_failed">Falha na criação da pasta</string>
|
<string name="create_folder_failed">Falha na criação da pasta</string>
|
||||||
<!--LogActivity-->
|
<!--LogActivity-->
|
||||||
<!--Title of the "log" activity-->
|
<!--Title of the "log" activity-->
|
||||||
<string name="log_title">Log</string>
|
<!--Title of the "log android" menu button-->
|
||||||
<!--Title of the "log android" menu button-->
|
<string name="view_android_log">Exibir o log do Android</string>
|
||||||
<string name="log_android_title">Exibir o log do Android</string>
|
|
||||||
<!--Title of the "log Syncthing" menu button-->
|
<!--Title of the "log Syncthing" menu button-->
|
||||||
<string name="log_syncthing_title">Exibir o log do Syncthing</string>
|
<string name="view_syncthing_log">Exibir o log do Syncthing</string>
|
||||||
<string name="retrieving_logs">Recuperando logs...</string>
|
<string name="retrieving_logs">Recuperando logs...</string>
|
||||||
<!--Title of the "share log" menu button-->
|
<!--Title of the "share log" menu button-->
|
||||||
<string name="share_title">Compartilhar</string>
|
<string name="share_title">Compartilhar</string>
|
||||||
|
|
|
@ -235,11 +235,10 @@ Reporte, através do Github, quaisquer problemas que encontre, por favor.</strin
|
||||||
<string name="create_folder_failed">Falhou a criação da pasta</string>
|
<string name="create_folder_failed">Falhou a criação da pasta</string>
|
||||||
<!--LogActivity-->
|
<!--LogActivity-->
|
||||||
<!--Title of the "log" activity-->
|
<!--Title of the "log" activity-->
|
||||||
<string name="log_title">Registo</string>
|
<!--Title of the "log android" menu button-->
|
||||||
<!--Title of the "log android" menu button-->
|
<string name="view_android_log">Ver registo do Android</string>
|
||||||
<string name="log_android_title">Ver registo do Android</string>
|
|
||||||
<!--Title of the "log Syncthing" menu button-->
|
<!--Title of the "log Syncthing" menu button-->
|
||||||
<string name="log_syncthing_title">Ver o registo do Syncthing</string>
|
<string name="view_syncthing_log">Ver o registo do Syncthing</string>
|
||||||
<string name="retrieving_logs">Obtendo registos...</string>
|
<string name="retrieving_logs">Obtendo registos...</string>
|
||||||
<!--Title of the "share log" menu button-->
|
<!--Title of the "share log" menu button-->
|
||||||
<string name="share_title">Partilhar</string>
|
<string name="share_title">Partilhar</string>
|
||||||
|
|
|
@ -241,11 +241,10 @@
|
||||||
<string name="create_folder_failed">Не удалось создать папку</string>
|
<string name="create_folder_failed">Не удалось создать папку</string>
|
||||||
<!--LogActivity-->
|
<!--LogActivity-->
|
||||||
<!--Title of the "log" activity-->
|
<!--Title of the "log" activity-->
|
||||||
<string name="log_title">Лог</string>
|
<!--Title of the "log android" menu button-->
|
||||||
<!--Title of the "log android" menu button-->
|
<string name="view_android_log">Логи Android</string>
|
||||||
<string name="log_android_title">Логи Android</string>
|
|
||||||
<!--Title of the "log Syncthing" menu button-->
|
<!--Title of the "log Syncthing" menu button-->
|
||||||
<string name="log_syncthing_title">Логи Syncthing</string>
|
<string name="view_syncthing_log">Логи Syncthing</string>
|
||||||
<string name="retrieving_logs">Получение логов...</string>
|
<string name="retrieving_logs">Получение логов...</string>
|
||||||
<!--Title of the "share log" menu button-->
|
<!--Title of the "share log" menu button-->
|
||||||
<string name="share_title">Поделиться</string>
|
<string name="share_title">Поделиться</string>
|
||||||
|
|
|
@ -194,11 +194,10 @@ Naozaj chcete resetovať databázu s indexom súborov?</string>
|
||||||
<string name="create_folder_failed">Nepodarilo sa vytvoriť adresár</string>
|
<string name="create_folder_failed">Nepodarilo sa vytvoriť adresár</string>
|
||||||
<!--LogActivity-->
|
<!--LogActivity-->
|
||||||
<!--Title of the "log" activity-->
|
<!--Title of the "log" activity-->
|
||||||
<string name="log_title">Záznam</string>
|
<!--Title of the "log android" menu button-->
|
||||||
<!--Title of the "log android" menu button-->
|
<string name="view_android_log">Zobraziť záznam Androidu</string>
|
||||||
<string name="log_android_title">Zobraziť záznam Androidu</string>
|
|
||||||
<!--Title of the "log Syncthing" menu button-->
|
<!--Title of the "log Syncthing" menu button-->
|
||||||
<string name="log_syncthing_title">Zobraziť záznam Syncthing</string>
|
<string name="view_syncthing_log">Zobraziť záznam Syncthing</string>
|
||||||
<!--Title of the "share log" menu button-->
|
<!--Title of the "share log" menu button-->
|
||||||
<string name="share_title">Zdielať</string>
|
<string name="share_title">Zdielať</string>
|
||||||
<!--ShareActivity-->
|
<!--ShareActivity-->
|
||||||
|
|
|
@ -260,11 +260,10 @@ Vänligen rapportera eventuella problem du stöter på via Github.</string>
|
||||||
<string name="create_folder_failed">Det gick inte att skapa mapp</string>
|
<string name="create_folder_failed">Det gick inte att skapa mapp</string>
|
||||||
<!--LogActivity-->
|
<!--LogActivity-->
|
||||||
<!--Title of the "log" activity-->
|
<!--Title of the "log" activity-->
|
||||||
<string name="log_title">Logg</string>
|
<!--Title of the "log android" menu button-->
|
||||||
<!--Title of the "log android" menu button-->
|
<string name="view_android_log">Visa Android logg</string>
|
||||||
<string name="log_android_title">Visa Android logg</string>
|
|
||||||
<!--Title of the "log Syncthing" menu button-->
|
<!--Title of the "log Syncthing" menu button-->
|
||||||
<string name="log_syncthing_title">Visa Syncthing logg</string>
|
<string name="view_syncthing_log">Visa Syncthing logg</string>
|
||||||
<string name="retrieving_logs">Hämtar loggar...</string>
|
<string name="retrieving_logs">Hämtar loggar...</string>
|
||||||
<!--Title of the "share log" menu button-->
|
<!--Title of the "share log" menu button-->
|
||||||
<string name="share_title">Dela</string>
|
<string name="share_title">Dela</string>
|
||||||
|
|
|
@ -234,11 +234,10 @@ Eğer herhangi bir sorunla karşılaşırsan Github aracılığıyla bildir.</st
|
||||||
<string name="create_folder_failed">Klasör oluşturulamadı</string>
|
<string name="create_folder_failed">Klasör oluşturulamadı</string>
|
||||||
<!--LogActivity-->
|
<!--LogActivity-->
|
||||||
<!--Title of the "log" activity-->
|
<!--Title of the "log" activity-->
|
||||||
<string name="log_title">Günlük</string>
|
<!--Title of the "log android" menu button-->
|
||||||
<!--Title of the "log android" menu button-->
|
<string name="view_android_log">Android Günlüğünü Göster</string>
|
||||||
<string name="log_android_title">Android Günlüğünü Göster</string>
|
|
||||||
<!--Title of the "log Syncthing" menu button-->
|
<!--Title of the "log Syncthing" menu button-->
|
||||||
<string name="log_syncthing_title">Syncthing Günlük Kayıtlarını Göster</string>
|
<string name="view_syncthing_log">Syncthing Günlük Kayıtlarını Göster</string>
|
||||||
<string name="retrieving_logs">Günlükler alınıyor...</string>
|
<string name="retrieving_logs">Günlükler alınıyor...</string>
|
||||||
<!--Title of the "share log" menu button-->
|
<!--Title of the "share log" menu button-->
|
||||||
<string name="share_title">Paylaş</string>
|
<string name="share_title">Paylaş</string>
|
||||||
|
|
|
@ -208,11 +208,10 @@
|
||||||
<string name="create_folder_failed">Tạo thư mục thất bại</string>
|
<string name="create_folder_failed">Tạo thư mục thất bại</string>
|
||||||
<!--LogActivity-->
|
<!--LogActivity-->
|
||||||
<!--Title of the "log" activity-->
|
<!--Title of the "log" activity-->
|
||||||
<string name="log_title">Lịch sử</string>
|
<!--Title of the "log android" menu button-->
|
||||||
<!--Title of the "log android" menu button-->
|
<string name="view_android_log">Xem lịch sử Android</string>
|
||||||
<string name="log_android_title">Xem lịch sử Android</string>
|
|
||||||
<!--Title of the "log Syncthing" menu button-->
|
<!--Title of the "log Syncthing" menu button-->
|
||||||
<string name="log_syncthing_title">Xem lịch sử Syncthing</string>
|
<string name="view_syncthing_log">Xem lịch sử Syncthing</string>
|
||||||
<!--Title of the "share log" menu button-->
|
<!--Title of the "share log" menu button-->
|
||||||
<string name="share_title">Chia sẻ</string>
|
<string name="share_title">Chia sẻ</string>
|
||||||
<!--ShareActivity-->
|
<!--ShareActivity-->
|
||||||
|
|
|
@ -261,11 +261,10 @@
|
||||||
<string name="create_folder_failed">新建文件夹失败</string>
|
<string name="create_folder_failed">新建文件夹失败</string>
|
||||||
<!--LogActivity-->
|
<!--LogActivity-->
|
||||||
<!--Title of the "log" activity-->
|
<!--Title of the "log" activity-->
|
||||||
<string name="log_title">日志</string>
|
<!--Title of the "log android" menu button-->
|
||||||
<!--Title of the "log android" menu button-->
|
<string name="view_android_log">查看 Android 系统日志</string>
|
||||||
<string name="log_android_title">查看 Android 系统日志</string>
|
|
||||||
<!--Title of the "log Syncthing" menu button-->
|
<!--Title of the "log Syncthing" menu button-->
|
||||||
<string name="log_syncthing_title">查看 Syncthing 日志</string>
|
<string name="view_syncthing_log">查看 Syncthing 日志</string>
|
||||||
<string name="retrieving_logs">正在检索日志…</string>
|
<string name="retrieving_logs">正在检索日志…</string>
|
||||||
<!--Title of the "share log" menu button-->
|
<!--Title of the "share log" menu button-->
|
||||||
<string name="share_title">日志</string>
|
<string name="share_title">日志</string>
|
||||||
|
|
|
@ -437,14 +437,14 @@ Please report any problems you encounter via Github.</string>
|
||||||
<!-- LogActivity -->
|
<!-- LogActivity -->
|
||||||
|
|
||||||
|
|
||||||
<!-- Title of the "log" activity -->
|
<string name="syncthing_log_title">Syncthing Log</string>
|
||||||
<string name="log_title">Log</string>
|
<string name="android_log_title">Android Log</string>
|
||||||
|
|
||||||
<!-- Title of the "log android" menu button -->
|
<!-- Title of the "log android" menu button -->
|
||||||
<string name="log_android_title">View Android Log</string>
|
<string name="view_android_log">View Android Log</string>
|
||||||
|
|
||||||
<!-- Title of the "log Syncthing" menu button -->
|
<!-- Title of the "log Syncthing" menu button -->
|
||||||
<string name="log_syncthing_title">View Syncthing Log</string>
|
<string name="view_syncthing_log">View Syncthing Log</string>
|
||||||
|
|
||||||
<string name="retrieving_logs">Retrieving logs…</string>
|
<string name="retrieving_logs">Retrieving logs…</string>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue