Change 'founder' to 'original author' in credits

Better wording

Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com>
This commit is contained in:
Álvaro Brey 2023-02-02 16:48:06 +01:00
parent 5afcb3b026
commit 3ca4301c7a
No known key found for this signature in database
GPG key ID: 2585783189A62105
2 changed files with 2 additions and 5 deletions

View file

@ -2,11 +2,8 @@ package it.niedermann.owncloud.notes.about;
import static it.niedermann.owncloud.notes.shared.util.SupportUtil.setTextWithURL; import static it.niedermann.owncloud.notes.shared.util.SupportUtil.setTextWithURL;
import static it.niedermann.owncloud.notes.shared.util.SupportUtil.strong; import static it.niedermann.owncloud.notes.shared.util.SupportUtil.strong;
import static it.niedermann.owncloud.notes.shared.util.SupportUtil.url;
import android.os.Bundle; import android.os.Bundle;
import android.text.Spannable;
import android.text.method.LinkMovementMethod;
import android.view.LayoutInflater; import android.view.LayoutInflater;
import android.view.View; import android.view.View;
import android.view.ViewGroup; import android.view.ViewGroup;
@ -24,7 +21,7 @@ public class AboutFragmentCreditsTab extends Fragment {
public View onCreateView(@NonNull LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { public View onCreateView(@NonNull LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
final var binding = FragmentAboutCreditsTabBinding.inflate(inflater, container, false); final var binding = FragmentAboutCreditsTabBinding.inflate(inflater, container, false);
binding.aboutVersion.setText(getString(R.string.about_version, strong(BuildConfig.VERSION_NAME))); binding.aboutVersion.setText(getString(R.string.about_version, strong(BuildConfig.VERSION_NAME)));
final var founderText = getString(R.string.about_developers_stefan, getString(R.string.about_developers_founder)); final var founderText = getString(R.string.about_developers_stefan, getString(R.string.about_developers_original_author));
setTextWithURL(binding.aboutDevelopers, getResources(), R.string.about_developers, founderText, R.string.url_niedermann_it); setTextWithURL(binding.aboutDevelopers, getResources(), R.string.about_developers, founderText, R.string.url_niedermann_it);
setTextWithURL(binding.aboutTranslators, getResources(), R.string.about_translators_transifex, R.string.about_translators_transifex_label, R.string.url_translations); setTextWithURL(binding.aboutTranslators, getResources(), R.string.about_translators_transifex, R.string.about_translators_transifex_label, R.string.url_translations);
return binding.getRoot(); return binding.getRoot();

View file

@ -74,7 +74,7 @@
<string name="about_developers_title">Developers</string> <string name="about_developers_title">Developers</string>
<string name="about_developers" translatable="false">%1$s, Kristof Hamann, HeaDBanGer84, Felix Edelmann, Daniel Bailey</string> <string name="about_developers" translatable="false">%1$s, Kristof Hamann, HeaDBanGer84, Felix Edelmann, Daniel Bailey</string>
<string name="about_developers_stefan" translatable="false">Stefan Niedermann (%1$s)</string> <string name="about_developers_stefan" translatable="false">Stefan Niedermann (%1$s)</string>
<string name="about_developers_founder">founder</string> <string name="about_developers_original_author">original author</string>
<string name="about_translators_title">Translators</string> <string name="about_translators_title">Translators</string>
<string name="about_translators_transifex">Nextcloud community on %1$s</string> <string name="about_translators_transifex">Nextcloud community on %1$s</string>
<string name="about_translators_transifex_label" translatable="false">Transifex</string> <string name="about_translators_transifex_label" translatable="false">Transifex</string>