Skip to content

Commit

Permalink
Using language string for annotation
Browse files Browse the repository at this point in the history
Issue #1172
  • Loading branch information
mendhak committed Nov 7, 2024
1 parent be3f77b commit 01140b0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle sa
int i = 0;
AnnotationViewFragment fragment = this;
for (ButtonWrapper buttonWrapper : buttonList) {
buttonWrapper.setText("Annotation " + i);
buttonWrapper.setText(getString(R.string.txt_annotation) + i);
buttonWrapper.setColor("#808080");
final int btnIdx = i;
buttonWrapper.actionButton.setOnLongClickListener(v -> {
Expand Down

0 comments on commit 01140b0

Please sign in to comment.