mirror of
https://github.com/nextcloud/android.git
synced 2024-12-19 15:33:00 +03:00
Merge remote-tracking branch 'origin/master' into dev
This commit is contained in:
commit
e31a08c00d
5 changed files with 18 additions and 4 deletions
4
.github/workflows/codeql.yml
vendored
4
.github/workflows/codeql.yml
vendored
|
@ -39,7 +39,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
swap-size-gb: 10
|
swap-size-gb: 10
|
||||||
- name: Initialize CodeQL
|
- name: Initialize CodeQL
|
||||||
uses: github/codeql-action/init@2d790406f505036ef40ecba973cc774a50395aac # v3.25.13
|
uses: github/codeql-action/init@5cf07d8b700b67e235fbb65cbc84f69c0cf10464 # v3.25.14
|
||||||
with:
|
with:
|
||||||
languages: ${{ matrix.language }}
|
languages: ${{ matrix.language }}
|
||||||
- name: Set up JDK 17
|
- name: Set up JDK 17
|
||||||
|
@ -53,4 +53,4 @@ jobs:
|
||||||
echo "org.gradle.jvmargs=-Xmx4g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError" > "$HOME/.gradle/gradle.properties"
|
echo "org.gradle.jvmargs=-Xmx4g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError" > "$HOME/.gradle/gradle.properties"
|
||||||
./gradlew assembleDebug
|
./gradlew assembleDebug
|
||||||
- name: Perform CodeQL Analysis
|
- name: Perform CodeQL Analysis
|
||||||
uses: github/codeql-action/analyze@2d790406f505036ef40ecba973cc774a50395aac # v3.25.13
|
uses: github/codeql-action/analyze@5cf07d8b700b67e235fbb65cbc84f69c0cf10464 # v3.25.14
|
||||||
|
|
2
.github/workflows/scorecard.yml
vendored
2
.github/workflows/scorecard.yml
vendored
|
@ -42,6 +42,6 @@ jobs:
|
||||||
|
|
||||||
# Upload the results to GitHub's code scanning dashboard.
|
# Upload the results to GitHub's code scanning dashboard.
|
||||||
- name: "Upload to code-scanning"
|
- name: "Upload to code-scanning"
|
||||||
uses: github/codeql-action/upload-sarif@2d790406f505036ef40ecba973cc774a50395aac # v3.25.13
|
uses: github/codeql-action/upload-sarif@5cf07d8b700b67e235fbb65cbc84f69c0cf10464 # v3.25.14
|
||||||
with:
|
with:
|
||||||
sarif_file: results.sarif
|
sarif_file: results.sarif
|
||||||
|
|
|
@ -291,7 +291,7 @@ dependencies {
|
||||||
implementation "androidx.lifecycle:lifecycle-service:2.8.3"
|
implementation "androidx.lifecycle:lifecycle-service:2.8.3"
|
||||||
implementation "androidx.work:work-runtime:$workRuntime"
|
implementation "androidx.work:work-runtime:$workRuntime"
|
||||||
implementation "androidx.work:work-runtime-ktx:$workRuntime"
|
implementation "androidx.work:work-runtime-ktx:$workRuntime"
|
||||||
implementation "androidx.fragment:fragment-ktx:1.8.1"
|
implementation "androidx.fragment:fragment-ktx:1.8.2"
|
||||||
implementation 'com.github.albfernandez:juniversalchardet:2.0.3' // need this version for Android <7
|
implementation 'com.github.albfernandez:juniversalchardet:2.0.3' // need this version for Android <7
|
||||||
compileOnly 'com.google.code.findbugs:annotations:3.0.1u2'
|
compileOnly 'com.google.code.findbugs:annotations:3.0.1u2'
|
||||||
implementation 'commons-io:commons-io:2.16.1'
|
implementation 'commons-io:commons-io:2.16.1'
|
||||||
|
|
|
@ -48,7 +48,13 @@
|
||||||
<string name="assistant_screen_no_task_available_for_all_task_filter_text">利用可能なタスクがありません。タスクの種類を選択して、新しいタスクを作成してください。</string>
|
<string name="assistant_screen_no_task_available_for_all_task_filter_text">利用可能なタスクがありません。タスクの種類を選択して、新しいタスクを作成してください。</string>
|
||||||
<string name="assistant_screen_scheduled_task_status_text">スケジュール済</string>
|
<string name="assistant_screen_scheduled_task_status_text">スケジュール済</string>
|
||||||
<string name="assistant_screen_successful_task_text">完了</string>
|
<string name="assistant_screen_successful_task_text">完了</string>
|
||||||
|
<string name="assistant_screen_task_create_success_message">タスクは正常に作成されました。</string>
|
||||||
|
<string name="assistant_screen_task_delete_fail_message">タスクの削除中にエラーが発生しました。</string>
|
||||||
|
<string name="assistant_screen_task_delete_success_message">タスクは正常に削除されました。</string>
|
||||||
|
<string name="assistant_screen_task_list_error_state_message">タスクリストを取得できません。インターネット接続を確認してください。</string>
|
||||||
<string name="assistant_screen_task_more_actions_bottom_sheet_delete_action">タスクを削除</string>
|
<string name="assistant_screen_task_more_actions_bottom_sheet_delete_action">タスクを削除</string>
|
||||||
|
<string name="assistant_screen_task_types_error_state_message">タスクタイプを取得できません。インターネット接続を確認してください。</string>
|
||||||
|
<string name="assistant_screen_top_bar_title">アシスタント</string>
|
||||||
<string name="assistant_screen_unknown_task_status_text">不明</string>
|
<string name="assistant_screen_unknown_task_status_text">不明</string>
|
||||||
<string name="assistant_task_detail_screen_input_button_title">入力</string>
|
<string name="assistant_task_detail_screen_input_button_title">入力</string>
|
||||||
<string name="assistant_task_detail_screen_output_button_title">出力</string>
|
<string name="assistant_task_detail_screen_output_button_title">出力</string>
|
||||||
|
@ -82,6 +88,7 @@
|
||||||
<string name="auth_unknown_host_title">ホストを見つけられませんでした。</string>
|
<string name="auth_unknown_host_title">ホストを見つけられませんでした。</string>
|
||||||
<string name="auth_unsupported_multiaccount">%1$s は複数アカウントをサポートしていません</string>
|
<string name="auth_unsupported_multiaccount">%1$s は複数アカウントをサポートしていません</string>
|
||||||
<string name="auth_wrong_connection_title">接続を確立できませんでした</string>
|
<string name="auth_wrong_connection_title">接続を確立できませんでした</string>
|
||||||
|
<string name="authenticator_activity_cancel_login">ログインをキャンセル</string>
|
||||||
<string name="auto_upload_file_behaviour_kept_in_folder">読み取り専用のため元のフォルダに残しました</string>
|
<string name="auto_upload_file_behaviour_kept_in_folder">読み取り専用のため元のフォルダに残しました</string>
|
||||||
<string name="auto_upload_on_wifi">定額制 Wi-Fi でのみアップロード</string>
|
<string name="auto_upload_on_wifi">定額制 Wi-Fi でのみアップロード</string>
|
||||||
<string name="auto_upload_path">/AutoUpload</string>
|
<string name="auto_upload_path">/AutoUpload</string>
|
||||||
|
@ -244,6 +251,7 @@
|
||||||
<string name="drawer_header_background">ドロワーヘッダーの背景イメージ</string>
|
<string name="drawer_header_background">ドロワーヘッダーの背景イメージ</string>
|
||||||
<string name="drawer_item_activities">アクティビティ</string>
|
<string name="drawer_item_activities">アクティビティ</string>
|
||||||
<string name="drawer_item_all_files">すべてのファイル</string>
|
<string name="drawer_item_all_files">すべてのファイル</string>
|
||||||
|
<string name="drawer_item_assistant">アシスタント</string>
|
||||||
<string name="drawer_item_favorites">お気に入り</string>
|
<string name="drawer_item_favorites">お気に入り</string>
|
||||||
<string name="drawer_item_gallery">メディア</string>
|
<string name="drawer_item_gallery">メディア</string>
|
||||||
<string name="drawer_item_home">ホーム</string>
|
<string name="drawer_item_home">ホーム</string>
|
||||||
|
@ -260,6 +268,7 @@
|
||||||
<string name="drawer_synced_folders">自動アップロード</string>
|
<string name="drawer_synced_folders">自動アップロード</string>
|
||||||
<string name="e2e_not_yet_setup">E2E暗号化が未設定</string>
|
<string name="e2e_not_yet_setup">E2E暗号化が未設定</string>
|
||||||
<string name="e2e_offline">インターネット接続なしには不可能です</string>
|
<string name="e2e_offline">インターネット接続なしには不可能です</string>
|
||||||
|
<string name="ecosystem_apps_display_assistant">アシスタント</string>
|
||||||
<string name="ecosystem_apps_display_more">さらに表示</string>
|
<string name="ecosystem_apps_display_more">さらに表示</string>
|
||||||
<string name="ecosystem_apps_display_notes">ノート</string>
|
<string name="ecosystem_apps_display_notes">ノート</string>
|
||||||
<string name="ecosystem_apps_display_talk">トーク</string>
|
<string name="ecosystem_apps_display_talk">トーク</string>
|
||||||
|
|
|
@ -1706,6 +1706,11 @@
|
||||||
<sha256 value="81526b28c3e4b513760174ee26142c1372c9e13d1c8bf3a220830307aca1971f" origin="Generated by Gradle"/>
|
<sha256 value="81526b28c3e4b513760174ee26142c1372c9e13d1c8bf3a220830307aca1971f" origin="Generated by Gradle"/>
|
||||||
</artifact>
|
</artifact>
|
||||||
</component>
|
</component>
|
||||||
|
<component group="androidx.fragment" name="fragment" version="1.8.2">
|
||||||
|
<artifact name="fragment-1.8.2.aar">
|
||||||
|
<sha256 value="c14786bdad6e7b12289a70de7d4f6b68dc7920278044d8dbdefeb3c3a7172d3e" origin="Generated by Gradle"/>
|
||||||
|
</artifact>
|
||||||
|
</component>
|
||||||
<component group="androidx.fragment" name="fragment-ktx" version="1.3.2">
|
<component group="androidx.fragment" name="fragment-ktx" version="1.3.2">
|
||||||
<artifact name="fragment-ktx-1.3.2.aar">
|
<artifact name="fragment-ktx-1.3.2.aar">
|
||||||
<sha256 value="29af1e9ee0e93b5fc638600c230705584aecc49205c363f0923ba1e5be675533" origin="Generated by Gradle" reason="Artifact is not signed"/>
|
<sha256 value="29af1e9ee0e93b5fc638600c230705584aecc49205c363f0923ba1e5be675533" origin="Generated by Gradle" reason="Artifact is not signed"/>
|
||||||
|
|
Loading…
Reference in a new issue