Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: change localization key for post form #456

Merged
merged 1 commit into from
Oct 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading