Change App neme to Nomad

This commit is contained in:
massimiliano 2018-08-08 10:50:23 +02:00
parent 0323868416
commit e61e231d3b
20 changed files with 94 additions and 94 deletions

View File

@ -1,2 +1,2 @@
#Sun Jun 17 10:42:35 CEST 2018
#Wed Aug 08 10:02:40 CEST 2018
gradle.version=4.8

View File

@ -13,5 +13,5 @@ Where:
## LIST OF CONTRIBUTORS
-->
**[Massimiliano](https://hub.disroot.org/channel/massimiliano)**<br/>~° Current developer of AndHub<br/>
**[Massimiliano](https://hub.disroot.org/channel/massimiliano)**<br/>~° Current developer of Nomad<br/>
**[gia vec](https://framagit.org/elvecio)**<br/>~° Italian Translator<br/>

View File

@ -1,4 +1,4 @@
# AndHub
# Nomad
`---------------`
<small>This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@ -14,10 +14,10 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see https://www.gnu.org/licenses/.</small>
`---------------`
If you want to publish AndHub in an app store, you have to change the app name (AndHub), package name & launcher icon (blue). See "7. Additional Terms" of GPL.
If you want to publish Nomad in an app store, you have to change the app name (Nomad), package name & launcher icon (blue). See "7. Additional Terms" of GPL.
You also have to provide the modifications in source code somewhere online for free. This is explicitly not about building the app and sharing with some friends, it's about app stores.
The reason is, that most app stores allow an app id just once, which would block our uploads if somebody else uploaded. Also, we want to keep control on where the app is published, and want to make sure there is no malware in it.
The F-Droid project team is explicitly allowed to publish AndHub without listed required modifications above at official F-Droid repository.
The F-Droid project team is explicitly allowed to publish Nomad without listed required modifications above at official F-Droid repository.
## Miscellaneous

View File

@ -1,4 +1,4 @@
# AndHub
# Nomad
<img src="/app/src/main/ic_launcher-web.png" align="left" width="100" hspace="10" vspace="10">
This is an unofficial webview based client for the community-run, distributed social network <b><a href="https://project.hubzilla.org/page/hubzilla/hubzilla-project">Hubzilla</a></b>.
@ -32,13 +32,13 @@ Translations can be contributed on Framagit. You can use Stringlate ([![Translat
Note that the main project members are working on this project for free during leisure time, are mostly busy with their job/university/school, and may not react or start coding immediately.
#### Resources
* Project: [Changelog](/CHANGELOG.md) | [Issues level/beginner](https://framagit.org/disroot/AndHub/issues) | [License](/LICENSE.md) | [CoC](/CODE_OF_CONDUCT.md)
* Project AndHub account: [not there yet](https://)
* Project: [Changelog](/CHANGELOG.md) | [Issues level/beginner](https://framagit.org/disroot/Nomad/issues) | [License](/LICENSE.md) | [CoC](/CODE_OF_CONDUCT.md)
* Project Nomad account: [not there yet](https://)
* Hubzilla: [Framagit](https://framagit.org/hubzilla/core) | [Web](https://project.hubzilla.org) | [Hub HQ account](https://project.hubzilla.org/channel/hubzilla)
* F-droid: Not there yet.
## Licensing
ANndHub is released under GNU GENERAL PUBLIC LICENSE (see [LICENCE](https://framagit.org/disroot/AndHub/blob/master/LICENSE.md)).
ANndHub is released under GNU GENERAL PUBLIC LICENSE (see [LICENCE](https://framagit.org/disroot/Nomad/blob/master/LICENSE.md)).
The app is licensed GPL v3. Localization files and resources (strings\*.xml) are licensed CC0 1.0.
For more licensing informations, see [`3rd party licenses`](/app/src/main/res/raw/licenses_3rd_party.md).

View File

@ -24,7 +24,7 @@ android {
vectorDrawables.useSupportLibrary = true
resValue 'string', 'app_name', "AndHub"
resValue 'string', 'app_name', "Nomad"
manifestPlaceholders = [appIcon: "@drawable/ic_launcher"]
}
@ -56,8 +56,8 @@ android {
}*/
flavorTest {
applicationId "com.dfa.AndHubTest"
resValue 'string', 'app_name', "AndHubTest"
applicationId "com.dfa.NomadTest"
resValue 'string', 'app_name', "NomadTest"
manifestPlaceholders = [appIcon: "@drawable/ic_launcher_test"]
versionCode = Integer.parseInt(new Date().format('yyMMdd'))
versionName = new Date().format('yyMMdd')

View File

@ -337,7 +337,7 @@ public class MainActivity extends ThemedActivity
// This URL seems to be called somehow, but it doesn't make sense ;)
toolbarTop.postDelayed(() -> {
Intent i = new Intent(ACTION_OPEN_EXTERNAL_URL);
i.putExtra(EXTRA_URL, "https://framagit.org/disroot/AndHub/blob/master/README.md");
i.putExtra(EXTRA_URL, "https://framagit.org/disroot/Nomad/blob/master/README.md");
LocalBroadcastManager.getInstance(getApplicationContext()).sendBroadcast(i);
}, 1000);
return;
@ -931,7 +931,7 @@ input.setMaxLines(1);
input.setSingleLine(true);
ThemeHelper.updateEditTextColor(input);
final DialogInterface.OnClickListener clickListener = new DialogInterface.OnClickListener() {
@Override //Changed to work for search by content for AndHub
@Override //Changed to work for search by content for Nomad
public void onClick(DialogInterface dialogInterface, int which) {
String query = input.getText().toString().trim().replaceAll((which == DialogInterface.BUTTON_NEGATIVE ? "\\*" : "\\#"), "");
if (query.equals("")) {

View File

@ -214,7 +214,7 @@ public class SettingsActivity extends ThemedActivity implements SharedPreference
intent.putExtra(MainActivity.URL_MESSAGE, diasporaUrlHelper.getPersonalSettingsUrl());
startActivity(intent);
getActivity().finish();
return true;/** Added addon for AndHub**/
return true;/** Added addon for Nomad**/
} else if (settings.isKeyEqual(key, R.string.pref_key__manage_addon)) {
Intent intent = new Intent(getActivity(), MainActivity.class);
intent.setAction(MainActivity.ACTION_OPEN_URL);
@ -391,7 +391,7 @@ public class SettingsActivity extends ThemedActivity implements SharedPreference
return TAG;
}
}
/** menu options AndHub **/
/** menu options Nomad **/
public static class SettingsFragmentMenuTop extends ThemedPreferenceFragment {
public static final String TAG = "com.dfa.hubzilla_android.settings.SettingsFragmentMenuTop";
@ -411,7 +411,7 @@ public static class SettingsFragmentMenuTop extends ThemedPreferenceFragment {
return TAG;
}
}
/** menu options AndHub **/
/** menu options Nomad **/
public static class SettingsFragmentProxy extends ThemedPreferenceFragment implements SharedPreferences.OnSharedPreferenceChangeListener {
public static final String TAG = "com.dfa.hubzilla_android.settings.SettingsFragmentProxy";

View File

@ -1,18 +1,18 @@
/*
This file is part of the AndHub*.
This file is part of the Nomad*.
AndHub* is free software: you can redistribute it and/or modify
Nomad* is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
AndHub* is distributed in the hope that it will be useful,
Nomad* is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with the AndHub*.
along with the Nomad*.
If not, see <http://www.gnu.org/licenses/>.
*/
@ -49,7 +49,7 @@ public class DiasporaUrlHelper {
public static final String SUBURL_TOGGLE_MOBILE = "/mobile/toggle";
public static final String SUBURL_SEARCH_TAGS = "/search?search=%23"; //edited for hub
public static final String SUBURL_SEARCH_PEOPLE = "/directory?f=1&navsearch=1&search="; //edited for hub must be better
public static final String SUBURL_SEARCH_CONTENT = "/search?search="; //added for AndHub
public static final String SUBURL_SEARCH_CONTENT = "/search?search="; //added for Nomad
// public static final String SUBURL_FOLOWED_TAGS = "/followed_tags";
public static final String SUBURL_ASPECTS = "/connections"; //edited for hub must be better
//public static final String SUBURL_STATISTICS = "/statistics";

View File

@ -13,5 +13,5 @@ Where:
## LIST OF CONTRIBUTORS
-->
**[Massimiliano](https://hub.disroot.org/channel/massimiliano)**<br/>~° Current developer of AndHub<br/>
**[Massimiliano](https://hub.disroot.org/channel/massimiliano)**<br/>~° Current developer of Nomad<br/>
**[gia vec](https://framagit.org/elvecio)**<br/>~° Italian Translator<br/>

View File

@ -1,4 +1,4 @@
# AndHub
# Nomad
`---------------`
<small>This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@ -14,10 +14,10 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see https://www.gnu.org/licenses/.</small>
`---------------`
If you want to publish AndHub in an app store, you have to change the app name (AndHub), package name & launcher icon (blue). See "7. Additional Terms" of GPL.
If you want to publish Nomad in an app store, you have to change the app name (Nomad), package name & launcher icon (blue). See "7. Additional Terms" of GPL.
You also have to provide the modifications in source code somewhere online for free. This is explicitly not about building the app and sharing with some friends, it's about app stores.
The reason is, that most app stores allow an app id just once, which would block our uploads if somebody else uploaded. Also, we want to keep control on where the app is published, and want to make sure there is no malware in it.
The F-Droid project team is explicitly allowed to publish AndHub without listed required modifications above at official F-Droid repository.
The F-Droid project team is explicitly allowed to publish Nomad without listed required modifications above at official F-Droid repository.
## Miscellaneous

View File

@ -1,4 +1,4 @@
# AndHub
# Nomad
<img src="/app/src/main/ic_launcher-web.png" align="left" width="100" hspace="10" vspace="10">
This is an unofficial webview based client for the community-run, distributed social network <b><a href="https://project.hubzilla.org/page/hubzilla/hubzilla-project">Hubzilla</a></b>.
@ -32,13 +32,13 @@ Translations can be contributed on Framagit. You can use Stringlate ([![Translat
Note that the main project members are working on this project for free during leisure time, are mostly busy with their job/university/school, and may not react or start coding immediately.
#### Resources
* Project: [Changelog](/CHANGELOG.md) | [Issues level/beginner](https://framagit.org/disroot/AndHub/issues) | [License](/LICENSE.md) | [CoC](/CODE_OF_CONDUCT.md)
* Project AndHub account: [not there yet](https://)
* Project: [Changelog](/CHANGELOG.md) | [Issues level/beginner](https://framagit.org/disroot/Nomad/issues) | [License](/LICENSE.md) | [CoC](/CODE_OF_CONDUCT.md)
* Project Nomad account: [not there yet](https://)
* Hubzilla: [Framagit](https://framagit.org/hubzilla/core) | [Web](https://project.hubzilla.org) | [Hub HQ account](https://project.hubzilla.org/channel/hubzilla)
* F-droid: Not there yet.
## Licensing
ANndHub is released under GNU GENERAL PUBLIC LICENSE (see [LICENCE](https://framagit.org/disroot/AndHub/blob/master/LICENSE.md)).
ANndHub is released under GNU GENERAL PUBLIC LICENSE (see [LICENCE](https://framagit.org/disroot/Nomad/blob/master/LICENSE.md)).
The app is licensed GPL v3. Localization files and resources (strings\*.xml) are licensed CC0 1.0.
For more licensing informations, see [`3rd party licenses`](/app/src/main/res/raw/licenses_3rd_party.md).

View File

@ -61,8 +61,8 @@
<!-- More from MainActivity -->
<string name="unable_to_load_image">No se pudo cargar la imagen</string>
<!-- Permissions -->
<string name="permissions_screenshot">Debe conceder \"Permiso de Almacenamiento de Información\" para guardar capturas de pantalla. Después debe cerrar completamente la aplicación o reiniciar el teléfono. Si usted no permite el acceso al almacenamiento pero desea utilizar la función de captura de pantalla en un momento posterior, puede conceder el permiso más adelante. Por favor vaya a: ajustes del sistema - aplicaciones - AndHub. En la sección de permisos puede conceder el \"permiso de almacenamiento de escritura\".</string>
<string name="permissions_image">Debe conceder \"Permiso de acceso al almacenamiento\" para guardar imágenes. Después, debe cerrar completamente la aplicación o reiniciar el aparato. Si usted no permite el almacenamiento pero quiere guardar imágenes en otro momento, puede conceder el permiso más tarde. Por favor abra: ajustes del sistema -aplicaciones- AndHub. En la sección de permisos puede conceder el \"permiso de almacenamiento de escritura\".</string>
<string name="permissions_screenshot">Debe conceder \"Permiso de Almacenamiento de Información\" para guardar capturas de pantalla. Después debe cerrar completamente la aplicación o reiniciar el teléfono. Si usted no permite el acceso al almacenamiento pero desea utilizar la función de captura de pantalla en un momento posterior, puede conceder el permiso más adelante. Por favor vaya a: ajustes del sistema - aplicaciones - Nomad. En la sección de permisos puede conceder el \"permiso de almacenamiento de escritura\".</string>
<string name="permissions_image">Debe conceder \"Permiso de acceso al almacenamiento\" para guardar imágenes. Después, debe cerrar completamente la aplicación o reiniciar el aparato. Si usted no permite el almacenamiento pero quiere guardar imágenes en otro momento, puede conceder el permiso más tarde. Por favor abra: ajustes del sistema -aplicaciones- Nomad. En la sección de permisos puede conceder el \"permiso de almacenamiento de escritura\".</string>
<string name="permission_denied">Permiso denegado.</string>
<string name="permission_granted_try_again">Permiso concedido. Por favor, inténtelo de nuevo.</string>
<string name="podselection__custom_pod">Hub personalizado</string>
@ -91,20 +91,20 @@
<string name="fragment_debug__pod_profile_name">Nombre de perfil del Hub: %1$s</string>
<string name="fragment_debug__pod_profile_url">Dominio del Hub:%1$s</string>
<string name="fragment_debug__toast_log_copied">Registro de depuración copiado al portapapeles</string>
<string name="fragment_about__about_text">AndHub es su complemento para navegar por la red social hubzilla. Añade características como útiles barras de herramientas y soporte para servidores proxy como la red Tor a su experiencia social.</string>
<string name="fragment_about__about_text">Nomad es su complemento para navegar por la red social hubzilla. Añade características como útiles barras de herramientas y soporte para servidores proxy como la red Tor a su experiencia social.</string>
<string name="fragment_about__contribute">¡Contribuir con código!</string>
<string name="fragment_about__contribute_text">AndHub se desarrolla libre, en el sentido de libertad, y sigue las ideas del proyecto hubzilla. Si usted quiere contribuir, ¡adelante! Actualmente somos un equipo muy pequeño, por lo que ¡agradeceríamos mucho cualquier tipo de ayuda!</string>
<string name="fragment_about__contribute_text">Nomad se desarrolla libre, en el sentido de libertad, y sigue las ideas del proyecto hubzilla. Si usted quiere contribuir, ¡adelante! Actualmente somos un equipo muy pequeño, por lo que ¡agradeceríamos mucho cualquier tipo de ayuda!</string>
<string name="fragment_about__contribute_button">Obtener el código fuente</string>
<string name="fragment_about__translate">¡Traducir la aplicación!</string>
<string name="fragment_about__translate_text">¿La aplicación no está disponible en su idioma? ¡Usted puede cambiar eso! ¿Por qué no nos ayuda traduciéndola? Utilizamos la plataforma crowdin para permitir a cualquiera traducir la aplicación.</string>
<string name="fragment_about__translate_button">Permítanme traducir</string>
<string name="fragment_about__feedback">Danos tu opinión!</string>
<string name="fragment_about__feedback_text">AndHub todavía está en desarrollo, así que si tiene sugerencias o cualquier tipo de comentarios, ¡utilice nuestro gestor de errores para hacérnoslo saber!</string>
<string name="fragment_about__feedback_text">Nomad todavía está en desarrollo, así que si tiene sugerencias o cualquier tipo de comentarios, ¡utilice nuestro gestor de errores para hacérnoslo saber!</string>
<string name="fragment_about__feedback_button">Reporte de errores</string>
<string name="fragment_about__spread_the_word">¡Corre la voz!</string>
<string name="fragment_about__spread_the_word_text">¡Hable a sus amigos y familiares acerca de hubzilla y #AndHub! ¿Por qué no difunde sus experiencias? ¡Nos encantaría escucharle!</string>
<string name="fragment_about__spread_the_word_text">¡Hable a sus amigos y familiares acerca de hubzilla y #Nomad! ¿Por qué no difunde sus experiencias? ¡Nos encantaría escucharle!</string>
<string name="fragment_about__spread_the_word_button">Compartir la aplicación</string>
<string name="fragment_about__spread_the_word_share_text">¡Hey! ¡Mira #AndHub! %1$s</string>
<string name="fragment_about__spread_the_word_share_text">¡Hey! ¡Mira #Nomad! %1$s</string>
<!-- License & help (large amount of text) -->
<string name="fragment_license__maintainers">Mantenimiento</string>
<string name="fragment_license__maintainers_text">Esta aplicación está siendo desarrollada y mantenida por &lt; br &gt;&lt; br &gt;%1$s</string>
@ -168,7 +168,7 @@
<string name="pref_desc__http_proxy_load_tor_preset">Cargar la configuración del proxy de Tor (Orbot) HTTP Proxy</string>
<string name="pref_title__sub_proxy">Proxy</string>
<string name="pref_title__proxy_enabled">Activar proxy</string>
<string name="pref_desc__http_proxy_enabled">Tráfico del proxy de AndHub evadiendo el cortafuegos.\nPuede requerir reiniciar. Puede no funcionar en algunos teléfonos.</string>
<string name="pref_desc__http_proxy_enabled">Tráfico del proxy de Nomad evadiendo el cortafuegos.\nPuede requerir reiniciar. Puede no funcionar en algunos teléfonos.</string>
<string name="pref_title__http_proxy_host">Host</string>
<string name="pref_title__http_proxy_port">Puerto</string>
<string name="toast__proxy_disabled__restart_required">La aplicación necesita reiniciar para deshabilitar el uso de proxy</string>
@ -189,7 +189,7 @@
<string name="pref_desc__intellihide_toolbars">Ocultar barras de herramientas superior e inferior automáticamente mientras se desplaza</string>
<string name="pref_title__intellihide_toolbars">Barra de herramientas Intellihide</string>
<string name="pref_title__append_shared_via_app">Añadir compartido por aviso</string>
<string name="pref_desc__append_shared_via_app">Agregar una referencia a esta aplicación en los textos compartidos: [vía #AndHub]</string>
<string name="pref_desc__append_shared_via_app">Agregar una referencia a esta aplicación en los textos compartidos: [vía #Nomad]</string>
<!-- More -->
<string name="pref_title__sub_miscelaneous">Diverso</string>
<string name="pref_title__wipe_settings">Reinicio completo</string>

View File

@ -64,11 +64,11 @@
<string name="permissions_screenshot">Devi garantire il permesso di accesso alla memoria per poter salvare gli screenshot. Dopodiché devi
chiudere completamente l\'app o riavviare il dispositivo. Se non permetti l\'accesso alla memoria ma vuoi usare la
funzione degli screenshot più avanti, puoi garantire il permesso successivamente. Vai su: Impostazioni - App -
AndHub. Nella sezione dei permessi puoi garantire il permesso per la scrittura sul dispositivo.</string>
Nomad. Nella sezione dei permessi puoi garantire il permesso per la scrittura sul dispositivo.</string>
<string name="permissions_image">Devi concedere il permesso di accesso alla memoria per poter salvare e caricare le immagini. Dopodiché devi
chiudere completamente l\'app o riavviare il dispositivo. Se non permetti l\'accesso alla memoria ma vuoi
salvare le immagini più avanti, puoi concedere il permesso successivamente. Vai su: Impostazioni - App -
AndHub. Nella sezione dei permessi puoi concedere il permesso per la scrittura sul dispositivo.</string>
Nomad. Nella sezione dei permessi puoi concedere il permesso per la scrittura sul dispositivo.</string>
<string name="permission_denied">Permesso negato.</string>
<string name="permission_granted_try_again">Permesso concesso. Si prega di riprovare.</string>
<string name="podselection__custom_pod">Hub personalizzato</string>
@ -97,20 +97,20 @@
<string name="fragment_debug__pod_profile_name">Hub alias: %1$s</string>
<string name="fragment_debug__pod_profile_url">Dominio Hub: %1$s</string>
<string name="fragment_debug__toast_log_copied">Log di debug copiato negli appunti</string>
<string name="fragment_about__about_text">AndHub è la tua app per l\'esplorazione del social network Hubzilla. Aggiunge funzionalità, quali un\'utile barra degli strumenti e il supporto per i server proxy come la rete Tor, alla vostra esperienza social.</string>
<string name="fragment_about__about_text">Nomad è la tua app per l\'esplorazione del social network Hubzilla. Aggiunge funzionalità, quali un\'utile barra degli strumenti e il supporto per i server proxy come la rete Tor, alla vostra esperienza social.</string>
<string name="fragment_about__contribute">Contribuisci al codice!</string>
<string name="fragment_about__contribute_text">AndHub è sviluppato liberamente e segue le idee del progetto Hubzilla. Se vuoi contribuire sei il benvenuto! Attualmente siamo un team molto piccolo, quindi apprezziamo qualsiasi tipo di aiuto!</string>
<string name="fragment_about__contribute_text">Nomad è sviluppato liberamente e segue le idee del progetto Hubzilla. Se vuoi contribuire sei il benvenuto! Attualmente siamo un team molto piccolo, quindi apprezziamo qualsiasi tipo di aiuto!</string>
<string name="fragment_about__contribute_button">Ottieni il codice sorgente</string>
<string name="fragment_about__translate">Traduci l\'app!</string>
<string name="fragment_about__translate_text">L\'app non è disponibile nella tua lingua? Si può cambiare! Perché non ci aiuti a tradurlo? Utilizziamo la piattaforma Crowdin per permettere a chiunque di tradurre l\'app.</string>
<string name="fragment_about__translate_button">Fammi tradurre</string>
<string name="fragment_about__feedback">Lascia un feedback!</string>
<string name="fragment_about__feedback_text">AndHub è ancora in sviluppo, quindi se avete suggerimenti o qualsiasi tipo di feedback, utilizza lo strumento di segnalazione dei bug per dirci la tua!</string>
<string name="fragment_about__feedback_text">Nomad è ancora in sviluppo, quindi se avete suggerimenti o qualsiasi tipo di feedback, utilizza lo strumento di segnalazione dei bug per dirci la tua!</string>
<string name="fragment_about__feedback_button">Segnala un bug</string>
<string name="fragment_about__spread_the_word">Passaparola!</string>
<string name="fragment_about__spread_the_word_text">Dì ai tuoi amici e familiari di Hubzilla e di #AndHub! Perché non scrivi un post sulla tua esperienza? Ci piacerebbe sentire cosa ne pensate!</string>
<string name="fragment_about__spread_the_word_text">Dì ai tuoi amici e familiari di Hubzilla e di #Nomad! Perché non scrivi un post sulla tua esperienza? Ci piacerebbe sentire cosa ne pensate!</string>
<string name="fragment_about__spread_the_word_button">Condividi l\'app</string>
<string name="fragment_about__spread_the_word_share_text">Ehi! Scopri #AndHub! %1$s</string>
<string name="fragment_about__spread_the_word_share_text">Ehi! Scopri #Nomad! %1$s</string>
<!-- License & help (large amount of text) -->
<string name="fragment_license__maintainers">Manutentori</string>
<string name="fragment_license__maintainers_text">Quest\'app è attualmente sviluppata e mantenuta da &lt;br&gt;&lt;br&gt;%1$s</string>
@ -174,7 +174,7 @@
<string name="pref_desc__http_proxy_load_tor_preset">Carica le impostazioni del proxy per il proxy HTTP di Tor (Orbot)</string>
<string name="pref_title__sub_proxy">Proxy</string>
<string name="pref_title__proxy_enabled">Attiva proxy</string>
<string name="pref_desc__http_proxy_enabled">Usa il proxy con i dati di AndHub per eludere i firewall.\nPotrebbe essere necessario il riavvio</string>
<string name="pref_desc__http_proxy_enabled">Usa il proxy con i dati di Nomad per eludere i firewall.\nPotrebbe essere necessario il riavvio</string>
<string name="pref_title__http_proxy_host">Host</string>
<string name="pref_title__http_proxy_port">Porta</string>
<string name="toast__proxy_disabled__restart_required">E\' necessario riavviare l\'app per disattivare l\'utilizzo del proxy</string>
@ -195,7 +195,7 @@
<string name="pref_desc__intellihide_toolbars">Nascondi barre superiori e inferiori automaticamente quando scrolli</string>
<string name="pref_title__intellihide_toolbars">Barre che si nascondono intelligentemente</string>
<string name="pref_title__append_shared_via_app">Aggiungi avviso dell\'app</string>
<string name="pref_desc__append_shared_via_app">Aggiungere un riferimento a questa applicazione ai testi condivisi: [via #AndHub]</string>
<string name="pref_desc__append_shared_via_app">Aggiungere un riferimento a questa applicazione ai testi condivisi: [via #Nomad]</string>
<!-- More -->
<string name="pref_title__sub_miscelaneous">Vario</string>
<string name="pref_title__wipe_settings">Reset completo</string>

View File

@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- App - AppName specific -->
<string name="andhub" translatable="false">AndHub</string><!-- Edited for AndHub -->
<string name="app_subtitle" translatable="false">Your companion app for browsing Hubzilla</string><!-- Edited for AndHub -->
<string name="andhub" translatable="false">Nomad</string><!-- Edited for Nomad -->
<string name="app_subtitle" translatable="false">Your companion app for browsing Hubzilla</string><!-- Edited for Nomad -->
<string name="shared_via_app" translatable="false">
\n\n\n_________________________\n
**Tags:** #AndHub \n\n
*via [AndHub](../channel/disroot) client [(Source)](https://framagit.org/disroot/AndHub)</string><!-- Edited for AndHub -->
**Tags:** #Nomad \n\n
*via [Nomad](../channel/disroot) client [(Source)](https://framagit.org/disroot/Nomad)</string><!-- Edited for Nomad -->
<string name="tor" translatable="false">Tor</string>
@ -29,9 +29,9 @@
<string name="fragment_licesen__misc_leafpic_link" translatable="false">https://github.com/gsantner/dandelion</string>
<string name="fragment_about__fdroid_link" translatable="false">https://f-droid.org/repository/browse/?fdid=com.dfa.hubzilla_android</string>
<string name="fragment_about__about" translatable="false">@string/app_name</string>
<string name="fragment_about__contribute_link" translatable="false">https://framagit.org/disroot/AndHub</string>
<string name="fragment_about__translate_link" translatable="false">https://framagit.org/disroot/AndHub</string>
<string name="fragment_About__feedback_link" translatable="false">https://framagit.org/disroot/AndHub/issues</string>
<string name="fragment_about__contribute_link" translatable="false">https://framagit.org/disroot/Nomad</string>
<string name="fragment_about__translate_link" translatable="false">https://framagit.org/disroot/Nomad</string>
<string name="fragment_About__feedback_link" translatable="false">https://framagit.org/disroot/Nomad/issues</string>
@ -117,7 +117,7 @@
<string name="pref_key__visibility_nav__statistics" translatable="false">pref_key__visibility_nav__statistics</string>
<string name="pref_key__visibility_nav__toggle_mobile_desktop" translatable="false">pref_key__visibility_nav__toggle_mobile_desktop</string> -->
<string name="pref_key__visibility_nav__dandelion_account" translatable="false">pref_key__visibility_nav__andhub_account</string>
<string name="pref_key__visibility_nav__events" translatable="false">pref_key__visibility_nav__events</string><!-- added for AndHub -->
<string name="pref_key__visibility_nav__events" translatable="false">pref_key__visibility_nav__events</string><!-- added for Nomad -->
<string name="pref_key__podprofile_avatar_url" translatable="false">pref_key__phubprofile_avatar_url</string>
<string name="pref_key__podprofile_name" translatable="false">pref_key__hubprofile_name</string>
<string name="pref_key__podprofile_id" translatable="false">pref_key__hubprofile_id</string>

View File

@ -9,19 +9,19 @@
<string name="settings">Settings</string>
<string name="notifications">Notifications</string>
<string name="conversations">Conversations</string>
<string name="pubstream">Public stream</string><!-- added for AndHub -->
<string name="home">Channel home</string><!-- added for AndHub -->
<string name="pubstream">Public stream</string><!-- added for Nomad -->
<string name="home">Channel home</string><!-- added for Nomad -->
<string name="stream">Stream</string>
<string name="profile">Profile</string>
<string name="aspects">aspects</string>
<string name="activities">Network Activity</string><!-- edited for AndHub -->
<string name="activities">Network Activity</string><!-- edited for Nomad -->
<string name="liked">Liked</string>
<string name="commented">Commented</string>
<string name="mentions">Mentions</string>
<string name="public_">Public</string>
<string name="search">Search</string>
<string name="contacts">Connections</string><!-- edited for AndHub -->
<string name="directory">Directory</string><!-- added for AndHub -->
<string name="contacts">Connections</string><!-- edited for Nomad -->
<string name="directory">Directory</string><!-- added for Nomad -->
<string name="changelog">Changelog</string>
<string name="statistics">Statistics</string>
@ -36,7 +36,7 @@
<!-- Hub Activity -->
<string name="podlist_error">Error: Could not retrieve list of Hubs!</string><!-- edited for AndHub -->
<string name="podlist_error">Error: Could not retrieve list of Hubs!</string><!-- edited for Nomad -->
<string name="no_internet">Sorry, you must be connected to the Internet to proceed</string>
<string name="confirmation">Confirmation</string>
@ -47,9 +47,9 @@
<string name="nav_menu_more">More</string>
<string name="nav_help_license">About | Help</string>
<string name="nav_followed_tags">Followed Tags</string>
<string name="nav_public_activities">Public Stream</string><!-- edited for AndHub -->
<string name="nav_public_activities">Public Stream</string><!-- edited for Nomad -->
<string name="nav_reports">Reports</string>
<string name="nav_events">Events</string><!-- added for AndHub -->
<string name="nav_events">Events</string><!-- added for Nomad -->
<string name="share__share_link_as_text">Share link as text</string>
<string name="share__share_screenshot">Share screenshot of webpage</string>
@ -65,7 +65,7 @@
<string name="action_exit_app">Exit app</string>
<string name="action_toggle_desktop_page">Toggle mobile/desktop view</string>
<string name="action_share_dotdotdot">Share…</string>
<string name="action_suggestions">Channel suggestions</string><!-- added for AndHub -->
<string name="action_suggestions">Channel suggestions</string><!-- added for Nomad -->
<string name="search_alert_tag">by tags</string>
@ -88,17 +88,17 @@
<string name="permissions_screenshot">You must grant \"Access Storage Permission\" to save screenshots. After that you should
completely close the app or restart the device. If you don\'t permit the storage access but want to use the
screenshot function at a later time, you can grant the permission later. Please open then: systemsettings - apps -
AndHub. In the permissions section you can grant the \"write storage permission\".</string><!-- edited for AndHub -->
Nomad. In the permissions section you can grant the \"write storage permission\".</string><!-- edited for Nomad -->
<string name="permissions_image">You must grant \"Access Storage Permission\" to save/upload images. After that you should
completely close the app or restart the device. If you don\'t permit the storage access but want to save images
at a later time, you can grant the permission later. Please open then: systemsettings - apps -
AndHub. In the permissions section you can grant the \"write storage permission\".</string><!-- edited for AndHub -->
Nomad. In the permissions section you can grant the \"write storage permission\".</string><!-- edited for Nomad -->
<string name="permission_denied">Permission denied.</string>
<string name="permission_granted_try_again">Permission granted. Please try again.</string>
<string name="podselection__custom_pod">Custom Hub</string><!-- edited for AndHub -->
<string name="pod_name">Hub name</string><!-- edited for AndHub -->
<string name="podselection__custom_pod">Custom Hub</string><!-- edited for Nomad -->
<string name="pod_name">Hub name</string><!-- edited for Nomad -->
<string name="http_protocol">Protocol</string>
<string name="pod_address">Hub address</string><!-- edited for AndHub -->
<string name="pod_address">Hub address</string><!-- edited for Nomad -->
<string name="missing_value">Missing value</string>
<string name="jump_to_last_visited_timestamp_in_stream">Jump to last visited page in stream?</string>
<string name="pref_summary__is_statusbar_hidden">Hide statusbar at main view</string>
@ -115,11 +115,11 @@
<!-- Category Titles -->
<string name="pref_cat__visuals">Appearance</string>
<string name="pref_cat__network">Network</string>
<string name="pref_cat__pod_settings">Hub settings</string><!-- edited for AndHub -->
<string name="pref_cat__pod_settings">Hub settings</string><!-- edited for Nomad -->
<string name="pref_cat__operability">Operability</string>
<!-- Visuals -->
<!-- Visibility menu AndHub -->
<!-- Visibility menu Nomad -->
<string name="pref_title__menu_vis">Menu visibility</string>
<string name="pref_desc__menu_vis">Control visibility of entries in the menu</string>
<!-- Navigiation Slider -->
@ -137,7 +137,7 @@
<string name="pref_title__accent_color">Accent Color</string>
<string name="pref_desc__accent_color">Color of the progressbar</string>
<string name="pref_title__primary_color__amoled_mode">AMOLED Mode</string>
<string name="pref_desc__primary_color__amoled_mode">Override colors with AMOLED display friendly black at many parts of the app. You need to restart to toggle this setting. To browse Hubzilla in dark you also need to activate the Dark theme, which can be found in your personal Hubzilla account settings.</string><!-- edited for AndHub -->
<string name="pref_desc__primary_color__amoled_mode">Override colors with AMOLED display friendly black at many parts of the app. You need to restart to toggle this setting. To browse Hubzilla in dark you also need to activate the Dark theme, which can be found in your personal Hubzilla account settings.</string><!-- edited for Nomad -->
<!-- Notifications dropdown -->
<string name="pref_title__extended_notifications">Extended Notifications</string>
@ -171,7 +171,7 @@
<string name="pref_desc__http_proxy_load_tor_preset">Load proxy settings for Tor (Orbot) HTTP Proxy</string>
<string name="pref_title__sub_proxy">Proxy</string>
<string name="pref_title__proxy_enabled">Enable Proxy</string>
<string name="pref_desc__http_proxy_enabled">Proxy AndHub\'s traffic to circumvent firewalls.\nMay require restart. This might not work on some phones.</string><!-- edited for AndHub -->
<string name="pref_desc__http_proxy_enabled">Proxy Nomad\'s traffic to circumvent firewalls.\nMay require restart. This might not work on some phones.</string><!-- edited for Nomad -->
<string name="pref_title__http_proxy_host">Host</string>
<string name="pref_title__http_proxy_port">Port</string>
<string name="toast__proxy_disabled__restart_required">App needs to restart to disable proxy usage</string>
@ -183,16 +183,16 @@
<!-- Hubzilla Settings -->
<string name="pref_title__personal_settings">Personal settings</string>
<string name="pref_desc__personal_settings">Open your Hubzilla account settings</string><!-- edited for AndHub -->
<string name="pref_desc__manage_contacts">Manage your connections list</string><!-- edited for AndHub -->
<string name="pref_title__manage_addon">Manage addons</string><!-- added for AndHub -->
<string name="pref_desc__manage_addon">Manage your addon settings</string><!-- added for AndHub -->
<string name="pref_desc__personal_settings">Open your Hubzilla account settings</string><!-- edited for Nomad -->
<string name="pref_desc__manage_contacts">Manage your connections list</string><!-- edited for Nomad -->
<string name="pref_title__manage_addon">Manage addons</string><!-- added for Nomad -->
<string name="pref_desc__manage_addon">Manage your addon settings</string><!-- added for Nomad -->
<string name="pref_title__manage_tags">Manage Hashtags</string>
<string name="pref_desc__manage_tags">Unfollow already followed hashtags</string>
<string name="pref_title__change_account">Change Account</string>
<string name="pref_desc__change_account">Erase local session data and switch to another Hubzilla Hub/account</string><!-- edited for AndHub -->
<string name="pref_desc__change_account">Erase local session data and switch to another Hubzilla Hub/account</string><!-- edited for Nomad -->
<string name="pref_warning__change_account">This will erase all cookies and session data. Do you really want to change your account?</string>
<string name="pref_title__clear_cache">Clear cache</string>
@ -203,7 +203,7 @@
<string name="pref_title__intellihide_toolbars">Intellihide Toolbars</string>
<string name="pref_title__append_shared_via_app">Append shared-by-notice</string>
<string name="pref_desc__append_shared_via_app">Append a reference to this app to shared texts: [via #AndHub]</string><!-- edited for AndHub -->
<string name="pref_desc__append_shared_via_app">Append a reference to this app to shared texts: [via #Nomad]</string><!-- edited for Nomad -->
<!-- More -->
<string name="pref_title__sub_miscelaneous">Miscellaneous</string>
@ -211,7 +211,7 @@
<string name="pref_title__wipe_settings">Full Reset</string>
<string name="pref_desc__wipe_settings">Locally wipe all settings related to the app and log out from all accounts</string>
<string name="dialog_content__wipe_settings">This will reset all changed settings of the app to their default values and log you out from all Hubs. Your downloaded images will stay untouched. Are you sure you want to proceed?</string><!-- edited for AndHub -->
<string name="dialog_content__wipe_settings">This will reset all changed settings of the app to their default values and log you out from all Hubs. Your downloaded images will stay untouched. Are you sure you want to proceed?</string><!-- edited for Nomad -->
<string name="pref_desc__adblock_enable">Enable basic AdBlocker. Ads may be included e.g. in embedded views</string>
<string name="pref_title__adblock_enable">Block advertisements</string>
@ -222,21 +222,21 @@
<string name="about_activity__title_debug_info">Debugging</string>
<string name="fragment_debug__section_app">Application</string>
<string name="fragment_debug__section_device">Device</string>
<string name="fragment_debug__section_pod">Hubzilla Hub</string><!-- edited for AndHub -->
<string name="fragment_debug__section_pod">Hubzilla Hub</string><!-- edited for Nomad -->
<string name="fragment_debug__section_log">Debug Log</string>
<string name="fragment_debug__section_log_spam">Debug Log (Verbose)</string>
<string name="fragment_debug__app_version">App Version: %1$s</string>
<string name="fragment_debug__android_version">Android Version: %1$s</string>
<string name="fragment_debug__device_name">Device Name: %1$s</string>
<string name="fragment_debug__app_codename">Codename: %1$s</string>
<string name="fragment_debug__pod_profile_name">Hub Profile Name: %1$s</string><!-- edited for AndHub -->
<string name="fragment_debug__pod_profile_url">Hub Domain: %1$s</string><!-- edited for AndHub -->
<string name="fragment_debug__pod_profile_name">Hub Profile Name: %1$s</string><!-- edited for Nomad -->
<string name="fragment_debug__pod_profile_url">Hub Domain: %1$s</string><!-- edited for Nomad -->
<string name="fragment_debug__toast_log_copied">Debug log copied to clipboard</string>
<string name="fragment_about__about_text">AndHub is your companion app for browsing the social network Hubzilla. It adds features like useful toolbars and support for proxy servers like the Tor Network to your social experience.</string><!-- edited for AndHub -->
<string name="fragment_about__about_text">Nomad is your companion app for browsing the social network Hubzilla. It adds features like useful toolbars and support for proxy servers like the Tor Network to your social experience.</string><!-- edited for Nomad -->
<string name="fragment_about__contribute">Contribute Code!</string>
<string name="fragment_about__contribute_text">AndHub is developed free as in Freedom and follows the ideas of the Hubzilla project. If you want to contribute, go ahead! Currently we are a very small team, so we greatly appreciate any kind of help!</string><!-- edited for AndHub -->
<string name="fragment_about__contribute_text">Nomad is developed free as in Freedom and follows the ideas of the Hubzilla project. If you want to contribute, go ahead! Currently we are a very small team, so we greatly appreciate any kind of help!</string><!-- edited for Nomad -->
<string name="fragment_about__contribute_button">Get the source</string>
<string name="fragment_about__translate">Translate the App!</string>
@ -244,13 +244,13 @@
<string name="fragment_about__translate_button">Let me translate</string>
<string name="fragment_about__feedback">Give Feedback!</string>
<string name="fragment_about__feedback_text">AndHub is still in development, so if you have suggestions or any kind of feedback, please use our bug tracker to let us know!</string><!-- edited for AndHub -->
<string name="fragment_about__feedback_text">Nomad is still in development, so if you have suggestions or any kind of feedback, please use our bug tracker to let us know!</string><!-- edited for Nomad -->
<string name="fragment_about__feedback_button">Report Bugs</string>
<string name="fragment_about__spread_the_word">Spread the word!</string>
<string name="fragment_about__spread_the_word_text">Tell your friends and family about Hubzilla and #AndHub! Why don\'t you blog about your experiences? We\'d love to hear from you!</string><!-- edited for AndHub -->
<string name="fragment_about__spread_the_word_text">Tell your friends and family about Hubzilla and #Nomad! Why don\'t you blog about your experiences? We\'d love to hear from you!</string><!-- edited for Nomad -->
<string name="fragment_about__spread_the_word_button">Share the app</string>
<string name="fragment_about__spread_the_word_share_text">Hey! Check out #AndHub! %1$s</string><!-- edited for AndHub -->
<string name="fragment_about__spread_the_word_share_text">Hey! Check out #Nomad! %1$s</string><!-- edited for Nomad -->
<!-- License & help (large amount of text) -->
@ -262,7 +262,7 @@
<string name="fragment_license__license_button">GNU GPLv3+ License</string>
<string name="fragment_license__thirdparty_libs">Third-Party Libraries</string>
<string name="fragment_license__thirdparty_libs_text">The following libraries are used:</string>
<string name="fragment_license__misc_leafpic">We took some inspiration and code from Dandelion*. Go check it out, it\'s free software as well!</string><!-- edited for AndHub -->
<string name="fragment_license__misc_leafpic">We took some inspiration and code from Dandelion*. Go check it out, it\'s free software as well!</string><!-- edited for Nomad -->
<string name="fragment_license__misc_leafpic_button">Tell me more</string>
</resources>

View File

@ -16,7 +16,7 @@
android:key="@string/pref_key__cat_nav_slider"
android:summary="@string/pref_desc__sub_nav_slider"
android:title="@string/pref_title__sub_nav_slider"/>
<!-- AndHub menu visibility options-->
<!-- Nomad menu visibility options-->
<Preference
android:icon="@drawable/ic_visibility_on_black_24px"
android:key="@string/pref_key__cat_menu_vis"
@ -113,7 +113,7 @@
android:key="@string/pref_key__personal_settings"
android:summary="@string/pref_desc__personal_settings"
android:title="@string/pref_title__personal_settings"/>
<!-- added addon on AndHub -->
<!-- added addon on Nomad -->
<Preference
android:icon="@drawable/ic_addon_black_24px"
android:key="@string/pref_key__manage_addon"

View File

@ -1,4 +1,4 @@
<b>AndHub</b> is a client for the community-run, distributed social network Hubzilla.
<b>Nomad</b> is a client for the community-run, distributed social network Hubzilla.
It adds useful features to your networking experience:
⚡ Quick access to most Hubzilla features

View File

@ -1 +1 @@
AndHub
Nomad