mirror of https://codeberg.org/gitnex/GitNex.git
move corwdin Link to strings
This commit is contained in:
parent
e32ccde995
commit
1512032f05
|
@ -97,7 +97,7 @@ public class AboutFragment extends Fragment {
|
|||
Intent intent = new Intent();
|
||||
intent.setAction(Intent.ACTION_VIEW);
|
||||
intent.addCategory(Intent.CATEGORY_BROWSABLE);
|
||||
intent.setData(Uri.parse("https://crowdin.com/project/gitnex"));
|
||||
intent.setData(Uri.parse(getResources().getString(R.string.corwdinLink)));
|
||||
startActivity(intent);
|
||||
}
|
||||
});
|
||||
|
|
|
@ -14,6 +14,7 @@
|
|||
<string name="supportLinkPatreon" translatable="false">https://www.patreon.com/mmarif</string>
|
||||
<string name="appVerBuild" translatable="false">%1$s / build %2$d</string>
|
||||
<string name="appDesc" translatable="false">GitNex is a free, open-source Android client for Git repository management tool Gitea. GitNex is Licensed under GPLv3.\n\nThanks to all the contributors and sponsors for your generous work and donations.</string>
|
||||
<string name="corwdinLink" translatable="false">https://crowdin.com/project/gitnex</string>
|
||||
<!-- These strings does not need translations -->
|
||||
|
||||
<!-- links text -->
|
||||
|
|
Loading…
Reference in New Issue