Skip to content

Commit

Permalink
markUnRead -> markUnread
Browse files Browse the repository at this point in the history
  • Loading branch information
ynotzort authored and Mosc committed Oct 26, 2022
1 parent 0ad5ceb commit 021f236
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/l10n/app_en.arb
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@
"userLink": "User link",
"copySuccess": "{option} has been copied",
"markRead": "Mark read",
"markUnRead": "Mark unread",
"markUnread": "Mark unread",
"openParent": "Open the parent of this single thread",
"experimentalDescription": "This feature is experimental. Things may go wrong.",
"usernamePatternError": "Value should only contain letters, digits, dashes and underscores.",
Expand Down
2 changes: 1 addition & 1 deletion lib/l10n/app_nl.arb
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@
"userLink": "Gebruikerslink",
"copySuccess": "{option} is gekopieerd",
"markRead": "Markeer als gelezen",
"markUnRead": "Markeer als ongelezen",
"markUnread": "Markeer als ongelezen",
"openParent": "Open de bovenliggende discussie",
"experimentalDescription": "Deze functie is experimenteel. Er kunnen dingen misgaan.",
"usernamePatternError": "Waarde mag alleen letters, cijfers, streepjes en underscores bevatten.",
Expand Down
2 changes: 1 addition & 1 deletion lib/models/item_menu_action.dart
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ extension ItemMenuActionExtension on ItemMenuAction {
case ItemMenuAction.toggleVisited:
final bool visited = ref.read(visitedProvider(id)).value ?? false;
return visited
? AppLocalizations.of(context).markUnRead
? AppLocalizations.of(context).markUnread
: AppLocalizations.of(context).markRead;
}
}
Expand Down

0 comments on commit 021f236

Please sign in to comment.