mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-26 06:11:19 +00:00
MainActivity/DeviceList: Improve "no devices configured" UI text (#349)
* Add string: no_devices_configured * Imported de translation * Add newline * Import de translation
This commit is contained in:
parent
9187280687
commit
226b84a5d9
3 changed files with 17 additions and 9 deletions
|
@ -123,7 +123,7 @@ public class DeviceListFragment extends ListFragment implements SyncthingService
|
|||
super.onViewCreated(view, savedInstanceState);
|
||||
|
||||
setHasOptionsMenu(true);
|
||||
setEmptyText(getString(R.string.devices_list_empty));
|
||||
setEmptyText(getString(R.string.no_devices_configured));
|
||||
getListView().setOnItemClickListener(this);
|
||||
}
|
||||
|
||||
|
|
|
@ -101,7 +101,8 @@ Bitte melden Sie auftretende Probleme via GitHub.</string>
|
|||
<!-- Text for FoldersFragment and DevicesFragment loading view -->
|
||||
<!-- Shown instead of web_gui_loading if the key does not exist and has to be created -->
|
||||
<string name="web_gui_creating_key">Geheimschlüssel werden generiert. Dies kann einige Minuten dauern…</string>
|
||||
<!-- FoldersFragment -->
|
||||
|
||||
<!-- FolderListFragment -->
|
||||
|
||||
|
||||
<string name="folders_fragment_title">Ordner</string>
|
||||
|
@ -125,14 +126,17 @@ Bitte melden Sie auftretende Probleme via GitHub.</string>
|
|||
<string name="suggest_file_manager_app_dialog_title">Kein kompatibler Dateimanager gefunden</string>
|
||||
<string name="suggest_file_manager_app_dialog_text">Wir empfehlen Dir, die Open-Source App \"Simple File Manager\" aus F-Droid zu installieren. Möchtest Du ihre Seite im App-Store aufrufen?</string>
|
||||
|
||||
<!-- DevicesFragment -->
|
||||
|
||||
<!-- DeviceListFragment -->
|
||||
|
||||
<!-- Devices tab title -->
|
||||
<string name="devices_fragment_title">Geräte</string>
|
||||
|
||||
<!-- Shown if no devices exist -->
|
||||
<!-- Shown if no devices are configured in add folder dialog -->
|
||||
<string name="devices_list_empty">Keine Geräte konfiguriert. Tippe zum Hinzufügen eines neuen Geräts.</string>
|
||||
|
||||
<!-- Shown in ListView if no devices are configured -->
|
||||
<string name="no_devices_configured">Keine Geräte konfiguriert.\nBeginne jetzt mit dem Hinzufügen eines Geräts.</string>
|
||||
|
||||
<!-- Indicates that a folder is fully synced to the local device -->
|
||||
<string name="device_up_to_date">Aktuell</string>
|
||||
|
||||
|
|
|
@ -104,7 +104,8 @@ Please report any problems you encounter via Github.</string>
|
|||
<!-- Text for FoldersFragment and DevicesFragment loading view -->
|
||||
<!-- Shown instead of web_gui_loading if the key does not exist and has to be created -->
|
||||
<string name="web_gui_creating_key">Generating secure keys. This may take a few minutes…</string>
|
||||
<!-- FoldersFragment -->
|
||||
|
||||
<!-- FolderListFragment -->
|
||||
|
||||
|
||||
<string name="folders_fragment_title">Folders</string>
|
||||
|
@ -128,14 +129,17 @@ Please report any problems you encounter via Github.</string>
|
|||
<string name="suggest_file_manager_app_dialog_title">No compatible file manager app found</string>
|
||||
<string name="suggest_file_manager_app_dialog_text">We recommend you to install the open-source file manager app \'Simple File Manager\' from F-Droid. Would you like to open its app store page?</string>
|
||||
|
||||
<!-- DevicesFragment -->
|
||||
|
||||
<!-- DeviceListFragment -->
|
||||
|
||||
<!-- Devices tab title -->
|
||||
<string name="devices_fragment_title">Devices</string>
|
||||
|
||||
<!-- Shown if no devices exist -->
|
||||
<!-- Shown if no devices are configured in add folder dialog -->
|
||||
<string name="devices_list_empty">No devices configured. Tap to add a new device.</string>
|
||||
|
||||
<!-- Shown in ListView if no devices are configured -->
|
||||
<string name="no_devices_configured">No devices configured.\nBegin by adding a device now.</string>
|
||||
|
||||
<!-- Indicates that a folder is fully synced to the local device -->
|
||||
<string name="device_up_to_date">Up to Date</string>
|
||||
|
||||
|
|
Loading…
Reference in a new issue