diff --git a/android/app/build.gradle b/android/app/build.gradle index 89428be2b..f82f67e68 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -32,7 +32,7 @@ if (keystorePropertiesFile.exists()) { keystoreProperties.load(reader) } } else { - // for release using credentials in environment variables set up by Github Actions + // for release using credentials in environment variables set up by GitHub Actions // warning: in property file, single quotes should be escaped with a backslash // but they should not be escaped when stored in env variables keystoreProperties['storeFile'] = System.getenv('AVES_STORE_FILE') diff --git a/lib/l10n/app_en.arb b/lib/l10n/app_en.arb index fe58da221..7bd7cf0cd 100644 --- a/lib/l10n/app_en.arb +++ b/lib/l10n/app_en.arb @@ -373,8 +373,8 @@ "@aboutUpdateLinks2": {}, "aboutUpdateLinks3": ".", "@aboutUpdateLinks3": {}, - "aboutUpdateGithub": "Github", - "@aboutUpdateGithub": {}, + "aboutUpdateGitHub": "GitHub", + "@aboutUpdateGitHub": {}, "aboutUpdateGooglePlay": "Google Play", "@aboutUpdateGooglePlay": {}, "aboutCredits": "Credits", diff --git a/lib/l10n/app_ko.arb b/lib/l10n/app_ko.arb index c4157a173..5f4e891a4 100644 --- a/lib/l10n/app_ko.arb +++ b/lib/l10n/app_ko.arb @@ -175,7 +175,7 @@ "aboutUpdateLinks1": "앱의 최신 버전을", "aboutUpdateLinks2": "와", "aboutUpdateLinks3": "에서 다운로드 사용 가능합니다.", - "aboutUpdateGithub": "깃허브", + "aboutUpdateGitHub": "깃허브", "aboutUpdateGooglePlay": "구글 플레이", "aboutCredits": "크레딧", "aboutCreditsWorldAtlas1": "이 앱은", diff --git a/lib/utils/constants.dart b/lib/utils/constants.dart index 9e3fcdede..ab0ab82c2 100644 --- a/lib/utils/constants.dart +++ b/lib/utils/constants.dart @@ -270,7 +270,7 @@ class Constants { sourceUrl: 'https://github.com/fluttercommunity/get_it', ), Dependency( - name: 'Github', + name: 'GitHub', license: 'MIT', sourceUrl: 'https://github.com/SpinlockLabs/github.dart', ), diff --git a/lib/widgets/about/update.dart b/lib/widgets/about/update.dart index fa25b9799..3c904f5b4 100644 --- a/lib/widgets/about/update.dart +++ b/lib/widgets/about/update.dart @@ -61,7 +61,7 @@ class _AboutUpdateState extends State { TextSpan(text: context.l10n.aboutUpdateLinks1), WidgetSpan( child: LinkChip( - text: context.l10n.aboutUpdateGithub, + text: context.l10n.aboutUpdateGitHub, url: 'https://github.com/deckerst/aves/releases', textStyle: const TextStyle(fontWeight: FontWeight.bold), ),