aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenny Root <kenny@the-b.org>2015-04-14 17:36:10 -0700
committerKenny Root <kenny@the-b.org>2015-04-14 17:36:10 -0700
commit5554bf422a49630e1462ca51bb0450e668f7ae0b (patch)
treebe6c870a15216668e8c9f02b9d029192a137be44
parentd319b4d3e1d6a6b55bb9685b6fa36a147b856869 (diff)
parent5ac8a6140a9dc7634cc5e01b89cc6e84bbea6ed5 (diff)
downloadconnectbot-5554bf422a49630e1462ca51bb0450e668f7ae0b.tar.gz
connectbot-5554bf422a49630e1462ca51bb0450e668f7ae0b.tar.bz2
connectbot-5554bf422a49630e1462ca51bb0450e668f7ae0b.zip
Merge branch 'master' into gradle-conversion
-rw-r--r--app/src/main/java/org/connectbot/HostListActivity.java16
-rw-r--r--app/src/main/res/values-ca/strings.xml3
-rw-r--r--app/src/main/res/values-cs/strings.xml3
-rw-r--r--app/src/main/res/values-da/strings.xml3
-rw-r--r--app/src/main/res/values-de/strings.xml3
-rw-r--r--app/src/main/res/values-es/strings.xml3
-rw-r--r--app/src/main/res/values-eu/strings.xml3
-rw-r--r--app/src/main/res/values-fi/strings.xml3
-rw-r--r--app/src/main/res/values-fr/strings.xml3
-rw-r--r--app/src/main/res/values-gl/strings.xml3
-rw-r--r--app/src/main/res/values-he/strings.xml3
-rw-r--r--app/src/main/res/values-hu/strings.xml3
-rw-r--r--app/src/main/res/values-id/strings.xml3
-rw-r--r--app/src/main/res/values-is/strings.xml3
-rw-r--r--app/src/main/res/values-it/strings.xml3
-rw-r--r--app/src/main/res/values-ja/strings.xml3
-rw-r--r--app/src/main/res/values-ko/strings.xml3
-rw-r--r--app/src/main/res/values-nb/strings.xml3
-rw-r--r--app/src/main/res/values-nl/strings.xml3
-rw-r--r--app/src/main/res/values-pl/strings.xml3
-rw-r--r--app/src/main/res/values-pt-rBR/strings.xml3
-rw-r--r--app/src/main/res/values-pt/strings.xml3
-rw-r--r--app/src/main/res/values-ru/strings.xml3
-rw-r--r--app/src/main/res/values-sk/strings.xml3
-rw-r--r--app/src/main/res/values-sl/strings.xml3
-rw-r--r--app/src/main/res/values-sv/strings.xml3
-rw-r--r--app/src/main/res/values-tr/strings.xml3
-rw-r--r--app/src/main/res/values-zh-rCN/strings.xml3
-rw-r--r--app/src/main/res/values-zh-rTW/strings.xml3
-rw-r--r--app/src/main/res/values/strings.xml6
-rw-r--r--res/values-sr/strings.xml3
31 files changed, 3 insertions, 106 deletions
diff --git a/app/src/main/java/org/connectbot/HostListActivity.java b/app/src/main/java/org/connectbot/HostListActivity.java
index 607b53f..58513f3 100644
--- a/app/src/main/java/org/connectbot/HostListActivity.java
+++ b/app/src/main/java/org/connectbot/HostListActivity.java
@@ -45,6 +45,7 @@ import android.os.Handler;
import android.os.IBinder;
import android.os.Message;
import android.preference.PreferenceManager;
+import android.text.format.DateUtils;
import android.util.Log;
import android.view.ContextMenu;
import android.view.KeyEvent;
@@ -558,20 +559,9 @@ public class HostListActivity extends ListActivity {
holder.caption.setTextAppearance(context, android.R.attr.textAppearanceSmall);
}
- long now = System.currentTimeMillis() / 1000;
-
- String nice = context.getString(R.string.bind_never);
+ CharSequence nice = context.getString(R.string.bind_never);
if (host.getLastConnect() > 0) {
- int minutes = (int) ((now - host.getLastConnect()) / 60);
- if (minutes >= 60) {
- int hours = (minutes / 60);
- if (hours >= 24) {
- int days = (hours / 24);
- nice = context.getString(R.string.bind_days, days);
- } else
- nice = context.getString(R.string.bind_hours, hours);
- } else
- nice = context.getString(R.string.bind_minutes, minutes);
+ nice = DateUtils.getRelativeTimeSpanString(host.getLastConnect() * 1000);
}
holder.caption.setText(nice);
diff --git a/app/src/main/res/values-ca/strings.xml b/app/src/main/res/values-ca/strings.xml
index f7233e9..7b3baa4 100644
--- a/app/src/main/res/values-ca/strings.xml
+++ b/app/src/main/res/values-ca/strings.xml
@@ -126,9 +126,6 @@
<string name="hostpref_hostname_title">Servidor</string>
<string name="hostpref_port_title">Port</string>
<string name="bind_never">Mai connectat</string>
- <string name="bind_minutes">Fa %1$s minuts</string>
- <string name="bind_hours">Fa %1$s hores</string>
- <string name="bind_days">Fa %1$s dies</string>
<string name="console_copy_done">Copiats %1$d bytes al porta-retalls</string>
<string name="console_copy_start">Toca i arrosega\no fes servir les tecles de direcció\nper escollir l\'àrea a copiar</string>
<string name="console_menu_close">Tanca</string>
diff --git a/app/src/main/res/values-cs/strings.xml b/app/src/main/res/values-cs/strings.xml
index 6bc0b87..e210502 100644
--- a/app/src/main/res/values-cs/strings.xml
+++ b/app/src/main/res/values-cs/strings.xml
@@ -122,9 +122,6 @@
<string name="hostpref_connection_category">Nastavení připojení</string>
<string name="hostpref_username_title">Uživatelské jméno</string>
<string name="bind_never">Nikdy nepřipojen</string>
- <string name="bind_minutes">Před %1$s minutami</string>
- <string name="bind_hours">Před %1$s hodinami</string>
- <string name="bind_days">Před %1$s dny</string>
<string name="console_copy_done">Zkopírováno %1$d bajtů do schránky</string>
<string name="console_copy_start">Stiskněte a táhněte\nnebo použijte směrový ovladač\npro výběr oblasti ke zkopírování</string>
<string name="console_menu_close">Zavřít</string>
diff --git a/app/src/main/res/values-da/strings.xml b/app/src/main/res/values-da/strings.xml
index 5e72bcb..d66550a 100644
--- a/app/src/main/res/values-da/strings.xml
+++ b/app/src/main/res/values-da/strings.xml
@@ -124,9 +124,6 @@
<string name="hostpref_hostname_title">Vært</string>
<string name="hostpref_port_title">Port</string>
<string name="bind_never">Aldrig forbundet</string>
- <string name="bind_minutes">%1$s minutter siden</string>
- <string name="bind_hours">%1$s timer siden</string>
- <string name="bind_days">%1$s dage siden</string>
<string name="console_copy_done">Kopier %1$d byte til udklipsholder</string>
<string name="console_copy_start">Berør og flyt\neller brug piletasterne\nfor at vælge område at kopiere</string>
<string name="console_menu_close">Luk</string>
diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml
index a9422d7..eadad3b 100644
--- a/app/src/main/res/values-de/strings.xml
+++ b/app/src/main/res/values-de/strings.xml
@@ -126,9 +126,6 @@
<string name="hostpref_hostname_title">Host</string>
<string name="hostpref_port_title">Port</string>
<string name="bind_never">Nie verbunden</string>
- <string name="bind_minutes">vor %1$s Minuten</string>
- <string name="bind_hours">vor %1$s Stunden</string>
- <string name="bind_days">vor %1$s Tagen</string>
<string name="console_copy_done">%1$d Byte in die Zwischenablage kopiert</string>
<string name="console_copy_start">Berühren und ziehen\noder Trackball verwenden\num zu kopierenden Bereich auszuwählen</string>
<string name="console_menu_close">Schließen</string>
diff --git a/app/src/main/res/values-es/strings.xml b/app/src/main/res/values-es/strings.xml
index 87bb50f..d8066a1 100644
--- a/app/src/main/res/values-es/strings.xml
+++ b/app/src/main/res/values-es/strings.xml
@@ -124,9 +124,6 @@
<string name="hostpref_hostname_title">Host (equipo anfitrión)</string>
<string name="hostpref_port_title">Puerto</string>
<string name="bind_never">Nunca fué conectado</string>
- <string name="bind_minutes">Hace %1$s minutos</string>
- <string name="bind_hours">Hace %1$s horas</string>
- <string name="bind_days">Hace %1$s días</string>
<string name="console_copy_done">%1$d bytes copiados al portapaleles</string>
<string name="console_copy_start">Toque y arrastre\no use la almohadilla direccional\npara seleccionar la zona a copiar</string>
<string name="console_menu_close">Cerrar</string>
diff --git a/app/src/main/res/values-eu/strings.xml b/app/src/main/res/values-eu/strings.xml
index 6cf248b..0a5ab9b 100644
--- a/app/src/main/res/values-eu/strings.xml
+++ b/app/src/main/res/values-eu/strings.xml
@@ -124,9 +124,6 @@
<string name="hostpref_hostname_title">Ostalaria</string>
<string name="hostpref_port_title">Ataka</string>
<string name="bind_never">Inoiz ez da konexiorik ezarri</string>
- <string name="bind_minutes">Duela %1$s minutu</string>
- <string name="bind_hours">Duela %1$s ordu</string>
- <string name="bind_days">Duela %1$s egun</string>
<string name="console_copy_done">%1$d byte kopiatuta arbelera</string>
<string name="console_copy_start">Ukitu eta arrastatu\nedo erabili norabide kuxina\nkopiatu beharreko eremua hautatzeko</string>
<string name="console_menu_close">Itxi</string>
diff --git a/app/src/main/res/values-fi/strings.xml b/app/src/main/res/values-fi/strings.xml
index 1e35e66..39d2e66 100644
--- a/app/src/main/res/values-fi/strings.xml
+++ b/app/src/main/res/values-fi/strings.xml
@@ -123,9 +123,6 @@
<string name="hostpref_hostname_title">Palvelin</string>
<string name="hostpref_port_title">Portti</string>
<string name="bind_never">Ei koskaan yhdistetty</string>
- <string name="bind_minutes">%1$s minuuttia sitten</string>
- <string name="bind_hours">%1$s tuntia sitten</string>
- <string name="bind_days">%1$s päivää sitten</string>
<string name="console_copy_done">%1$d tavua kopioitu leikepöydälle</string>
<string name="console_copy_start">Maalaa koskettamalla\ntai käytä nuolinäppäimiä\nvalitaksesi kopioitavan alueen</string>
<string name="console_menu_close">Sulje</string>
diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml
index 05a4049..efc4f96 100644
--- a/app/src/main/res/values-fr/strings.xml
+++ b/app/src/main/res/values-fr/strings.xml
@@ -134,9 +134,6 @@
<string name="hostpref_hostname_title">Serveur</string>
<string name="hostpref_port_title">Port</string>
<string name="bind_never">Jamais connecté</string>
- <string name="bind_minutes">Il y a %1$s minutes</string>
- <string name="bind_hours">Il y a %1$s heures</string>
- <string name="bind_days">Il y a %1$s jours</string>
<string name="console_copy_done">%1$d octets copiés dans le presse-papier</string>
<string name="console_copy_start">Touchez et tirez, ou utilisez\nles touches directionnelles\npour sélectionner la région\nà copier</string>
<string name="console_menu_close">Fermer</string>
diff --git a/app/src/main/res/values-gl/strings.xml b/app/src/main/res/values-gl/strings.xml
index c88fe6b..75b4769 100644
--- a/app/src/main/res/values-gl/strings.xml
+++ b/app/src/main/res/values-gl/strings.xml
@@ -101,9 +101,6 @@
<string name="hostpref_hostname_title">Máquina</string>
<string name="hostpref_port_title">Porto</string>
<string name="bind_never">Nunca conectado</string>
- <string name="bind_minutes">Hai %1$s minutos</string>
- <string name="bind_hours">Hai %1$s horas</string>
- <string name="bind_days">Hai %1$s días</string>
<string name="console_copy_done">Copiados %1$d bytes ao portapapeis</string>
<string name="console_copy_start">Tocar e arrastrar\nou usar o cursor direccional\npara seleccionar a área a copiar</string>
<string name="console_menu_close">Pechar</string>
diff --git a/app/src/main/res/values-he/strings.xml b/app/src/main/res/values-he/strings.xml
index 9e55f47..429146e 100644
--- a/app/src/main/res/values-he/strings.xml
+++ b/app/src/main/res/values-he/strings.xml
@@ -125,9 +125,6 @@
<string name="hostpref_hostname_title">מארח</string>
<string name="hostpref_port_title">פתחה</string>
<string name="bind_never">לא חובר מעולם</string>
- <string name="bind_minutes">לפני %1$s דקות</string>
- <string name="bind_hours">לפני %1$s שעות</string>
- <string name="bind_days">לפני %1$s ימים</string>
<string name="console_copy_done">הועתקו %1$d בתים ללוח הגזירים</string>
<string name="console_copy_start">יש לגעת ולגרור\nאו להשתמש בלוח כיוונים\nכדי לבחור אזור להעתקה</string>
<string name="console_menu_close">סגירה</string>
diff --git a/app/src/main/res/values-hu/strings.xml b/app/src/main/res/values-hu/strings.xml
index 5a41a02..66c9947 100644
--- a/app/src/main/res/values-hu/strings.xml
+++ b/app/src/main/res/values-hu/strings.xml
@@ -124,9 +124,6 @@
<string name="hostpref_hostname_title">Kiszolgáló</string>
<string name="hostpref_port_title">Port</string>
<string name="bind_never">Még nem csatlakozott</string>
- <string name="bind_minutes">%1$s perce</string>
- <string name="bind_hours">%1$s órája</string>
- <string name="bind_days">%1$s napja</string>
<string name="console_copy_done">%1$d bájt a vágólapra másolva</string>
<string name="console_copy_start">Érintéssel és húzással\nvagy a hanyattegér használatával\njelölje ki a másolandó területet.</string>
<string name="console_menu_close">Bezárás</string>
diff --git a/app/src/main/res/values-id/strings.xml b/app/src/main/res/values-id/strings.xml
index 4e98a79..4a9407d 100644
--- a/app/src/main/res/values-id/strings.xml
+++ b/app/src/main/res/values-id/strings.xml
@@ -124,9 +124,6 @@
<string name="hostpref_hostname_title">Host</string>
<string name="hostpref_port_title">Port</string>
<string name="bind_never">Tidak pernah terhubung</string>
- <string name="bind_minutes">%1$s menit yang lalu</string>
- <string name="bind_hours">%1$s jam yang lalu</string>
- <string name="bind_days">%1$s hari yang lalu</string>
<string name="console_copy_done">Tersalin %1$d byte ke papan-klip</string>
<string name="console_copy_start">Sentuh dan tarik\natau gunakan tombol panah\nuntuk memilih area yang akan disalin</string>
<string name="console_menu_close">Tutup</string>
diff --git a/app/src/main/res/values-is/strings.xml b/app/src/main/res/values-is/strings.xml
index a5fc71f..4558633 100644
--- a/app/src/main/res/values-is/strings.xml
+++ b/app/src/main/res/values-is/strings.xml
@@ -110,9 +110,6 @@
<string name="hostpref_hostname_title">Þjónn</string>
<string name="hostpref_port_title">Port</string>
<string name="bind_never">Aldrei tengt</string>
- <string name="bind_minutes">Fyrir %1$s mínútum síðan</string>
- <string name="bind_hours">Fyrir %1$s tímum síðan</string>
- <string name="bind_days">Fyrir %1$s dögum síðan</string>
<string name="console_copy_done">Afritaði %1$d bæti</string>
<string name="console_menu_close">Loka</string>
<string name="console_menu_copy">Afrita</string>
diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml
index 0b4e29b..22a4715 100644
--- a/app/src/main/res/values-it/strings.xml
+++ b/app/src/main/res/values-it/strings.xml
@@ -126,9 +126,6 @@
<string name="hostpref_hostname_title">Host</string>
<string name="hostpref_port_title">Porta</string>
<string name="bind_never">Mai connesso</string>
- <string name="bind_minutes">%1$s minuti fa</string>
- <string name="bind_hours">%1$s ore fa</string>
- <string name="bind_days">%1$s giorni fa</string>
<string name="console_copy_done">%1$d byte copiati</string>
<string name="console_copy_start">Tocca e trascina\noppure usa il pad direzionale\nper selezionare un\'area da copiare</string>
<string name="console_menu_close">Chiudi</string>
diff --git a/app/src/main/res/values-ja/strings.xml b/app/src/main/res/values-ja/strings.xml
index ea357f8..f4f06dd 100644
--- a/app/src/main/res/values-ja/strings.xml
+++ b/app/src/main/res/values-ja/strings.xml
@@ -139,9 +139,6 @@
<string name="hostpref_hostname_title">ホスト</string>
<string name="hostpref_port_title">ポート</string>
<string name="bind_never">未接続</string>
- <string name="bind_minutes">%1$s 分前</string>
- <string name="bind_hours">%1$s 時間前</string>
- <string name="bind_days">%1$s 日前</string>
<string name="console_copy_done">クリップボードに %1$d バイトコピーしました.</string>
<string name="console_copy_start">タッチしてドラッグ\nまたは方向パッドで\nコピー領域を選択</string>
<string name="console_menu_close">切断</string>
diff --git a/app/src/main/res/values-ko/strings.xml b/app/src/main/res/values-ko/strings.xml
index 83313ef..ae84a1a 100644
--- a/app/src/main/res/values-ko/strings.xml
+++ b/app/src/main/res/values-ko/strings.xml
@@ -117,9 +117,6 @@
<string name="hostpref_hostname_title">호스트</string>
<string name="hostpref_port_title">포트</string>
<string name="bind_never">연결된 적 없음</string>
- <string name="bind_minutes">%1$s 분 전</string>
- <string name="bind_hours">%1$s 시간 전</string>
- <string name="bind_days">%1$s 일 전</string>
<string name="console_copy_done">클립 보드에 %1$d 바이트가 복사되었습니다.</string>
<string name="console_copy_start">터치 후 드래그 또는\n방향 키로\n복사 영역을 선택</string>
<string name="console_menu_close">닫기</string>
diff --git a/app/src/main/res/values-nb/strings.xml b/app/src/main/res/values-nb/strings.xml
index 81025dc..f29fca6 100644
--- a/app/src/main/res/values-nb/strings.xml
+++ b/app/src/main/res/values-nb/strings.xml
@@ -124,9 +124,6 @@
<string name="hostpref_hostname_title">Vert</string>
<string name="hostpref_port_title">Port</string>
<string name="bind_never">Aldri tilkoblet</string>
- <string name="bind_minutes">%1$s minutt siden</string>
- <string name="bind_hours">%1$s timer siden</string>
- <string name="bind_days">%1$s dager siden</string>
<string name="console_copy_done">Kopierte %1$d bytes til utklippstavle</string>
<string name="console_copy_start">Trykk og dra, eller\nbruk styrekule for å\nvelge område å\nkopiere fra</string>
<string name="console_menu_close">Lukk</string>
diff --git a/app/src/main/res/values-nl/strings.xml b/app/src/main/res/values-nl/strings.xml
index 7d3af43..ac9125b 100644
--- a/app/src/main/res/values-nl/strings.xml
+++ b/app/src/main/res/values-nl/strings.xml
@@ -124,9 +124,6 @@
<string name="hostpref_hostname_title">Host</string>
<string name="hostpref_port_title">Poort</string>
<string name="bind_never">Nooit verbonden</string>
- <string name="bind_minutes">%1$s minuten geleden</string>
- <string name="bind_hours">%1$s uren geleden</string>
- <string name="bind_days">%1$s dagen geleden</string>
<string name="console_copy_done">%1$d bytes gekopieerd naar het klembord</string>
<string name="console_copy_start">Tik en sleep\nof gebruik directioneel pad\nom velden te selecteren omte kopiëren</string>
<string name="console_menu_close">Sluit</string>
diff --git a/app/src/main/res/values-pl/strings.xml b/app/src/main/res/values-pl/strings.xml
index 7f320b0..f370ad5 100644
--- a/app/src/main/res/values-pl/strings.xml
+++ b/app/src/main/res/values-pl/strings.xml
@@ -126,9 +126,6 @@
<string name="hostpref_hostname_title">Host</string>
<string name="hostpref_port_title">Port</string>
<string name="bind_never">Nigdy nie połączono</string>
- <string name="bind_minutes">%1$s minut temu</string>
- <string name="bind_hours">%1$s godzin temu</string>
- <string name="bind_days">%1$s dni temu</string>
<string name="console_copy_done">Skopiowano %1$d bajtów do schowka</string>
<string name="console_copy_start">Dotknij i przeciągnij\nlub użyj trackball\'a\naby zaznaczyć obszar do skopiowania</string>
<string name="console_menu_close">Zamknij</string>
diff --git a/app/src/main/res/values-pt-rBR/strings.xml b/app/src/main/res/values-pt-rBR/strings.xml
index 79f5620..de8ed75 100644
--- a/app/src/main/res/values-pt-rBR/strings.xml
+++ b/app/src/main/res/values-pt-rBR/strings.xml
@@ -126,9 +126,6 @@
<string name="hostpref_hostname_title">Anfitrião (host)</string>
<string name="hostpref_port_title">Porta</string>
<string name="bind_never">Nunca usado</string>
- <string name="bind_minutes">%1$s minutos atrás</string>
- <string name="bind_hours">%1$s horas atrás</string>
- <string name="bind_days">%1$s dias atrás</string>
<string name="console_copy_done">%1$d bytes copiados para a área de tranferência</string>
<string name="console_copy_start">Toque e arraste\nou use o trackball\npara selecionar uma área para copiar</string>
<string name="console_menu_close">Fechar</string>
diff --git a/app/src/main/res/values-pt/strings.xml b/app/src/main/res/values-pt/strings.xml
index 4aeb1a2..0f372c9 100644
--- a/app/src/main/res/values-pt/strings.xml
+++ b/app/src/main/res/values-pt/strings.xml
@@ -124,9 +124,6 @@
<string name="hostpref_hostname_title">Anfitrião</string>
<string name="hostpref_port_title">Porto</string>
<string name="bind_never">Nunca ligado</string>
- <string name="bind_minutes">%1$s minutos atrás</string>
- <string name="bind_hours">%1$s horas atrás</string>
- <string name="bind_days">%1$s dias atrás</string>
<string name="console_copy_done">Copiados %1$d bytes para a área de transferência</string>
<string name="console_copy_start">Toque e arraste\nou use as teclas direcionais\npara selecionar a área a copiar</string>
<string name="console_menu_close">Fechar</string>
diff --git a/app/src/main/res/values-ru/strings.xml b/app/src/main/res/values-ru/strings.xml
index 61e19c3..e759607 100644
--- a/app/src/main/res/values-ru/strings.xml
+++ b/app/src/main/res/values-ru/strings.xml
@@ -127,9 +127,6 @@
<string name="hostpref_hostname_title">Узел</string>
<string name="hostpref_port_title">Порт</string>
<string name="bind_never">Не подключен</string>
- <string name="bind_minutes">%1$s минут назад</string>
- <string name="bind_hours">%1$s час(ов) назад</string>
- <string name="bind_days">%1$s дней назад</string>
<string name="console_copy_done">Скопировано %1$d байт в буфер обмена</string>
<string name="console_copy_start">Для выделения области на экране используйте Touch and Drag или Directional Pad</string>
<string name="console_menu_close">Закрыть</string>
diff --git a/app/src/main/res/values-sk/strings.xml b/app/src/main/res/values-sk/strings.xml
index aa5e226..7b91870 100644
--- a/app/src/main/res/values-sk/strings.xml
+++ b/app/src/main/res/values-sk/strings.xml
@@ -124,9 +124,6 @@
<string name="hostpref_hostname_title">Hostiteľ</string>
<string name="hostpref_port_title">Port</string>
<string name="bind_never">Nikdy nepripojený</string>
- <string name="bind_minutes">Pred %1$s minútami</string>
- <string name="bind_hours">Pred %1$s hodinami</string>
- <string name="bind_days">Pred %1$s dňami</string>
<string name="console_copy_done">%1$d bajtov skopírovaných do schránky</string>
<string name="console_copy_start">Pre výber kopírovanej oblasti \nsa dotknite a ťahajte\nalebo použite smerové tlačidlo</string>
<string name="console_menu_close">Zatvoriť</string>
diff --git a/app/src/main/res/values-sl/strings.xml b/app/src/main/res/values-sl/strings.xml
index 8552716..107cfcd 100644
--- a/app/src/main/res/values-sl/strings.xml
+++ b/app/src/main/res/values-sl/strings.xml
@@ -118,9 +118,6 @@
<string name="hostpref_hostname_title">Gostitelj</string>
<string name="hostpref_port_title">Vrata</string>
<string name="bind_never">Nikoli povezani</string>
- <string name="bind_minutes">%1$s minut nazaj</string>
- <string name="bind_hours">%1$s ur nazaj</string>
- <string name="bind_days">%1$s dni nazaj</string>
<string name="console_menu_close">Zapri</string>
<string name="console_menu_copy">Kopiraj</string>
<string name="console_menu_paste">Prilepi</string>
diff --git a/app/src/main/res/values-sv/strings.xml b/app/src/main/res/values-sv/strings.xml
index 73e73da..063d586 100644
--- a/app/src/main/res/values-sv/strings.xml
+++ b/app/src/main/res/values-sv/strings.xml
@@ -124,9 +124,6 @@
<string name="hostpref_hostname_title">Värd</string>
<string name="hostpref_port_title">Port</string>
<string name="bind_never">Aldrig ansluten</string>
- <string name="bind_minutes">%1$s minuter sedan</string>
- <string name="bind_hours">%1$s timmar sedan</string>
- <string name="bind_days">%1$s dagar sedan</string>
<string name="console_copy_done">Kopierade %1$d bytes till urklippshanteraren.</string>
<string name="console_copy_start">Tryck och drag\neller använd bollen\nför att markera en yta för kopiering</string>
<string name="console_menu_close">Stäng</string>
diff --git a/app/src/main/res/values-tr/strings.xml b/app/src/main/res/values-tr/strings.xml
index 6e1527b..22e2f48 100644
--- a/app/src/main/res/values-tr/strings.xml
+++ b/app/src/main/res/values-tr/strings.xml
@@ -126,9 +126,6 @@
<string name="hostpref_hostname_title">Sunucu</string>
<string name="hostpref_port_title">Port</string>
<string name="bind_never">Daha önce bağlanılmadı</string>
- <string name="bind_minutes">%1$s dakika önce</string>
- <string name="bind_hours">%1$s saat önce</string>
- <string name="bind_days">%1$s gün önce</string>
<string name="console_copy_done">%1$d byte panoya kopyalandı</string>
<string name="console_copy_start">Kopyalanacak alanı seçmek için dokun ve sürükle ya da pad kullan</string>
<string name="console_menu_close">Kapat</string>
diff --git a/app/src/main/res/values-zh-rCN/strings.xml b/app/src/main/res/values-zh-rCN/strings.xml
index 61fc9f5..4420982 100644
--- a/app/src/main/res/values-zh-rCN/strings.xml
+++ b/app/src/main/res/values-zh-rCN/strings.xml
@@ -132,9 +132,6 @@
<string name="hostpref_hostname_title">主机</string>
<string name="hostpref_port_title">端口</string>
<string name="bind_never">尚未连接</string>
- <string name="bind_minutes">已连接 %1$s 分钟</string>
- <string name="bind_hours">已连接 %1$s 小时</string>
- <string name="bind_days">已连接 %1$s 天</string>
<string name="console_copy_done">已复制%1$d位</string>
<string name="console_copy_start">点击拖动\n或使用触摸板\n来选择要复制的区域</string>
<string name="console_menu_close">关闭</string>
diff --git a/app/src/main/res/values-zh-rTW/strings.xml b/app/src/main/res/values-zh-rTW/strings.xml
index bbfd6f0..59d0e6e 100644
--- a/app/src/main/res/values-zh-rTW/strings.xml
+++ b/app/src/main/res/values-zh-rTW/strings.xml
@@ -135,9 +135,6 @@
<string name="hostpref_hostname_title">主機</string>
<string name="hostpref_port_title">連接埠</string>
<string name="bind_never">從未連線</string>
- <string name="bind_minutes">%1$s 分鐘前連線</string>
- <string name="bind_hours">%1$s 小時前連線</string>
- <string name="bind_days">%1$s 天前連線</string>
<string name="console_copy_done">複製 %1$d 位元組到剪貼簿</string>
<string name="console_copy_start">滑動手指\n或使用軌跡球\n選擇要複製的區域</string>
<string name="console_menu_close">關閉</string>
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index 49c3af4..5f2d78a 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -321,12 +321,6 @@
<!-- Displayed to indicate a host has never been connected to. -->
<string name="bind_never">"Never connected"</string>
- <!-- The time that has elapsed since a host was connected to when it has been less than an hour. -->
- <string name="bind_minutes">"%1$s minutes ago"</string>
- <!-- The time that has elapsed since a host was connected to when it has been less than a day. -->
- <string name="bind_hours">"%1$s hours ago"</string>
- <!-- The time that has elapsed since a host was connected to when it has been a day or more. -->
- <string name="bind_days">"%1$s days ago"</string>
<!-- Message given when user copies from the terminal. -->
<string name="console_copy_done">"Copied %1$d bytes to clipboard"</string>
diff --git a/res/values-sr/strings.xml b/res/values-sr/strings.xml
index 6435472..d499a5d 100644
--- a/res/values-sr/strings.xml
+++ b/res/values-sr/strings.xml
@@ -139,9 +139,6 @@
<string name="hostpref_hostname_title">Домаћин</string>
<string name="hostpref_port_title">Порт</string>
<string name="bind_never">Никад повезиван</string>
- <string name="bind_minutes">пре %1$s минут(а)</string>
- <string name="bind_hours">пре %1$s сата(и)</string>
- <string name="bind_days">пре %1$s дан(а)</string>
<string name="console_copy_done">Копирано %1$d бајта на клипборд</string>
<string name="console_copy_start">Додирните и превуците\nили користите дирекциони контролер\nда изаберете површину за копирање</string>
<string name="console_menu_close">Затвори</string>