added dialogs for additional apps

This commit is contained in:
massimiliano 2018-11-18 13:01:02 +01:00
parent 2cd51f5a62
commit 761076bf0d
12 changed files with 200 additions and 34 deletions

View File

@ -6,8 +6,8 @@ android {
applicationId "org.disroot.disrootapp"
minSdkVersion 15
targetSdkVersion 28
versionCode 11
versionName "1.0.1"
versionCode 12
versionName "1.0.2"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {

View File

@ -165,14 +165,17 @@ public class MainActivity extends AppCompatActivity implements View.OnLongClickL
});
button.setOnClickListener(new View.OnClickListener() {
public void onClick(View arg0) {
String k9 = "com.fsck.k9";
Intent mail = getPackageManager().getLaunchIntentForPackage(k9);
if(mail == null) {
mail = new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id="+k9));
}//first time tap check
//first time tap check
if (firstStart.getBoolean("firsttap", true)){
showFirstTap();
firstStart.edit().putBoolean("firsttap", false).apply();
return;
}
String k9 = "com.fsck.k9";
Intent mail = getPackageManager().getLaunchIntentForPackage(k9);
if(mail == null) {
showMailDialog();
return;
}
else startActivity(mail);
}
@ -190,14 +193,17 @@ public class MainActivity extends AppCompatActivity implements View.OnLongClickL
});
button.setOnClickListener(new View.OnClickListener() {
public void onClick(View arg0) {
String nc = "com.nextcloud.client";
Intent cloud = getPackageManager().getLaunchIntentForPackage(nc);
if(cloud == null) {
cloud = new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id="+nc));
}//first time tap check
//first time tap check
if (firstStart.getBoolean("firsttap", true)){
showFirstTap();
firstStart.edit().putBoolean("firsttap", false).apply();
return;
}
String nc = "com.nextcloud.client";
Intent cloud = getPackageManager().getLaunchIntentForPackage(nc);
if(cloud == null) {
showCloudDialog();
return;
}
else startActivity(cloud);
}
@ -214,18 +220,20 @@ public class MainActivity extends AppCompatActivity implements View.OnLongClickL
});
button.setOnClickListener(new View.OnClickListener() {
public void onClick(View arg0) {
String Diaspora = "com.github.dfa.diaspora_android";
Intent pod = getPackageManager().getLaunchIntentForPackage(Diaspora);
if(pod == null) {
pod = new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id="+Diaspora));
}//first time tap check
//first time tap check
if (firstStart.getBoolean("firsttap", true)){
showFirstTap();
firstStart.edit().putBoolean("firsttap", false).apply();
return;
}
String Diaspora = "com.github.dfa.diaspora_android";
Intent pod = getPackageManager().getLaunchIntentForPackage(Diaspora);
if(pod == null) {
showDiaDialog();
return;
}
else startActivity(pod);
}
});
button = findViewById(R.id.ForumBtn);//ForumBtn
@ -273,7 +281,8 @@ public class MainActivity extends AppCompatActivity implements View.OnLongClickL
return;
}
if((xmpp1 == null)&&(xmpp2 == null)) {
xmpp1 = new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id="+Conversations));
showChatDialog();
return;
}
/* if((xmpp1 == null)&&(xmpp2 != null)) { */
if((xmpp1 == null)&&(xmpp2 != null)) {//if(xmpp1 == null) {
@ -309,15 +318,17 @@ public class MainActivity extends AppCompatActivity implements View.OnLongClickL
});
button.setOnClickListener(new View.OnClickListener() {
public void onClick(View arg0) {
String Padland = "com.mikifus.padland";
Intent pad = getPackageManager().getLaunchIntentForPackage(Padland);
if(pad == null) {
pad = new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id="+Padland));
}
//first time tap check
if (firstStart.getBoolean("firsttap", true)){
showFirstTap();
firstStart.edit().putBoolean("firsttap", false).apply();
return;
}
String Padland = "com.mikifus.padland";
Intent pad = getPackageManager().getLaunchIntentForPackage(Padland);
if(pad == null) {
showPAdDialog();
return;
}
else startActivity(pad);
}
@ -659,6 +670,25 @@ public class MainActivity extends AppCompatActivity implements View.OnLongClickL
});
builder.show();
}
private void showMailDialog(){
final ScrollView dashboard = findViewById(R.id.dashboard);
AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
builder.setCancelable(false);
builder.setTitle(R.string.DiaInstallTitle);
builder.setMessage(getString(R.string.MailDialog));
builder.setPositiveButton(R.string.global_install, new DialogInterface.OnClickListener() {
String k9 = "com.fsck.k9";
Intent mail = getPackageManager().getLaunchIntentForPackage(k9);
@Override
public void onClick(DialogInterface dialog, int which) {
mail = new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + k9));
startActivity(mail);
}
});
builder.setNegativeButton(R.string.global_cancel , null);
builder.show();
}
//Cloud Info
private void showCloudInfo() {
final ScrollView dashboard = findViewById(R.id.dashboard);
@ -677,6 +707,25 @@ public class MainActivity extends AppCompatActivity implements View.OnLongClickL
});
builder.show();
}
private void showCloudDialog(){
final ScrollView dashboard = findViewById(R.id.dashboard);
AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
builder.setCancelable(false);
builder.setTitle(R.string.DiaInstallTitle);
builder.setMessage(getString(R.string.CloudDialog));
builder.setPositiveButton(R.string.global_install, new DialogInterface.OnClickListener() {
String nc = "com.nextcloud.client";
Intent cloud = getPackageManager().getLaunchIntentForPackage(nc);
@Override
public void onClick(DialogInterface dialog, int which) {
cloud = new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + nc));
startActivity(cloud);
}
});
builder.setNegativeButton(R.string.global_cancel , null);
builder.show();
}
//Diaspora info
private void showDiaInfo() {
final ScrollView dashboard = findViewById(R.id.dashboard);
@ -695,6 +744,24 @@ public class MainActivity extends AppCompatActivity implements View.OnLongClickL
});
builder.show();
}
private void showDiaDialog(){
final ScrollView dashboard = findViewById(R.id.dashboard);
AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
builder.setCancelable(false);
builder.setTitle(R.string.DiaInstallTitle);
builder.setMessage(getString(R.string.DiasporaDialog));
builder.setPositiveButton(R.string.global_install, new DialogInterface.OnClickListener() {
String Diaspora = "com.github.dfa.diaspora_android";
Intent pod = getPackageManager().getLaunchIntentForPackage(Diaspora);
@Override
public void onClick(DialogInterface dialog, int which) {
pod = new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + Diaspora));
startActivity(pod);
}
});
builder.setNegativeButton(R.string.global_cancel , null);
builder.show();
}
private void showForumInfo() {
final ScrollView dashboard = findViewById(R.id.dashboard);
@ -765,6 +832,24 @@ public class MainActivity extends AppCompatActivity implements View.OnLongClickL
});
builder.show();
}
private void showChatDialog(){
final ScrollView dashboard = findViewById(R.id.dashboard);
AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
builder.setCancelable(false);
builder.setTitle(R.string.DiaInstallTitle);
builder.setMessage(getString(R.string.ChatDialog));
builder.setPositiveButton(R.string.global_install, new DialogInterface.OnClickListener() {
String Conversations = "eu.siacs.conversations";
Intent xmpp1 = getPackageManager().getLaunchIntentForPackage(Conversations);
@Override
public void onClick(DialogInterface dialog, int which) {
xmpp1 = new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + Conversations));
startActivity(xmpp1);
}
});
builder.setNegativeButton(R.string.global_cancel , null);
builder.show();
}
private void showPadInfo() {
final ScrollView dashboard = findViewById(R.id.dashboard);
@ -783,6 +868,24 @@ public class MainActivity extends AppCompatActivity implements View.OnLongClickL
});
builder.show();
}
private void showPAdDialog(){
final ScrollView dashboard = findViewById(R.id.dashboard);
AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
builder.setCancelable(false);
builder.setTitle(R.string.DiaInstallTitle);
builder.setMessage(getString(R.string.ChatDialog));
builder.setPositiveButton(R.string.global_install, new DialogInterface.OnClickListener() {
String Padland = "com.mikifus.padland";
Intent pad = getPackageManager().getLaunchIntentForPackage(Padland);
@Override
public void onClick(DialogInterface dialog, int which) {
pad = new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + Padland));
startActivity(pad);
}
});
builder.setNegativeButton(R.string.global_cancel , null);
builder.show();
}
private void showCalcInfo() {
final ScrollView dashboard = findViewById(R.id.dashboard);

View File

@ -55,7 +55,7 @@
<string name="disrootUrl"><a href = "https://disroot.org">https://disroot.org</a></string>
<string name="disroot"> * Comunidad de Disroot (Disroot):</string>
<string name="contributorsTitle">Colaboradores</string>
<string name="contributors"><b> &#8226; muppeth:</b>\n administrador Disroot\n\n<b> &#8226; antilopa:</b>\n administradora Disroot\n\n<b> &#8226; Massimiliano:</b>\n Desarrollador\n\n<b> &#8226; Fede:</b>\n Contribuyente de contenido\n\n<b> &#8226; Meaz:</b>\n Contribuyente de contenido\n\n<b> &#8226; maryjane:</b>\n Contribuyente de contenido\n\n<b> &#8226; userdebug:</b>\n Contribuyente de contenido\n\n</string>
<string name="contributors"><b> &#8226; muppeth:</b>\n administrador Disroot\n\n<b> &#8226; antilopa:</b>\n administradora Disroot\n\n<b> &#8226; Massimiliano:</b>\n Desarrollador\n\n<b> &#8226; Fede:</b>\n Contribuyente de contenido\n\n<b> &#8226; Meaz:</b>\n Contribuyente de contenido\n\n<b> &#8226; maryjane:</b>\n Contribuyente de contenido\n\n<b> &#8226; userdebug:</b>\n Contribuyente de contenido\n\n<b> &#8226; ButterflyOfFire:</b>\n Contribuyente de contenido\n\n</string>
<string name="fDroid">F-Droid</string>
<string name="thirdparty">Librerías de Terceros</string>
<string name="thirdpartyText"><a href="https://github.com/cketti/ckChangeLog">ckCangelog: </a>Apache License 2.0\n\n<a href="https://github.com/wsdfhjxc/taponium/">Taponium: </a>GNU General Public License v3.0</string>
@ -127,5 +127,13 @@
<string name="Forget">Forget my choice</string>
<string name="ForgetTitle">Forget chat client!</string>
<string name="title_activity_tap">TapActivity</string>
<string name="action_clear_cookies">Clear cookies</string>
<string name="DiaInstallTitle">Installation request</string>
<string name="DiasporaDialog">To continue you need to install Dandelion first.\nPlease select install to continue with the installatin on F-Droid.</string>
<string name="global_cancel">Cancel</string>
<string name="global_install">Install</string>
<string name="MailDialog">To continue you need to install K9-Mail first.\nPlease select install to continue with the installatin on F-Droid.</string>
<string name="CloudDialog">To continue you need to install the Nextcloud app first.\nPlease select install to continue with the installatin on F-Droid.</string>
<string name="ChatDialog">To continue you need to install Conversations first.\nPlease select install to continue with the installatin on F-Droid.</string>
</resources>

View File

@ -77,7 +77,7 @@
<string name="disrootUrl">https://disroot.org</string>
<string name="disroot">* La communauté Disroot (Disroot) :</string>
<string name="contributorsTitle">Contributeurs</string>
<string name="contributors"><b> • muppeth:</b>\n Administrateur Disroot\n\n<b> • antilopa:</b>\n Administrateur Disroot\n\n<b> • Massimiliano:</b>\n Développeur actuel de l\'application Disroot\n\n<b> • Fede, Meaz, maryjane, userdebug:</b>\n Contributeurs de contenu\n\n</string>
<string name="contributors"><b> • muppeth:</b>\n Administrateur Disroot\n\n<b> • antilopa:</b>\n Administrateur Disroot\n\n<b> • Massimiliano:</b>\n Développeur actuel de l\'application Disroot\n\n<b> • Fede, Meaz, maryjane, userdebug, ButterflyOfFire:</b>\n Contributeurs de contenu\n\n</string>
<string name="fDroid">F-Droid</string>
<string name="thirdparty">Librairies tierces</string>
<string name="thirdpartyText"><a href="https://github.com/cketti/ckChangeLog">ckCangelog: </a>Licence d\'utilisation Apache 2.0\n\n<a href="https://github.com/wsdfhjxc/taponium/">Taponium: </a>Licence d\'utilisation GNU General Public v3.0</string>
@ -156,5 +156,13 @@
<string name="Forget">Oublier mon choix</string>
<string name="ForgetTitle">Oublier le client de messagerie instantanée !</string>
<string name="title_activity_tap">TapActivity</string>
<string name="action_clear_cookies">Clear cookies</string>
<string name="DiaInstallTitle">Installation request</string>
<string name="DiasporaDialog">To continue you need to install Dandelion first.\nPlease select install to continue with the installatin on F-Droid.</string>
<string name="global_cancel">Cancel</string>
<string name="global_install">Install</string>
<string name="MailDialog">To continue you need to install K9-Mail first.\nPlease select install to continue with the installatin on F-Droid.</string>
<string name="CloudDialog">To continue you need to install the Nextcloud app first.\nPlease select install to continue with the installatin on F-Droid.</string>
<string name="ChatDialog">To continue you need to install Conversations first.\nPlease select install to continue with the installatin on F-Droid.</string>
</resources>

View File

@ -54,7 +54,7 @@
<string name="disrootUrl">https://disroot.org</string>
<string name="disroot"> * Comunità Disroot (Disroot):</string>
<string name="contributorsTitle">Contribuenti</string>
<string name="contributors"><b> &#8226; muppeth:</b>\n Amministratore Disroot\n\n<b> &#8226; antilopa:</b>\n Amministratrice Disroot\n\n<b> &#8226; Massimiliano:</b>\n Sviluppatore\n\n<b> &#8226; Fede:</b>\n Contributore di contenuti\n\n<b> &#8226; Meaz:</b>\n Contributore di contenuti\n\n<b> &#8226; maryjane:</b>\n Contributore di contenuti\n\n<b> &#8226; userdebug:</b>\n Contributore di contenuti\n\n</string>
<string name="contributors"><b> &#8226; muppeth:</b>\n Amministratore Disroot\n\n<b> &#8226; antilopa:</b>\n Amministratrice Disroot\n\n<b> &#8226; Massimiliano:</b>\n Sviluppatore\n\n<b> &#8226; Fede:</b>\n Contributore di contenuti\n\n<b> &#8226; Meaz:</b>\n Contributore di contenuti\n\n<b> &#8226; maryjane:</b>\n Contributore di contenuti\n\n<b> &#8226; userdebug:</b>\n Contributore di contenuti\n\n<b> &#8226; ButterflyOfFire:</b>\n Contributore di contenuti\n\n</string>
<string name="fDroid">F-Droid</string>
<string name="thirdparty">Librerie di terze parti</string>
<string name="thirdpartyText"><a href="https://github.com/cketti/ckChangeLog">ckCangelog: </a>Apache License 2.0\n\n<a href="https://github.com/wsdfhjxc/taponium/">Taponium: </a>GNU General Public License v3.0</string>
@ -126,5 +126,13 @@
<string name="Forget">Dimentica la mia scelta</string>
<string name="ForgetTitle">Dimentica il client di chat!</string>
<string name="title_activity_tap">TapActivity</string>
<string name="action_clear_cookies">Clear cookies</string>
<string name="DiaInstallTitle">Installation request</string>
<string name="DiasporaDialog">To continue you need to install Dandelion first.\n Please select install to continue with the installatin on F-Droid.</string>
<string name="global_cancel">Cancel</string>
<string name="global_install">Install</string>
<string name="MailDialog">To continue you need to install K9-Mail first.\nPlease select install to continue with the installatin on F-Droid.</string>
<string name="CloudDialog">To continue you need to install the Nextcloud app first.\nPlease select install to continue with the installatin on F-Droid.</string>
<string name="ChatDialog">To continue you need to install Conversations first.\nPlease select install to continue with the installatin on F-Droid.</string>
</resources>

View File

@ -54,7 +54,7 @@
<string name="disrootUrl">https://disroot.org</string>
<string name="disroot"> * Disroot Gemeenschap (Disroot):</string>
<string name="contributorsTitle">Bijdragers</string>
<string name="contributors"><b> &#8226; muppeth:</b>\n Disroot administrator\n\n<b> &#8226; antilopa:</b>\n Disroot administrator\n\n<b> &#8226; Massimiliano:</b>\n Ontwikkelaar\n\n<b> &#8226; Fede:</b>\n Inhoud bijdrager\n\n<b> &#8226; Meaz:</b>\n Inhoud bijdrager\n\n<b> &#8226; maryjane:</b>\n Inhoud bijdrager\n\n<b> &#8226; userdebug:</b>\n Inhoud bijdrager\n\n</string>
<string name="contributors"><b> &#8226; muppeth:</b>\n Disroot administrator\n\n<b> &#8226; antilopa:</b>\n Disroot administrator\n\n<b> &#8226; Massimiliano:</b>\n Ontwikkelaar\n\n<b> &#8226; Fede:</b>\n Inhoud bijdrager\n\n<b> &#8226; Meaz:</b>\n Inhoud bijdrager\n\n<b> &#8226; maryjane:</b>\n Inhoud bijdrager\n\n<b> &#8226; userdebug:</b>\n Inhoud bijdrager\n\n<b> &#8226; ButterflyOfFire:</b>\n Inhoud bijdrager\n\n</string>
<string name="fDroid">F-Droid</string>
<string name="thirdparty">Third-Party Libraries</string>
<string name="thirdpartyText"><a href="https://github.com/cketti/ckChangeLog">ckCangelog: </a>Apache Licentie 2.0\n\n<a href="https://github.com/wsdfhjxc/taponium/">Taponium: </a>GNU General Public License v3.0</string>
@ -127,5 +127,13 @@
<string name="Forget">Vergeet mijn keuze</string>
<string name="ForgetTitle">Vergeet chat client!</string>
<string name="title_activity_tap">TapActivity</string>
<string name="action_clear_cookies">Clear cookies</string>
<string name="DiaInstallTitle">Installation request</string>
<string name="DiasporaDialog">To continue you need to install Dandelion first.\nPlease select install to continue with the installatin on F-Droid.</string>
<string name="global_cancel">Cancel</string>
<string name="global_install">Install</string>
<string name="MailDialog">To continue you need to install K9-Mail first.\nPlease select install to continue with the installatin on F-Droid.</string>
<string name="CloudDialog">To continue you need to install the Nextcloud app first.\nPlease select install to continue with the installatin on F-Droid.</string>
<string name="ChatDialog">To continue you need to install Conversations first.\nPlease select install to continue with the installatin on F-Droid.</string>
</resources>

View File

@ -54,7 +54,7 @@
<string name="disrootUrl">https://disroot.org</string>
<string name="disroot"> * Disroot Community (Disroot):</string>
<string name="contributorsTitle">Contributors</string>
<string name="contributors"><b> &#8226; muppeth:</b>\n Disroot admin\n\n<b> &#8226; antilopa:</b>\n Disroot admin\n\n<b> &#8226; Massimiliano:</b>\n Current developer of the Disroot app\n\n<b> &#8226; Fede:</b>\n Content contributor\n\n<b> &#8226; Meaz:</b>\n Content contributor\n\n<b> &#8226; maryjane:</b>\n Content contributor\n\n<b> &#8226; userdebug:</b>\n Content contributor\n\n</string>
<string name="contributors"><b> &#8226; muppeth:</b>\n Disroot admin\n\n<b> &#8226; antilopa:</b>\n Disroot admin\n\n<b> &#8226; Massimiliano:</b>\n Current developer of the Disroot app\n\n<b> &#8226; Fede:</b>\n Content contributor\n\n<b> &#8226; Meaz:</b>\n Content contributor\n\n<b> &#8226; maryjane:</b>\n Content contributor\n\n<b> &#8226; userdebug:</b>\n Content contributor\n\n<b> &#8226; ButterflyOfFire:</b>\n Content contributor\n\n</string>
<string name="fDroid">F-Droid</string>
<string name="thirdparty">Bibliotecas de Terceiros</string>
<string name="thirdpartyText"><a href="https://github.com/cketti/ckChangeLog">ckCangelog: </a>Apache License 2.0\n\n<a href="https://github.com/wsdfhjxc/taponium/">Taponium: </a>GNU General Public License v3.0</string>
@ -65,7 +65,7 @@
<string name="AppVersion">Versão da Aplicação: %1$s</string>
<string name="Device">Dispositivo:</string>
<string name="Contribute">Contribuir</string>
<string name="ContributeText">A aplicação Disroot segue os principios da Fundação Disroot, é desenvolvida segundo o principio de "free as in Freedom". Se quiser contribuir para o desenvolvimento desta plaicação, força! De momento somos uma equipa muito pequena, por isso agradecemos qualquer tipo de ajuda!</string>
<string name="ContributeText">A aplicação Disroot segue os princípios da Fundação Disroot, é desenvolvida segundo o principio de "free as in Freedom". Se quiser contribuir para o desenvolvimento desta plaicação, força! De momento somos uma equipa muito pequena, por isso agradecemos qualquer tipo de ajuda!</string>
<string name="ContributeBtn">Obter o código fonte</string>
<string name="Translate">Traduzir</string>
<string name="TranslateText">A app não está disponível na sua língua? Pode resolver isso! Porque não nos ajuda traduzindo-a para a sua língua?</string>
@ -81,7 +81,7 @@
<string name="FirstTitle">Quase que me esquecia</string>
<string name="FirstInfo">Podes carregar por alguns segundos em cada ícone para aparecer informação extra…</string>
<string name="DiasporaTitle">Definições do Diaspora*</string>
<string name="DiasporaInfo">Rede social Distribuida e Descentralizada. Postar, partilhar, criar comunidades.\n\nUsername:\n o_seu_nome_de_utilizador_no_diaspora@pod.disroot.org\n\nPassword:\n a_sua_password_diaspora</string>
<string name="DiasporaInfo">Rede social Distribuída e Descentralizada. Postar, partilhar, criar comunidades.\n\nUsername:\n o_seu_nome_de_utilizador_no_diaspora@pod.disroot.org\n\nPassword:\n a_sua_password_diaspora</string>
<string name="PadInfo">Com o Etherpad pode escrever artigos, comunicados de imprensa, listas de tarefas, etc. em conjunto com outras pessoas, amigos, colegas, todos a trabalhar no mesmo documento ao mesmo tempo.\nNão é necessário ter uma conta de utilizador para usar.</string>
<string name="PadTitle">Sobre EtherPad</string>
<string name="ChatTitle">Definições do XMPP\n</string>
@ -126,5 +126,13 @@
<string name="Forget">Forget my choise</string>
<string name="ForgetTitle">Forget chat client!</string>
<string name="title_activity_tap">TapActivity</string>
<string name="action_clear_cookies">Clear cookies</string>
<string name="DiaInstallTitle">Installation request</string>
<string name="DiasporaDialog">To continue you need to install Dandelion first.\nPlease select install to continue with the installatin on F-Droid.</string>
<string name="global_cancel">Cancel</string>
<string name="global_install">Install</string>
<string name="MailDialog">To continue you need to install K9-Mail first.\nPlease select install to continue with the installatin on F-Droid.</string>
<string name="CloudDialog">To continue you need to install the Nextcloud app first.\nPlease select install to continue with the installatin on F-Droid.</string>
<string name="ChatDialog">To continue you need to install Conversations first.\nPlease select install to continue with the installatin on F-Droid.</string>
</resources>

View File

@ -55,7 +55,7 @@
<string name="disrootUrl">https://disroot.org</string>
<string name="disroot"> * Disroot zajednica (Disroot):</string>
<string name="contributorsTitle">Saradnici</string>
<string name="contributors"><b> &#8226; muppeth:</b>\n Disroot administrator\n\n<b> &#8226; antilopa:</b>\n Disroot administrator\n\n<b> &#8226; Massimiliano:</b>\n programer\n\n<b> &#8226; Fede:</b>\n saradnik\n\n<b> &#8226; Meaz:</b>\n saradnik\n\n<b> &#8226; maryjane:</b>\n saradnik\n\n<b> &#8226; userdebug:</b>\n saradnik\n\n</string>
<string name="contributors"><b> &#8226; muppeth:</b>\n Disroot administrator\n\n<b> &#8226; antilopa:</b>\n Disroot administrator\n\n<b> &#8226; Massimiliano:</b>\n programer\n\n<b> &#8226; Fede:</b>\n saradnik\n\n<b> &#8226; Meaz:</b>\n saradnik\n\n<b> &#8226; maryjane:</b>\n saradnik\n\n<b> &#8226; userdebug:</b>\n saradnik\n\n<b> &#8226; ButterflyOfFire:</b>\n saradnik\n\n</string>
<string name="fDroid">F-Droid</string>
<string name="thirdparty">Biblioteke treće strane</string>
<string name="thirdpartyText"><a href="https://github.com/cketti/ckChangeLog">ckCangelog: </a>Apache License 2.0\n\n<a href="https://github.com/wsdfhjxc/taponium/">Taponium: </a>GNU General Public License v3.0</string>
@ -127,5 +127,13 @@
<string name="Forget">Zaboravi moj izbor</string>
<string name="ForgetTitle">Zaboravi program za ćaskanje!</string>
<string name="title_activity_tap">TapActivity</string>
<string name="action_clear_cookies">Clear cookies</string>
<string name="DiaInstallTitle">Installation request</string>
<string name="DiasporaDialog">To continue you need to install Dandelion first.\nPlease select install to continue with the installatin on F-Droid.</string>
<string name="global_cancel">Cancel</string>
<string name="global_install">Install</string>
<string name="MailDialog">To continue you need to install K9-Mail first.\nPlease select install to continue with the installatin on F-Droid.</string>
<string name="CloudDialog">To continue you need to install the Nextcloud app first.\nPlease select install to continue with the installatin on F-Droid.</string>
<string name="ChatDialog">To continue you need to install Conversations first.\nPlease select install to continue with the installatin on F-Droid.</string>
</resources>

View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
</resources>

View File

@ -127,5 +127,12 @@
<string name="ForgetTitle">Forget chat client!</string>
<string name="title_activity_tap">TapActivity</string>
<string name="action_clear_cookies">Clear cookies</string>
<string name="DiaInstallTitle">Installation request</string>
<string name="DiasporaDialog">To continue you need to install Dandelion first.\nPlease select install to continue with the installatin on F-Droid.</string>
<string name="global_cancel">Cancel</string>
<string name="global_install">Install</string>
<string name="MailDialog">To continue you need to install K9-Mail first.\nPlease select install to continue with the installatin on F-Droid.</string>
<string name="CloudDialog">To continue you need to install the Nextcloud app first.\nPlease select install to continue with the installatin on F-Droid.</string>
<string name="ChatDialog">To continue you need to install Conversations first.\nPlease select install to continue with the installatin on F-Droid.</string>
</resources>

View File

@ -1,9 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<changelog>
<release version="1.0.2" versioncode="12" >
<change>Fixed French translation</change>
<change>Added more clear dialogs for additional apps</change>
</release>
<release version="1.0.1" versioncode="11" >
<change>Added Store cookies</change>
<cange>Added clear cache</cange>
<cange>Workaround for app crashing when uploading in Lufi</cange>
<change>Added clear cache</change>
<change>Workaround for app crashing when uploading in Lufi</change>
</release>
<release version="1.0.0" versioncode="10" >
<change>Added Serbian translation</change>