From ee7fe719a752f437983fa31bf6504c6401d16e02 Mon Sep 17 00:00:00 2001 From: "Re*Index. (ot_inc)" <32851879+reindex-ot@users.noreply.github.com> Date: Thu, 16 May 2024 11:25:12 +0900 Subject: [PATCH 1/3] feat: support for Japanese language (#284) --- app/src/main/res/values-ja/strings.xml | 83 ++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 app/src/main/res/values-ja/strings.xml diff --git a/app/src/main/res/values-ja/strings.xml b/app/src/main/res/values-ja/strings.xml new file mode 100644 index 0000000..a477756 --- /dev/null +++ b/app/src/main/res/values-ja/strings.xml @@ -0,0 +1,83 @@ + + + Pixel IMS + HomeActivity + ホーム + 設定 + 破棄 + 確認 + はい + いいえ + 不明 + 最新のバージョンで実行中 + Shizuku サービスが実行中 + Shizuku の権限を許可 + VoLTE を有効化 + VoNR を有効化 + バックアップ通話を有効化 + Wi-Fi 通話を有効化 + ローミング中に Wi-Fi 通話を有効化 + 設定で Wi-Fi 通話の環境設定を表示 + 設定で Wi-Fi 通話のローミング設定を表示 + SIM 情報に IMS ステータスを表示 + Wi-Fi 通話のネットワーク名フォーマット + Wi-Fi 通話の Wi-Fi のみモードを表示 + ビデオ通話を有効化 (VT) + APN の追加を許可 + UT での付加サービスを有効化 + CDMA での付加サービスを有効化 + SIM を検出 + VoLTE 対応のデバイス + IMS ステータス + %1$s の IMS ステータス + + 登録済み + 登録なし + 有効 + 無効 + 新しいバージョン「%1$s」が利用可能です! + 機能の有効化と無効化 + コスメティックトグル + LTE データアイコンを 4G で表示 + VoWiFi アイコンを表示 + 常にデータ RAT アイコンを表示 + 拡張されたデータアイコンを非表示にする + 拡張された 4G LTE を有効化 (LTE+) + 文字列の値 + その他 + 設定をすべてリセット + キャリアの既定値に戻します + ユーザーエージェント + バージョン + 値を更新 + LG U+ + デフォルト + 手動で設定 + 指定されたキーが見つかりません + 設定をダンプ + プロパティ名 + プロパティタイプ + + ダンプされた設定をクリップボードにコピーしました + プリセット + はい + いいえ + IMS の登録を再開する + 実行中です… + エキスパートモード + 読み込み中… + 「%2$s」の「%1$s」を読み込みました + 値を編集 + 検索 + クイック設定タイル + IMS ステータス (SIM %1$s) + IMS ステータス (SIM 1) + IMS ステータス (SIM 2) + VoLTE の設定 (SIM %1$s) + VoLTE の設定 (SIM 1) + VoLTE の設定 (SIM 2) + IMS ステータス表示タイルを追加する + VoLTE 設定の切り替えタイルを追加する + SIM の設定 + 設定ダンプビューワー + From 943ccdc681a89171b5dd0da5df41a3768e5847f0 Mon Sep 17 00:00:00 2001 From: Kyujin Cho Date: Thu, 16 May 2024 11:38:00 +0900 Subject: [PATCH 2/3] chore(ci): do not raise failure on comment post error --- .github/workflows/default.yml | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/.github/workflows/default.yml b/.github/workflows/default.yml index 5c234ff..c24f4ab 100644 --- a/.github/workflows/default.yml +++ b/.github/workflows/default.yml @@ -40,13 +40,18 @@ jobs: uses: actions/github-script@v6 with: script: | - const commentResult = await github.rest.issues.createComment({ - issue_number: context.issue.number, - owner: context.repo.owner, - repo: context.repo.repo, - body: `APK build completed! Visit [action run detail page](https://github.com/${context.repo.owner}/${context.repo.repo}/actions/runs/${context.runId}) to download the APK to test this pull request.` - }) - console.log(commentResult) + try { + const commentResult = await github.rest.issues.createComment({ + issue_number: context.issue.number, + owner: context.repo.owner, + repo: context.repo.repo, + body: `APK build completed! Visit [action run detail page](https://github.com/${context.repo.owner}/${context.repo.repo}/actions/runs/${context.runId}) to download the APK to test this pull request.` + }) + console.log(commentResult) + } catch (e) { + console.log("Comment not posted:") + console.log(e) + } build-release-apk: needs: [lint] if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') From e7421171f4c3afadaa299f33ee62f98f287cbb3a Mon Sep 17 00:00:00 2001 From: Kyujin Cho Date: Thu, 16 May 2024 11:42:35 +0900 Subject: [PATCH 3/3] chore(ci): add `auto-author-assign` action --- .github/workflows/auto-author-assign.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/auto-author-assign.yml diff --git a/.github/workflows/auto-author-assign.yml b/.github/workflows/auto-author-assign.yml new file mode 100644 index 0000000..3921372 --- /dev/null +++ b/.github/workflows/auto-author-assign.yml @@ -0,0 +1,14 @@ +name: 'Auto Author Assign' + +on: + pull_request_target: + types: [opened, reopened] + +permissions: + pull-requests: write + +jobs: + assign-author: + runs-on: ubuntu-latest + steps: + - uses: toshimaru/auto-author-assign@v2.1.0 \ No newline at end of file