Skip to content

Commit 8e8efdf

Browse files
authored
Merge pull request #297 from Linaro/marcpe_app_assure_batch2_merge
Marcpe app assure batch2 merge
2 parents 1c62433 + 5e49525 commit 8e8efdf

File tree

73 files changed

+592
-4
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+592
-4
lines changed

public/locales/ja/translation.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,12 @@
126126
"application_filters": {
127127
"category": "カテゴリー"
128128
},
129+
"application_compatibility_values": {
130+
"native": "ネイティブ",
131+
"emulation": "エミュレーション",
132+
"no": "いいえ",
133+
"unknown": "不明"
134+
},
129135
"application_category_values": {
130136
"accessibility": "アクセシビリティ",
131137
"ai-tool": "AI ツール",

public/locales/ko/translation.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,13 @@
126126
"application_filters": {
127127
"category": "카테고리"
128128
},
129-
"application_category_values": {
129+
"application_compatibility_values": {
130+
"native": "원주율",
131+
"emulation": "에뮬레이션",
132+
"no": "아니요",
133+
"unknown": "알 수 없음"
134+
},
135+
"application_category_values": {
130136
"accessibility": "접근성",
131137
"ai-tool": "AI 도구",
132138
"ai": "AI 앱",

public/locales/zh/translation.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,12 @@
126126
"application_filters": {
127127
"category": "类别"
128128
},
129+
"application_compatibility_values": {
130+
"native": "ネイティブ",
131+
"emulation": "エミュレーション",
132+
"no": "いいえ",
133+
"unknown": "不明"
134+
},
129135
"application_category_values": {
130136
"accessibility": "辅助功能",
131137
"ai-tool": "AI 工具",

src/components/Projects/ApplicationDetails.astro

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,15 @@ const t = await getFixedT(locale);
4747
if (
4848
["Compatible", "Compatible via Web Browser"].includes(data.display_result)
4949
) {
50+
if (data.compatibility == "native") {
51+
return (
52+
<p class="text-green-500 flex items-center text-xl md:text-3xl justify-end w-full pr-8">
53+
<span class="text-2xl md:text-5xl pr-2 md:pr-4">✓</span>{" "}
54+
{t(`application_display_result.${data.display_result}`)}
55+
{t(`application_compatibility_values.${data.compatibility}`)}
56+
</p>
57+
);
58+
}
5059
return (
5160
<p class="text-green-500 flex items-center text-xl md:text-3xl justify-end w-full pr-8">
5261
<span class="text-2xl md:text-5xl pr-2 md:pr-4">✓</span>{" "}
@@ -55,12 +64,28 @@ const t = await getFixedT(locale);
5564
);
5665
}
5766
if (data.display_result === "Vendor Announced - Launching Soon") {
67+
if (data.compatibility == "native") {
68+
return (
69+
<p class="text-green-500 flex items-center text-xl md:text-3xl justify-end w-full pr-8">
70+
{t(`application_display_result.${data.display_result}`)}
71+
{t(`application_compatibility_values.${data.compatibility}`)}
72+
</p>
73+
);
74+
}
5875
return (
5976
<p class="text-green-500 flex items-center text-xl md:text-3xl justify-end w-full pr-8">
6077
{t(`application_display_result.${data.display_result}`)}
6178
</p>
6279
);
6380
}
81+
if (data.compatibility == "native") {
82+
return (
83+
<p class="text-red-500 flex items-center text-xl md:text-3xl justify-end w-full pr-8">
84+
{t(`application_display_result.${data.display_result}`)}
85+
{t(`application_compatibility_values.${data.compatibility}`)}
86+
</p>
87+
);
88+
}
6489
return (
6590
<p class="text-red-500 flex items-center text-xl md:text-3xl justify-end w-full pr-8">
6691
{t(`application_display_result.${data.display_result}`)}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
name: "2345 Pinyin IME"
3+
categories: ['accessibility']
4+
compatibility: native
5+
display_result: "Compatible"
6+
version_from: "7.9"
7+
link: https://pinyin.2345.cc
8+
---
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
name: "Airlock"
3+
categories: ['endpoint-sec']
4+
compatibility: native
5+
display_result: "Compatible"
6+
version_from: "6.0"
7+
link: https://www.airlockdigital.com
8+
---
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
name: "Akami Guardicore Platform Agent"
3+
categories: ['endpoint-sec']
4+
compatibility: native
5+
display_result: "Compatible"
6+
version_from: "7.1.0"
7+
link: https://techdocs.akamai.com
8+
---
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
name: "BigFix"
3+
categories: ['endpoint-sec']
4+
compatibility: native
5+
display_result: "Compatible"
6+
version_from: "11.0.1"
7+
link: https://support.bigfix.com/bes/release/
8+
---
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
name: "CPUZ-Arm64"
3+
categories: ['benchmarking']
4+
compatibility: native
5+
display_result: "Compatible"
6+
version_from: "1.01"
7+
link: https://www.cpuid.com/softwares/cpu-z-arm64.html
8+
---
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
name: "Carbonite Endpoint"
3+
categories: ['it']
4+
compatibility: emulation
5+
display_result: "Compatible"
6+
version_from: "11.3"
7+
link: https://support.carbonite.com
8+
---

0 commit comments

Comments
 (0)