diff --git a/app/src/main/java/org/transdroid/core/app/settings/ApplicationSettings.java b/app/src/main/java/org/transdroid/core/app/settings/ApplicationSettings.java
index 77e9b35c..4508d8cf 100644
--- a/app/src/main/java/org/transdroid/core/app/settings/ApplicationSettings.java
+++ b/app/src/main/java/org/transdroid/core/app/settings/ApplicationSettings.java
@@ -712,8 +712,7 @@ public class ApplicationSettings {
StatusType.valueOf(prefs.getString("widget_status_" + appWidgetId, StatusType.ShowAll.name())),
TorrentsSortBy.valueOf(prefs.getString("widget_sortby_" + appWidgetId, TorrentsSortBy.Alphanumeric.name())),
prefs.getBoolean("widget_reverse_" + appWidgetId, false),
- prefs.getBoolean("widget_showstatus_" + appWidgetId, false),
- prefs.getBoolean("widget_darktheme_" + appWidgetId, false));
+ prefs.getBoolean("widget_showstatus_" + appWidgetId, false));
// @formatter:on
}
@@ -733,7 +732,6 @@ public class ApplicationSettings {
edit.putString("widget_sortby_" + appWidgetId, settings.getSortBy().name());
edit.putBoolean("widget_reverse_" + appWidgetId, settings.shouldReserveSort());
edit.putBoolean("widget_showstatus_" + appWidgetId, settings.shouldShowStatusView());
- edit.putBoolean("widget_darktheme_" + appWidgetId, settings.shouldUseDarkTheme());
edit.apply();
}
diff --git a/app/src/main/java/org/transdroid/core/widget/ListWidgetConfig.java b/app/src/main/java/org/transdroid/core/widget/ListWidgetConfig.java
index 316f302a..1824a0f6 100644
--- a/app/src/main/java/org/transdroid/core/widget/ListWidgetConfig.java
+++ b/app/src/main/java/org/transdroid/core/widget/ListWidgetConfig.java
@@ -30,16 +30,14 @@ public class ListWidgetConfig {
private final TorrentsSortBy sortBy;
private final boolean reserveSort;
private final boolean showStatusView;
- private final boolean useDarkTheme;
public ListWidgetConfig(int serverId, StatusType statusType, TorrentsSortBy sortBy, boolean reverseSort,
- boolean showStatusView, boolean useDarkTheme) {
+ boolean showStatusView) {
this.serverId = serverId;
this.statusType = statusType;
this.sortBy = sortBy;
this.reserveSort = reverseSort;
this.showStatusView = showStatusView;
- this.useDarkTheme = useDarkTheme;
}
public int getServerId() {
@@ -61,9 +59,5 @@ public class ListWidgetConfig {
public boolean shouldShowStatusView() {
return showStatusView;
}
-
- public boolean shouldUseDarkTheme() {
- return useDarkTheme;
- }
}
diff --git a/app/src/main/java/org/transdroid/core/widget/ListWidgetConfigActivity.java b/app/src/main/java/org/transdroid/core/widget/ListWidgetConfigActivity.java
index d55f73b1..73f806bb 100644
--- a/app/src/main/java/org/transdroid/core/widget/ListWidgetConfigActivity.java
+++ b/app/src/main/java/org/transdroid/core/widget/ListWidgetConfigActivity.java
@@ -73,7 +73,7 @@ public class ListWidgetConfigActivity extends AppCompatActivity {
@ViewById
protected Spinner serverSpinner, filterSpinner, sortSpinner;
@ViewById
- protected CheckBox reverseorderCheckBox, showstatusCheckBox, darkthemeCheckBox;
+ protected CheckBox reverseorderCheckBox, showstatusCheckBox;
@ViewById
protected TextView filterText, serverText, errorText;
@ViewById
@@ -127,8 +127,7 @@ public class ListWidgetConfigActivity extends AppCompatActivity {
TorrentsSortBy sortBy = ((SortByListItem) sortSpinner.getSelectedItem()).getSortBy();
boolean reverseSort = reverseorderCheckBox.isChecked();
boolean showstatus = showstatusCheckBox.isChecked();
- boolean useDarkTheme = darkthemeCheckBox.isChecked();
- ListWidgetConfig config = new ListWidgetConfig(server, statusType, sortBy, reverseSort, showstatus, useDarkTheme);
+ ListWidgetConfig config = new ListWidgetConfig(server, statusType, sortBy, reverseSort, showstatus);
applicationSettings.setWidgetConfig(appWidgetId, config);
// Return the widget configuration result
diff --git a/app/src/main/res/layout/activity_widgetconfig.xml b/app/src/main/res/layout/activity_widgetconfig.xml
index 05c9cda7..487bb8fd 100644
--- a/app/src/main/res/layout/activity_widgetconfig.xml
+++ b/app/src/main/res/layout/activity_widgetconfig.xml
@@ -99,14 +99,6 @@
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/margin_half"
android:text="@string/widget_showstatusview" />
-
-
diff --git a/app/src/main/res/values-bg/strings.xml b/app/src/main/res/values-bg/strings.xml
index 7c9ea7c5..f1d2a758 100644
--- a/app/src/main/res/values-bg/strings.xml
+++ b/app/src/main/res/values-bg/strings.xml
@@ -126,7 +126,6 @@
Нови торенти за %1$s
Зареждане…
Отвори Transdroid
- Тъмна тема за интерфейса (няма преглед)
Сървъри
Добавяне на нов сървър
Стандартен сървър
diff --git a/app/src/main/res/values-cs/strings.xml b/app/src/main/res/values-cs/strings.xml
index ff441005..b62b5bc6 100644
--- a/app/src/main/res/values-cs/strings.xml
+++ b/app/src/main/res/values-cs/strings.xml
@@ -171,7 +171,6 @@
SEŘADIT VÝSLEDKY
Obrátit seřazení
Stav serveru místo jeho názvu
- Použít tmavé téma (není náhled)
HOTOVO
Servery
Přidat nový server
diff --git a/app/src/main/res/values-da/strings.xml b/app/src/main/res/values-da/strings.xml
index 8eeb6f60..4185e540 100644
--- a/app/src/main/res/values-da/strings.xml
+++ b/app/src/main/res/values-da/strings.xml
@@ -187,7 +187,6 @@
SORTERINGS RÆKKEFØLGE
Omvendt sorterings rækkefølge
Server status i stedet for titel
- Brug mørkt tema (ingen preview)
FÆRDIG
Servere
Tilføj ny server
diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml
index 670455bf..f166f91c 100644
--- a/app/src/main/res/values-de/strings.xml
+++ b/app/src/main/res/values-de/strings.xml
@@ -203,7 +203,6 @@
SORTIERREIHENFOLGE
Umgekehrte Sortierreihenfolge
Serverstatus anstelle des Titels
- Dunkles Thema benutzen (keine Vorschau)
FERTIG
Server
Neuen Server hinzufügen
diff --git a/app/src/main/res/values-es/strings.xml b/app/src/main/res/values-es/strings.xml
index 03bd65a4..7f1c7b2e 100755
--- a/app/src/main/res/values-es/strings.xml
+++ b/app/src/main/res/values-es/strings.xml
@@ -156,7 +156,6 @@
CRITERIO DE ORDENACIÓN
Invertir criterio de ordenación
Estado del servidor en lugar del título
- Usar tema oscuro (sin vista previa)
HECHO
Servidores
Añadir nuevo servidor
diff --git a/app/src/main/res/values-fa/strings.xml b/app/src/main/res/values-fa/strings.xml
index 04b269a9..b15d1d97 100644
--- a/app/src/main/res/values-fa/strings.xml
+++ b/app/src/main/res/values-fa/strings.xml
@@ -195,7 +195,6 @@
مرتب کردن بر اساس سفارش
معکوس مرتب کردن بر اساس سفارش
وضعیت کارگزار بهجای عنوان
- استفاده از تم تیره (بدون پیش نمایش)
تمام
سرورها
اضافه کردن سرور جدید
diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml
index 65fb31aa..9d204877 100644
--- a/app/src/main/res/values-fr/strings.xml
+++ b/app/src/main/res/values-fr/strings.xml
@@ -187,7 +187,6 @@
ORDRE DE TRI
Ordre de tri inversé
Statut du serveur plutôt que le titre
- Utilisez thème sombre (pas d\'aperçu)
FINI
Serveurs
Ajouter un nouveau serveur
diff --git a/app/src/main/res/values-he/strings.xml b/app/src/main/res/values-he/strings.xml
index 1fd8e8e9..006ae620 100644
--- a/app/src/main/res/values-he/strings.xml
+++ b/app/src/main/res/values-he/strings.xml
@@ -160,7 +160,6 @@
טוען...
ממוין לפי
הפוך את הרשימה
- השתמש בעיצוב כהה
סיים
שרתים
הוסף שרת חדש
diff --git a/app/src/main/res/values-hu/strings.xml b/app/src/main/res/values-hu/strings.xml
index 7ebcb833..26d86490 100644
--- a/app/src/main/res/values-hu/strings.xml
+++ b/app/src/main/res/values-hu/strings.xml
@@ -203,7 +203,6 @@
RENDEZÉSI SORREND
Fordított sorrend
Kiszolgáló állapota a címe helyett
- Sötét téma használata (nincs előnézet)
KÉSZ
Szerverek
Új szerver hozzáadása
diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml
index 5bc11c6b..18f2c7c9 100644
--- a/app/src/main/res/values-it/strings.xml
+++ b/app/src/main/res/values-it/strings.xml
@@ -203,7 +203,6 @@
TIPO ORDINAMENTO
Inverti ordinamento
Stato del server anzichè il titolo
- Utilizza tema scuro (nessuna anteprima)
FINE
Server
Aggiungi nuovo server
diff --git a/app/src/main/res/values-ja/strings.xml b/app/src/main/res/values-ja/strings.xml
index aa6b127f..d7d66429 100644
--- a/app/src/main/res/values-ja/strings.xml
+++ b/app/src/main/res/values-ja/strings.xml
@@ -195,7 +195,6 @@
ソート順
ソート順を逆にする
タイトルにサーバーステータスを表示
- ダーク・テーマを使用 (プレビューなし)
完了
サーバー
新しいサーバーを追加
diff --git a/app/src/main/res/values-ko/strings.xml b/app/src/main/res/values-ko/strings.xml
index eb20bf49..60ff8f78 100644
--- a/app/src/main/res/values-ko/strings.xml
+++ b/app/src/main/res/values-ko/strings.xml
@@ -195,7 +195,6 @@
정렬 순서
역순 정렬
제목 대신 서버 상태 표시
- 어두운 테마 사용 (미리보기 없음)
완료
서버
새 서버 추가
diff --git a/app/src/main/res/values-nl/strings.xml b/app/src/main/res/values-nl/strings.xml
index 814eca18..520c5e47 100644
--- a/app/src/main/res/values-nl/strings.xml
+++ b/app/src/main/res/values-nl/strings.xml
@@ -199,7 +199,6 @@
SORTEERVOLGORDE
Omgekeerde sorteervolgorde
Serverstatus i.p.v. titel
- Gebruik donker kleurenschema (geen preview)
KLAAR
Servers
Nieuwe server toevoegen
diff --git a/app/src/main/res/values-pl/strings.xml b/app/src/main/res/values-pl/strings.xml
index b7118468..a7dc7171 100644
--- a/app/src/main/res/values-pl/strings.xml
+++ b/app/src/main/res/values-pl/strings.xml
@@ -171,7 +171,6 @@
SORTOWANIE
Odwrócony porządek sortowania
Status serwera zamiast tytułu
- Użyj ciemnego motywu (brak podglądu)
GOTOWE
Serwery
Dodaj nowy serwer
diff --git a/app/src/main/res/values-pt-rBR/strings.xml b/app/src/main/res/values-pt-rBR/strings.xml
index 3208b21d..6e42e331 100644
--- a/app/src/main/res/values-pt-rBR/strings.xml
+++ b/app/src/main/res/values-pt-rBR/strings.xml
@@ -203,7 +203,6 @@
Ordem de classificação
Ordem Invertida
Estado do servidor ao invés do título
- Usar tema escuro (sem visualização)
Concluído
Servidores
Adicionar novo servidor
diff --git a/app/src/main/res/values-pt/strings.xml b/app/src/main/res/values-pt/strings.xml
index 8a5d6a02..715d911f 100644
--- a/app/src/main/res/values-pt/strings.xml
+++ b/app/src/main/res/values-pt/strings.xml
@@ -203,7 +203,6 @@
CRITÉRIO DE ORDENAÇÃO
Inverter critério de ordenação
Estado do servidor em vez de título
- Usar o tema escuro (sem antevisão)
FEITO
Servidores
Adicionar novo servidor
diff --git a/app/src/main/res/values-ru/strings.xml b/app/src/main/res/values-ru/strings.xml
index 1cc49da8..f65789dd 100644
--- a/app/src/main/res/values-ru/strings.xml
+++ b/app/src/main/res/values-ru/strings.xml
@@ -220,7 +220,6 @@
ПОРЯДОК СОРТИРОВКИ
Обратный порядок сортировки
Статистика сервера вместо названия
- Использовать темную тему (без предпросмотра)
ГОТОВО
Серверы
Добавить новый сервер
diff --git a/app/src/main/res/values-sl/strings.xml b/app/src/main/res/values-sl/strings.xml
index f96c7ed4..f48f7028 100644
--- a/app/src/main/res/values-sl/strings.xml
+++ b/app/src/main/res/values-sl/strings.xml
@@ -219,7 +219,6 @@
VRSTNI RED
Obratni vrstni red
Status strežnika namesto naziva
- Uporabi temno temo (ni predogleda)
OPRAVLJENO
Strežniki
Dodaj nov strežnik
diff --git a/app/src/main/res/values-sv/strings.xml b/app/src/main/res/values-sv/strings.xml
index 39ca5b95..f8f2621a 100644
--- a/app/src/main/res/values-sv/strings.xml
+++ b/app/src/main/res/values-sv/strings.xml
@@ -203,7 +203,6 @@
SÖKORDNING
Omvänd sökordning
Serverstatus iställer för titel
- Använd mörkt tema (ingen förhandsvisning)
FÄRDIG
Servrar
Lägg til ny server
diff --git a/app/src/main/res/values-tr/strings.xml b/app/src/main/res/values-tr/strings.xml
index 498ad746..34c9cf87 100644
--- a/app/src/main/res/values-tr/strings.xml
+++ b/app/src/main/res/values-tr/strings.xml
@@ -202,7 +202,6 @@
SIRALAMA DÜZENİ
Ters sıralama düzeni
Başlık yerine sunucu durumu
- Karanlık temayı kullanın (önizleme yok)
BİTTİ
Sunucular
Yeni sunucu ekle
diff --git a/app/src/main/res/values-zh-rCN/strings.xml b/app/src/main/res/values-zh-rCN/strings.xml
index fa70734c..e86fc195 100644
--- a/app/src/main/res/values-zh-rCN/strings.xml
+++ b/app/src/main/res/values-zh-rCN/strings.xml
@@ -179,7 +179,6 @@
排序顺序
反向排序
服务器状态而不是标题
- 使用暗色主题(无预览)
完成
服务器
添加服务器
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index fa121ee9..d62b3ecf 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -17,382 +17,381 @@
-->
- Add
- Add all
- From file
- From URL
- Scan barcode
- Search
- Refresh
- RSS
- Remote RSS
- Enable turtle mode
- Disable turtle mode
- Sort list
- Name
- Status
- Date done
- Date added
- Seeders
- Percent downloaded
- Download speed
- Upload speed
- Ratio
- Size
- Filter list
- Settings
- Help
- Start
- Normal start
- Force start
- Start all
- Stop
- Stop all
- Resume
- Resume all
- Pause
- Pause all
- Remove
- Remove torrent
- Remove and delete data
- Set label
- Download mode
- Download sequentially
- Prioritize first and last piece
- Update trackers
- Change storage location
- Force data recheck
- Off
- Low
- Normal
- High
- Remote play in VLC
- Download using FTP(S)
- Copy to clipboard
- Show details
- Open website
- Use as new search
- Remove settings
- Visit transdroid.org
- Close
+ Add
+ Add all
+ From file
+ From URL
+ Scan barcode
+ Search
+ Refresh
+ RSS
+ Remote RSS
+ Enable turtle mode
+ Disable turtle mode
+ Sort list
+ Name
+ Status
+ Date done
+ Date added
+ Seeders
+ Percent downloaded
+ Download speed
+ Upload speed
+ Ratio
+ Size
+ Filter list
+ Settings
+ Help
+ Start
+ Normal start
+ Force start
+ Start all
+ Stop
+ Stop all
+ Resume
+ Resume all
+ Pause
+ Pause all
+ Remove
+ Remove torrent
+ Remove and delete data
+ Set label
+ Download mode
+ Download sequentially
+ Prioritize first and last piece
+ Update trackers
+ Change storage location
+ Force data recheck
+ Off
+ Low
+ Normal
+ High
+ Remote play in VLC
+ Download using FTP(S)
+ Copy to clipboard
+ Show details
+ Open website
+ Use as new search
+ Remove settings
+ Visit transdroid.org
+ Close
- Select server and filter
- Close filters list
- %1$s allows you to monitor and manage the torrent client you run at home or on your seedbox. Setting things up can be a bit tricky, but we offer step-by-step guides and promise it\'ll be worth it!
- Connected, but no torrents are active within the current filter
- Select a torrent to view its details
- Servers
- Status
- Labels
- All
- Downloading
- Seeding
- Active
- Inactive
-
- - %1$d torrent selected
- - %1$d torrents selected
-
-
- - %1$d files selected
- - %1$d files selected
-
- Select all
- Select finished
- Invert selection
- Add torrent to…
- http://…
-
- STATUS: %1$s
- Waiting to check…
- Verifying local data…
- Waiting to download %s
- Error…
- %1$s OF %2$s (%3$s)
- %1$s, UPLOADED %2$s
- SINCE %1$s
- ~ %1$s
- ETA %1$s
- OF %1$s
- UNKNOWN ETA
- RATIO %1$s
- %1$s OF %2$s SEEDERS
- %1$s OF %2$s LEECHERS
- ↑ %1$s
- ↓ %1$s
- %1$s ↓
- Downloading
- Seeding
- Paused
- Queued
- Stopped
- Unknown status
- Not downloaded
- Low priority
- Normal priority
- High priority
- PIECES
- TRACKERS
- ERRORS
- FILES
- Maximum transfer speeds
- MAX DOWNLOAD
- MAX UPLOAD
- KB/S
- Reset
- -
- Update
-
- - New torrent added
- - %1$s new torrents added
-
-
- - Torrent is finished
- - %1$s torrents are finished
-
-
- - %1$s added, %2$s finished torrent
- - %1$s added, %2$s finished torrents
-
- %1$s and others
-
- All labels
- Unlabeled
- New label
- Setting a label is not supported by your client
- PICK A LABEL
- NEW LABEL
- Remove label
- E.g. movies or linux
-
- %1$s added (refreshing)
- %1$s removed
- %1$s removed and data deleted
- %1$s resumed (refreshing)
- %1$s stopped (refreshing)
- %1$s started (refreshing)
- %1$s paused (refreshing)
- Torrents paused (refreshing)
- Torrents resumed (refreshing)
- Torrents stopped (refreshing)
- Torrents started (refreshing)
- Trackers updated
- Label set to \'%1$s\'
- Label removed
- %1$s is downloading %2$s
- normally
- sequentially
- %1$s has %2$s
- first and last piece priority
- normal piece priority
- Checking %1$s data
- Torrent moved to \'%1$s\'
- File priorities updated
- Maximum transfer speeds set
-
- Torrent search
- \'%1$s\' on %2$s
- Search for torrents
- No results for your query
- S: %1$s
- L: %1$s
- This feature requires a one-time installation of the Torrent Search module. Click download to get the install package (apk) from transdroid.org and restart your search.
- Download module
- Opening details for %1$s
- The Barcode Scanner could not be found. Would you like to install it from the Play Store?
- No compatible file manager could not be found. Would you like to install IO File Manager from the Play Store?
-
- - %1$d result selected
- - %1$d results selected
-
-
- RSS feeds
- You have not defined any RSS feeds yet to monitor. Torrent-specific RSS feeds keep you up to date with new releases and you are notified of new items.
- Select an RSS feed to view the new items
- The RSS feed is not available or it contains no items
- Sorry, please wait until the RSS feed is loaded
- Sorry, this RSS feed could not be loaded at this time
-
- - %1$d item selected
- - %1$d items selected
-
-
- - New RSS feed torrent available
- - %1$s new RSS feed torrents
-
- New torrents for %1$s
+ Select server and filter
+ Close filters list
+ %1$s allows you to monitor and manage the torrent client you run at home or on your seedbox. Setting things up can be a bit tricky, but we offer step-by-step guides and promise it\'ll be worth it!
+ Connected, but no torrents are active within the current filter
+ Select a torrent to view its details
+ Servers
+ Status
+ Labels
+ All
+ Downloading
+ Seeding
+ Active
+ Inactive
+
+ - %1$d torrent selected
+ - %1$d torrents selected
+
+
+ - %1$d files selected
+ - %1$d files selected
+
+ Select all
+ Select finished
+ Invert selection
+ Add torrent to…
+ http://…
- (All recent)
- No torrent files found.\n\nAre your RSS feeds configured correctly?
- Loading RSS feeds…
+ STATUS: %1$s
+ Waiting to check…
+ Verifying local data…
+ Waiting to download %s
+ Error…
+ %1$s OF %2$s (%3$s)
+ %1$s, UPLOADED %2$s
+ SINCE %1$s
+ ~ %1$s
+ ETA %1$s
+ OF %1$s
+ UNKNOWN ETA
+ RATIO %1$s
+ %1$s OF %2$s SEEDERS
+ %1$s OF %2$s LEECHERS
+ ↑ %1$s
+ ↓ %1$s
+ %1$s ↓
+ Downloading
+ Seeding
+ Paused
+ Queued
+ Stopped
+ Unknown status
+ Not downloaded
+ Low priority
+ Normal priority
+ High priority
+ PIECES
+ TRACKERS
+ ERRORS
+ FILES
+ Maximum transfer speeds
+ MAX DOWNLOAD
+ MAX UPLOAD
+ KB/S
+ Reset
+ -
+ Update
+
+ - New torrent added
+ - %1$s new torrents added
+
+
+ - Torrent is finished
+ - %1$s torrents are finished
+
+
+ - %1$s added, %2$s finished torrent
+ - %1$s added, %2$s finished torrents
+
+ %1$s and others
- Loading…
- Open Transdroid
- SERVER VIEW
- LOOK & FEEL
- SORT ORDER
- Reversed sort order
- Server status instead of title
- Use dark theme (no preview)
- DONE
-
- Servers
- Add new server
- Add normal, custom server
- Add seedbox
- Default server
- Last used
- Ask when adding torrent
- Search sites
- Set default site
- Add web search site
- RSS feeds
- Add RSS feed
- Other settings
- Are you sure you want to remove these settings?
-
- Name
- Optional personal name
- Direct search URL
- %s will be replaced by the search query
- Cookies
- Optional; use the key1=value1;key2=value2 format
- Feed URL
- Requires authentication
- Opens links in the webbrowser for user login
- New item notification
- Notify when new torrents are released
- Exclude filter
- Don\'t show torrents whose name matches these |-separated words
- Include filter
- Only show torrents whose name matches these |-separated words
-
- Server type
- IP or host name
- Port number
- User name
- Password
- Deluge web password
- Secret token
- Advanced settings
- Local IP or host
- When connected to the specified local network
- Local port number
- Local network
- The server\'s local network SSID
- Location permission
- To known the connected Wifi network SSID name, %1$s requires the location permission
- Folder
- Usually empty
- SCGI mount point
- Optional settings
- Finished notification
- Notify when a torrent finishes
- New torrent notification
- Notify when a torrent was added
- Exclude filter
- Notify only if torrent name matches these |-separated words
- Include filter
- Notify never if torrent name matches these |-separated words
- Server OS
- Download directory
- Manually set absolute path for remote connections
- Connection timeout
- Number of seconds before a connection attempt is aborted
- Base FTP(S) url
- For example ftp://me@server/downloads/
- FTP(S) password
- Disable authentication
- Don\'t send username and password
- Use SSL
- Connect using https
- Use SSL on local network
- Connect using https
- Custom SSL thumbprint (SHA-1)
- Permit only connections to this specific certificate
- Accept all SSL certificates
- Allow all connections from any thumbprint
-
- Background notifications
- Enable RSS notifications
- Enable torrent notifications
- Enables the background service
- Interval
- How often to check RSS or torrents
- Sound
- Vibrate
- LED colour
- If supported by your device
- Support ADW notifications
- Show torrent counter in ADW Launcher
-
- System
- Automatic refreshing
- Interval-based refresh of the main screen
-
- - Disabled
- - 2 seconds
- - 5 seconds
- - 10 seconds
- - 30 seconds
-
-
- - 0
- - 2
- - 5
- - 10
- - 30
-
- Treat dormant torrents as inactive
- Torrents at 0KB/s (no data transfer) will be filtered as being inactive
- Check for updates
- Check transdroid.org for latest app version
- Auto night mode
- Automatically choose between light or dark theme
- Use dark UI theme
- Requires a restart to take effect
- Clear search history
- Search history is cleared
- Import settings
- %1$s will try to import server, web search, RSS and system settings from: %2$s
- Use file
- Use QR code
- Settings successfully imported
- Export settings
- %1$s will export server (including passwords), web search, RSS and system settings to the following plain text JSON file: %2$s
- To file
- To QR code
- Settings successfully exported
-
- Transdroid help
- Send error log
- Get support or report a bug
- View install guides
- Available at transdroid.org/download
- Recent changes
- About %1$s
+ All labels
+ Unlabeled
+ New label
+ Setting a label is not supported by your client
+ PICK A LABEL
+ NEW LABEL
+ Remove label
+ E.g. movies or linux
+
+ %1$s added (refreshing)
+ %1$s removed
+ %1$s removed and data deleted
+ %1$s resumed (refreshing)
+ %1$s stopped (refreshing)
+ %1$s started (refreshing)
+ %1$s paused (refreshing)
+ Torrents paused (refreshing)
+ Torrents resumed (refreshing)
+ Torrents stopped (refreshing)
+ Torrents started (refreshing)
+ Trackers updated
+ Label set to \'%1$s\'
+ Label removed
+ %1$s is downloading %2$s
+ normally
+ sequentially
+ %1$s has %2$s
+ first and last piece priority
+ normal piece priority
+ Checking %1$s data
+ Torrent moved to \'%1$s\'
+ File priorities updated
+ Maximum transfer speeds set
+
+ Torrent search
+ \'%1$s\' on %2$s
+ Search for torrents
+ No results for your query
+ S: %1$s
+ L: %1$s
+ This feature requires a one-time installation of the Torrent Search module. Click download to get the install package (apk) from transdroid.org and restart your search.
+ Download module
+ Opening details for %1$s
+ The Barcode Scanner could not be found. Would you like to install it from the Play Store?
+ No compatible file manager could not be found. Would you like to install IO File Manager from the Play Store?
+
+ - %1$d result selected
+ - %1$d results selected
+
+
+ RSS feeds
+ You have not defined any RSS feeds yet to monitor. Torrent-specific RSS feeds keep you up to date with new releases and you are notified of new items.
+ Select an RSS feed to view the new items
+ The RSS feed is not available or it contains no items
+ Sorry, please wait until the RSS feed is loaded
+ Sorry, this RSS feed could not be loaded at this time
+
+ - %1$d item selected
+ - %1$d items selected
+
+
+ - New RSS feed torrent available
+ - %1$s new RSS feed torrents
+
+ New torrents for %1$s
+
+ (All recent)
+ No torrent files found.\n\nAre your RSS feeds configured correctly?
+ Loading RSS feeds…
+
+ Loading…
+ Open Transdroid
+ SERVER VIEW
+ LOOK & FEEL
+ SORT ORDER
+ Reversed sort order
+ Server status instead of title
+ DONE
+
+ Servers
+ Add new server
+ Add normal, custom server
+ Add seedbox
+ Default server
+ Last used
+ Ask when adding torrent
+ Search sites
+ Set default site
+ Add web search site
+ RSS feeds
+ Add RSS feed
+ Other settings
+ Are you sure you want to remove these settings?
+
+ Name
+ Optional personal name
+ Direct search URL
+ %s will be replaced by the search query
+ Cookies
+ Optional; use the key1=value1;key2=value2 format
+ Feed URL
+ Requires authentication
+ Opens links in the webbrowser for user login
+ New item notification
+ Notify when new torrents are released
+ Exclude filter
+ Don\'t show torrents whose name matches these |-separated words
+ Include filter
+ Only show torrents whose name matches these |-separated words
+
+ Server type
+ IP or host name
+ Port number
+ User name
+ Password
+ Deluge web password
+ Secret token
+ Advanced settings
+ Local IP or host
+ When connected to the specified local network
+ Local port number
+ Local network
+ The server\'s local network SSID
+ Location permission
+ To known the connected Wifi network SSID name, %1$s requires the location permission
+ Folder
+ Usually empty
+ SCGI mount point
+ Optional settings
+ Finished notification
+ Notify when a torrent finishes
+ New torrent notification
+ Notify when a torrent was added
+ Exclude filter
+ Notify only if torrent name matches these |-separated words
+ Include filter
+ Notify never if torrent name matches these |-separated words
+ Server OS
+ Download directory
+ Manually set absolute path for remote connections
+ Connection timeout
+ Number of seconds before a connection attempt is aborted
+ Base FTP(S) url
+ For example ftp://me@server/downloads/
+ FTP(S) password
+ Disable authentication
+ Don\'t send username and password
+ Use SSL
+ Connect using https
+ Use SSL on local network
+ Connect using https
+ Custom SSL thumbprint (SHA-1)
+ Permit only connections to this specific certificate
+ Accept all SSL certificates
+ Allow all connections from any thumbprint
+
+ Background notifications
+ Enable RSS notifications
+ Enable torrent notifications
+ Enables the background service
+ Interval
+ How often to check RSS or torrents
+ Sound
+ Vibrate
+ LED colour
+ If supported by your device
+ Support ADW notifications
+ Show torrent counter in ADW Launcher
+
+ System
+ Automatic refreshing
+ Interval-based refresh of the main screen
+
+ - Disabled
+ - 2 seconds
+ - 5 seconds
+ - 10 seconds
+ - 30 seconds
+
+
+ - 0
+ - 2
+ - 5
+ - 10
+ - 30
+
+ Treat dormant torrents as inactive
+ Torrents at 0KB/s (no data transfer) will be filtered as being inactive
+ Check for updates
+ Check transdroid.org for latest app version
+ Auto night mode
+ Automatically choose between light or dark theme
+ Use dark UI theme
+ Requires a restart to take effect
+ Clear search history
+ Search history is cleared
+ Import settings
+ %1$s will try to import server, web search, RSS and system settings from: %2$s
+ Use file
+ Use QR code
+ Settings successfully imported
+ Export settings
+ %1$s will export server (including passwords), web search, RSS and system settings to the following plain text JSON file: %2$s
+ To file
+ To QR code
+ Settings successfully exported
+
+ Transdroid help
+ Send error log
+ Get support or report a bug
+ View install guides
+ Available at transdroid.org/download
+ Recent changes
+ About %1$s
+
+ Add %1$s seedbox
+ Torrent client
+ Client to connect to
+ Server address
+ Like eplus001.xirvik.com
+ Like semixl001a.xirvik.com
+ Like desharedgbit001.xirvik.com
+ Cannot retrieve the Xirvik SCGI folder setting; please try again later or correct your server address setting
+ Like 001.seedstuff.ca
+ Like abcd123.dediseedbox.com
+
+ - rTorrent
+ - uTorrent
+ - Deluge
+
+
+ - daemon_rtorrent
+ - daemon_utorrent
+ - daemon_deluge
+
- Add %1$s seedbox
- Torrent client
- Client to connect to
- Server address
- Like eplus001.xirvik.com
- Like semixl001a.xirvik.com
- Like desharedgbit001.xirvik.com
- Cannot retrieve the Xirvik SCGI folder setting; please try again later or correct your server address setting
- Like 001.seedstuff.ca
- Like abcd123.dediseedbox.com
-
- - rTorrent
- - uTorrent
- - Deluge
-
-
- - daemon_rtorrent
- - daemon_utorrent
- - daemon_deluge
-
-
- Aria2
- BitComet
@@ -401,14 +400,14 @@
- Buffalo NAS -1.31
- Deluge 1.2+
- Deluge RPC
- - Deluge 2 RPC
- - DLink Router BT
+ - Deluge 2 RPC
+ - DLink Router BT
- Ktorrent
- qBittorrent
- rTorrent
- Synology
- - Torrentflux-b4rt
- - tTorrent
+ - Torrentflux-b4rt
+ - tTorrent
- Transmission
- µTorrent
- Vuze
@@ -421,86 +420,86 @@
- daemon_buffalonas
- daemon_deluge
- daemon_deluge_rpc
- - daemon_deluge2_rpc
- - daemon_dlinkrouterbt
+ - daemon_deluge2_rpc
+ - daemon_dlinkrouterbt
- daemon_ktorrent
- daemon_qbittorrent
- daemon_rtorrent
- daemon_synology
- - daemon_tfb4rt
- - daemon_ttorrent
+ - daemon_tfb4rt
+ - daemon_ttorrent
- daemon_transmission
- daemon_utorrent
- daemon_vuze
-
- - Windows
- - Mac
- - Linux
-
-
- - type_windows
- - type_mac
- - type_linux
-
-
- - 15 minutes
- - 30 minutes
- - 1 hour
- - 3 hours
- - 12 hours
- - 1 day
-
-
- - 900
- - 1800
- - 3600
- - 10800
- - 43200
- - 86400
-
+
+ - Windows
+ - Mac
+ - Linux
+
+
+ - type_windows
+ - type_mac
+ - type_linux
+
+
+ - 15 minutes
+ - 30 minutes
+ - 1 hour
+ - 3 hours
+ - 12 hours
+ - 1 day
+
+
+ - 900
+ - 1800
+ - 3600
+ - 10800
+ - 43200
+ - 86400
+
+
+ Transdroid requires read access to your file storage in order to read local .torrent files
+ Transdroid requires read access to your file storage if you want to read from a local settings file
+ Transdroid requires write access to your file storage to write the local settings file
+
+ Error during communication; check your connection
+ Your torrent client does not support this operation
+ Your torrent client does not support magnet links
+ Internal error building request
+ Error parsing server response (please check your settings)
+ Web interface not connected to a running daemon
+ Access denied (please check your settings)
+ Can\'t read .torrent file
+ Error while parsing the RSS feed
+ This URL is not well-formed
+ Your web search URL is invalid:
+ Input is not a valid IP address or host name
+ Port number is always numeric
+ Directory paths end with a / or \
+ Timeout can not be empty and is a positive number
+ The search result does not link to a .torrent file
+ Can\'t find torrent link or product information for this barcode
+ The RSS feed item didn\'t provide an URL enclosure or link tag pointing to the .torrent file
+ The RSS feed item does not provide a link to browse to
+ URL is not a (valid) RSS feed
+ SD card not available to read/write
+ File does not seem to contain %1$s settings
+ The settings file could not be found
+ Can\'t write to the settings file
+ Please enter a positive number for both speeds
+ Please enter a valid label or pick from the list
+ Please wait until the torrent details have been loaded
+ No app found that can download %1$s
- Transdroid requires read access to your file storage in order to read local .torrent files
- Transdroid requires read access to your file storage if you want to read from a local settings file
- Transdroid requires write access to your file storage to write the local settings file
+ New Transdroid version available
+ New Transdroid search module available
+ You can now update to %1$s
- Error during communication; check your connection
- Your torrent client does not support this operation
- Your torrent client does not support magnet links
- Internal error building request
- Error parsing server response (please check your settings)
- Web interface not connected to a running daemon
- Access denied (please check your settings)
- Can\'t read .torrent file
- Error while parsing the RSS feed
- This URL is not well-formed
- Your web search URL is invalid:
- Input is not a valid IP address or host name
- Port number is always numeric
- Directory paths end with a / or \
- Timeout can not be empty and is a positive number
- The search result does not link to a .torrent file
- Can\'t find torrent link or product information for this barcode
- The RSS feed item didn\'t provide an URL enclosure or link tag pointing to the .torrent file
- The RSS feed item does not provide a link to browse to
- URL is not a (valid) RSS feed
- SD card not available to read/write
- File does not seem to contain %1$s settings
- The settings file could not be found
- Can\'t write to the settings file
- Please enter a positive number for both speeds
- Please enter a valid label or pick from the list
- Please wait until the torrent details have been loaded
- No app found that can download %1$s
-
- New Transdroid version available
- New Transdroid search module available
- You can now update to %1$s
-
- \u00A9 Eric Kok, 2312 development
- Published under GNU General Public License v3
- Some code/libraries are used in the project:
- AndroidAnnotations\n \u00A0 http://androidannotations.org/\n \u00A0 Pierre-Yves Ricau (eBusinessInformations) et al. \n \u00A0 Apache License, Version 2.0\nMaterial Dialogs\n \u00A0 https://github.com/afollestad/material-dialogs\n \u00A0 Aidan Follestad et al. \n \u00A0 MIT License\nSnackbar\n \u00A0 https://github.com/nispok/snackbar\n \u00A0 William Mora et al. \n \u00A0 MIT License\nFloatingActionButton\n \u00A0 https://github.com/futuresimple/android-floating-action-button\n \u00A0 Jerzy Chałupski et al. \n \u00A0 Apache License, Version 2.0\nBase16Encoder\n \u00A0 http://openjpa.apache.org/\n \u00A0 Marc Prud\'hommeaux \n \u00A0 Apache OpenJPA\n MultipartEntity \n \u00A0 Apache Software Foundation \n \u00A0 Apache License, Version 2.0\nRssParser (learning-android)\n \u00A0 http://github.com/digitalspaghetti/learning-android\n \u00A0 Tane Piper \n \u00A0 Public Domain\nBase64\n \u00A0 http://iharder.net/base64\n \u00A0 Robert Harder \n \u00A0 Public Domain\naXMLRPC\n \u00A0 https://github.com/timroes/aXMLRPC\n \u00A0 Tim Roes \n \u00A0 MIT License\nandroid-ColorPickerPreference\n \u00A0 https://github.com/attenzione/android-ColorPickerPreference\n \u00A0 Daniel Nilsson and Sergey Margaritov \n \u00A0 Apache License, Version 2.0\nFunnel icon\n \u00A0 http://thenounproject.com/noun/funnel/#icon-No5608\n \u00A0 Naomi Atkinson from The Noun Project\n \u00A0 Creative Commons Attribution 3.0
- Manage your torrents from your Android device
+ \u00A9 Eric Kok, 2312 development
+ Published under GNU General Public License v3
+ Some code/libraries are used in the project:
+ AndroidAnnotations\n \u00A0 http://androidannotations.org/\n \u00A0 Pierre-Yves Ricau (eBusinessInformations) et al. \n \u00A0 Apache License, Version 2.0\nMaterial Dialogs\n \u00A0 https://github.com/afollestad/material-dialogs\n \u00A0 Aidan Follestad et al. \n \u00A0 MIT License\nSnackbar\n \u00A0 https://github.com/nispok/snackbar\n \u00A0 William Mora et al. \n \u00A0 MIT License\nFloatingActionButton\n \u00A0 https://github.com/futuresimple/android-floating-action-button\n \u00A0 Jerzy Chałupski et al. \n \u00A0 Apache License, Version 2.0\nBase16Encoder\n \u00A0 http://openjpa.apache.org/\n \u00A0 Marc Prud\'hommeaux \n \u00A0 Apache OpenJPA\n MultipartEntity \n \u00A0 Apache Software Foundation \n \u00A0 Apache License, Version 2.0\nRssParser (learning-android)\n \u00A0 http://github.com/digitalspaghetti/learning-android\n \u00A0 Tane Piper \n \u00A0 Public Domain\nBase64\n \u00A0 http://iharder.net/base64\n \u00A0 Robert Harder \n \u00A0 Public Domain\naXMLRPC\n \u00A0 https://github.com/timroes/aXMLRPC\n \u00A0 Tim Roes \n \u00A0 MIT License\nandroid-ColorPickerPreference\n \u00A0 https://github.com/attenzione/android-ColorPickerPreference\n \u00A0 Daniel Nilsson and Sergey Margaritov \n \u00A0 Apache License, Version 2.0\nFunnel icon\n \u00A0 http://thenounproject.com/noun/funnel/#icon-No5608\n \u00A0 Naomi Atkinson from The Noun Project\n \u00A0 Creative Commons Attribution 3.0
+ Manage your torrents from your Android device