mirror of https://codeberg.org/gitnex/GitNex.git
Never lowercase strings (#1256)
Never lowercase translatable strings. This can lead to weird translations otherwise, e.g. in German, you always start nouns with a capital letter. The current implementation turns this into a wrong capitalization. Co-authored-by: qwerty287 <ndev@web.de> Reviewed-on: https://codeberg.org/gitnex/GitNex/pulls/1256 Reviewed-by: M M Arif <mmarif@noreply.codeberg.org> Co-authored-by: qwerty287 <qwerty287@noreply.codeberg.org> Co-committed-by: qwerty287 <qwerty287@noreply.codeberg.org>
This commit is contained in:
parent
26fb36c60c
commit
3ec469ff19
|
@ -573,10 +573,10 @@ public class IssueCommentsAdapter extends RecyclerView.Adapter<RecyclerView.View
|
|||
}
|
||||
|
||||
String commitText =
|
||||
context.getResources().getString(R.string.commits).toLowerCase();
|
||||
context.getResources().getString(R.string.commitsText);
|
||||
if (Objects.requireNonNull(commitsShaArray).length() == 1) {
|
||||
commitText =
|
||||
context.getResources().getString(R.string.commitText).toLowerCase();
|
||||
context.getResources().getString(R.string.commitText);
|
||||
}
|
||||
|
||||
String commitString =
|
||||
|
|
|
@ -802,6 +802,7 @@
|
|||
<string name="notesAllDeletionMessage">This will delete all of your notes. This action cannot be undone.</string>
|
||||
|
||||
<!-- timeline -->
|
||||
<string name="commitsText">commit</string>
|
||||
<string name="commitText">commit</string>
|
||||
<string name="timelineAddedCommit">%1$s added %2$s %3$s</string>
|
||||
<!-- the | is replaced by the label -->
|
||||
|
|
Loading…
Reference in New Issue