Skip to content

Commit

Permalink
chore: change localization key for post form (#456)
Browse files Browse the repository at this point in the history
  • Loading branch information
poppingmoon authored Oct 28, 2024
1 parent a8306cd commit 3b026b1
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 5 deletions.
1 change: 0 additions & 1 deletion lib/i18n/aria/aria.i18n.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ playAudio: "Play audio"
playVideo: "Play video"
pleaseCopyResponse: "Please copy this response"
postConfirm: "Are you sure you want to post this note?"
postForm: "Posting form"
reactionConfirm: "Are you sure you want to add a reaction?"
recentlyUsedEmojis: "Recently used emojis"
renoteConfirm: "Are you sure you want to renote this note?"
Expand Down
2 changes: 1 addition & 1 deletion lib/i18n/strings.g.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/// To regenerate, run: `dart run slang`
///
/// Locales: 31
/// Strings: 54622 (1762 per locale)
/// Strings: 54621 (1761 per locale)
// coverage:ignore-file
// ignore_for_file: type=lint, unused_import
Expand Down
1 change: 0 additions & 1 deletion lib/i18n/strings_en_US.g.dart
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,6 @@ class TranslationsAriaEnUs {
String get playVideo => 'Play video';
String get pleaseCopyResponse => 'Please copy this response';
String get postConfirm => 'Are you sure you want to post this note?';
String get postForm => 'Posting form';
String get reactionConfirm => 'Are you sure you want to add a reaction?';
String get recentlyUsedEmojis => 'Recently used emojis';
String get renoteConfirm => 'Are you sure you want to renote this note?';
Expand Down
2 changes: 1 addition & 1 deletion lib/view/page/settings/appearance_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ class _TimelinesPageButtonTypeNameWidget extends StatelessWidget {
TimelinesPageButtonType.notifications => t.misskey.notifications,
TimelinesPageButtonType.pages => t.misskey.pages,
TimelinesPageButtonType.play => 'Play',
TimelinesPageButtonType.postForm => t.aria.postForm,
TimelinesPageButtonType.postForm => t.misskey.widgets_.postForm,
TimelinesPageButtonType.profile => t.misskey.profile,
TimelinesPageButtonType.reload => t.misskey.reload,
TimelinesPageButtonType.search => t.misskey.search,
Expand Down
2 changes: 1 addition & 1 deletion lib/view/page/timelines_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ class _TimelinesPageButton extends ConsumerWidget {
TimelinesPageButtonType.notifications => t.misskey.notifications,
TimelinesPageButtonType.pages => t.misskey.pages,
TimelinesPageButtonType.play => 'Play',
TimelinesPageButtonType.postForm => t.aria.postForm,
TimelinesPageButtonType.postForm => t.misskey.widgets_.postForm,
TimelinesPageButtonType.profile => t.misskey.profile,
TimelinesPageButtonType.reload => t.misskey.reload,
TimelinesPageButtonType.search => t.misskey.search,
Expand Down

0 comments on commit 3b026b1

Please sign in to comment.