Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Sign in / Register
Toggle navigation
S
Scan QR Code Barcode Reader
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wanglei
Scan QR Code Barcode Reader
Commits
f70cc18e
Commit
f70cc18e
authored
Jan 07, 2025
by
wanglei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
...多语言
parent
60f1ac08
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
83 additions
and
25 deletions
+83
-25
AndroidManifest.xml
app/src/main/AndroidManifest.xml
+41
-24
strings.xml
app/src/main/res/values-de/strings.xml
+8
-0
strings.xml
app/src/main/res/values-es/strings.xml
+8
-0
strings.xml
app/src/main/res/values-ja/strings.xml
+8
-0
strings.xml
app/src/main/res/values-ko/strings.xml
+8
-0
strings.xml
app/src/main/res/values-zh-rCN/strings.xml
+9
-0
strings.xml
app/src/main/res/values/strings.xml
+1
-1
No files found.
app/src/main/AndroidManifest.xml
View file @
f70cc18e
...
...
@@ -35,49 +35,66 @@
android:supportsRtl=
"true"
android:theme=
"@style/Theme.ScanQR"
tools:targetApi=
"31"
>
<activity
android:name=
".ui.start.StartActivity"
android:exported=
"true"
android:launchMode=
"singleTask"
android:screenOrientation=
"portrait"
android:theme=
"@style/splash.theme"
tools:ignore=
"DiscouragedApi,LockedOrientationActivity"
>
<intent-filter>
<action
android:name=
"android.intent.action.MAIN"
/>
<category
android:name=
"android.intent.category.LAUNCHER"
/>
</intent-filter>
</activity>
<activity
android:name=
".ui.main.MainActivity"
android:exported=
"false"
android:launchMode=
"singleTop"
android:screenOrientation=
"portrait"
tools:ignore=
"DiscouragedApi,LockedOrientationActivity"
/>
<activity
android:name=
".ui.guide.GuideActivity"
android:exported=
"false"
/>
android:exported=
"false"
android:screenOrientation=
"portrait"
tools:ignore=
"DiscouragedApi,LockedOrientationActivity"
/>
<activity
android:name=
".ui.location.LocationCodeActivity"
android:exported=
"false"
/>
android:exported=
"false"
android:screenOrientation=
"portrait"
tools:ignore=
"DiscouragedApi,LockedOrientationActivity"
/>
<activity
android:name=
".ui.location.LocationActivity"
android:exported=
"false"
/>
android:exported=
"false"
android:screenOrientation=
"portrait"
tools:ignore=
"DiscouragedApi,LockedOrientationActivity"
/>
<activity
android:name=
".ui.message.MessageCodeActivity"
android:exported=
"false"
/>
android:exported=
"false"
android:screenOrientation=
"portrait"
tools:ignore=
"DiscouragedApi,LockedOrientationActivity"
/>
<activity
android:name=
".ui.message.MessageActivity"
android:exported=
"false"
/>
android:exported=
"false"
android:screenOrientation=
"portrait"
tools:ignore=
"DiscouragedApi,LockedOrientationActivity"
/>
<activity
android:name=
".ui.contact.ContractCodeActivity"
android:exported=
"false"
/>
android:exported=
"false"
android:screenOrientation=
"portrait"
tools:ignore=
"DiscouragedApi,LockedOrientationActivity"
/>
<activity
android:name=
".ui.contact.ContractActivity"
android:exported=
"false"
/>
<activity
android:name=
".ui.telephone.TelephoneCodeActivity"
android:exported=
"false"
android:theme=
"@style/Theme.ScanQR"
/>
<activity
android:name=
".ui.start.StartActivity"
android:exported=
"true"
android:launchMode=
"singleTask"
android:screenOrientation=
"portrait"
android:theme=
"@style/splash.theme"
tools:ignore=
"DiscouragedApi,LockedOrientationActivity"
>
<intent-filter>
<action
android:name=
"android.intent.action.MAIN"
/>
<category
android:name=
"android.intent.category.LAUNCHER"
/>
</intent-filter>
</activity>
tools:ignore=
"DiscouragedApi,LockedOrientationActivity"
/>
<activity
android:name=
".ui.
main.Main
Activity"
android:name=
".ui.
telephone.TelephoneCode
Activity"
android:exported=
"false"
android:launchMode=
"singleTop"
android:screenOrientation=
"portrait"
android:theme=
"@style/Theme.ScanQR"
tools:ignore=
"DiscouragedApi,LockedOrientationActivity"
/>
<activity
android:name=
".ui.telephone.TelephoneActivity"
...
...
app/src/main/res/values-de/strings.xml
View file @
f70cc18e
...
...
@@ -101,4 +101,12 @@
<string
name=
"enter_address"
>
Adresse eingeben
</string>
<string
name=
"enter_telephone_number"
>
Telefonnummer eingeben
</string>
<string
name=
"enter_email"
>
E-Mail eingeben
</string>
<string
name=
"quickly_scan_products"
>
Produkte schnell scannen
</string>
<string
name=
"create_share_qr_code"
>
QR-Code erstellen
&
teilen
</string>
<string
name=
"scan_barcode_qr_code"
>
Barcode
&
QR-Code scannen
</string>
<string
name=
"guide_1"
>
Barcodes und QR-Codes in Bilder scannen, um sie zu speichern und zu teilen
</string>
<string
name=
"guide_2"
>
Produkte scannen, um Preise und andere Informationen zu erhalten
</string>
<string
name=
"guide_3"
>
Die verschiedenen Informationen, die Sie teilen möchten, in QR-Codes bearbeiten
</string>
<string
name=
"continue_"
>
Weiter
</string>
<string
name=
"complete"
>
Fertig
</string>
</resources>
\ No newline at end of file
app/src/main/res/values-es/strings.xml
View file @
f70cc18e
...
...
@@ -101,4 +101,12 @@
<string
name=
"enter_address"
>
Ingrese la dirección
</string>
<string
name=
"enter_telephone_number"
>
Ingrese el número de teléfono
</string>
<string
name=
"enter_email"
>
Ingrese el correo electrónico
</string>
<string
name=
"quickly_scan_products"
>
Escanea rápidamente los productos
</string>
<string
name=
"create_share_qr_code"
>
Crear
&
Compartir QR
</string>
<string
name=
"scan_barcode_qr_code"
>
Escanea código de barras
&
QR
</string>
<string
name=
"guide_1"
>
Escanea códigos de barras y QR en imágenes para almacenar y compartir
</string>
<string
name=
"guide_2"
>
Escanea los productos para obtener precios y otra información
</string>
<string
name=
"guide_3"
>
Edita la información que deseas compartir en códigos QR
</string>
<string
name=
"continue_"
>
Continuar
</string>
<string
name=
"complete"
>
Completar
</string>
</resources>
\ No newline at end of file
app/src/main/res/values-ja/strings.xml
View file @
f70cc18e
...
...
@@ -102,4 +102,12 @@
<string
name=
"enter_address"
>
住所を入力してください
</string>
<string
name=
"enter_telephone_number"
>
電話番号を入力してください
</string>
<string
name=
"enter_email"
>
メールアドレスを入力してください
</string>
<string
name=
"quickly_scan_products"
>
製品を素早くスキャン
</string>
<string
name=
"create_share_qr_code"
>
QRコードを作成
&
共有
</string>
<string
name=
"scan_barcode_qr_code"
>
バーコード
&
QRコードをスキャン
</string>
<string
name=
"guide_1"
>
バーコードとQRコードを画像にスキャンして保存し、共有をサポートします
</string>
<string
name=
"guide_2"
>
製品をスキャンして価格やその他の情報を取得します
</string>
<string
name=
"guide_3"
>
共有したいさまざまな情報をQRコードに編集します
</string>
<string
name=
"continue_"
>
続ける
</string>
<string
name=
"complete"
>
完了
</string>
</resources>
\ No newline at end of file
app/src/main/res/values-ko/strings.xml
View file @
f70cc18e
...
...
@@ -101,4 +101,12 @@
<string
name=
"enter_address"
>
주소를 입력하세요
</string>
<string
name=
"enter_telephone_number"
>
전화번호를 입력하세요
</string>
<string
name=
"enter_email"
>
이메일을 입력하세요
</string>
<string
name=
"quickly_scan_products"
>
제품을 빠르게 스캔
</string>
<string
name=
"create_share_qr_code"
>
QR 코드를 만들고 공유
</string>
<string
name=
"scan_barcode_qr_code"
>
바코드
&
QR 코드 스캔
</string>
<string
name=
"guide_1"
>
바코드와 QR 코드를 이미지로 스캔하여 저장하고 공유를 지원합니다
</string>
<string
name=
"guide_2"
>
제품을 스캔하여 가격 및 기타 정보를 얻습니다
</string>
<string
name=
"guide_3"
>
공유하고 싶은 다양한 정보를 QR 코드로 편집합니다
</string>
<string
name=
"continue_"
>
계속
</string>
<string
name=
"complete"
>
완료
</string>
</resources>
\ No newline at end of file
app/src/main/res/values-zh-rCN/strings.xml
View file @
f70cc18e
...
...
@@ -101,4 +101,13 @@
<string
name=
"enter_address"
>
输入地址
</string>
<string
name=
"enter_telephone_number"
>
输入电话号码
</string>
<string
name=
"enter_email"
>
输入电子邮件
</string>
<string
name=
"quickly_scan_products"
>
快速扫描产品
</string>
<string
name=
"create_share_qr_code"
>
创建
&
分享二维码
</string>
<string
name=
"scan_barcode_qr_code"
>
扫描条形码
&
二维码
</string>
<string
name=
"guide_1"
>
将条形码和二维码扫描成图片进行存储,支持分享
</string>
<string
name=
"guide_2"
>
扫描产品以获取价格和其他信息
</string>
<string
name=
"guide_3"
>
将您想要分享的各种信息编辑成二维码
</string>
<string
name=
"continue_"
>
继续
</string>
<string
name=
"complete"
>
完成
</string>
</resources>
\ No newline at end of file
app/src/main/res/values/strings.xml
View file @
f70cc18e
...
...
@@ -110,7 +110,7 @@
<string
name=
"quickly_scan_products"
>
Quickly scan products
</string>
<string
name=
"create_share_qr_code"
>
Create
&
Share QR Code
</string>
<string
name=
"scan_barcode_qr_code"
tools:ignore=
"MissingTranslation"
>
Scan Barcode
&
QR Code
</string>
<string
name=
"scan_barcode_qr_code"
>
Scan Barcode
&
QR Code
</string>
<string
name=
"guide_1"
>
Scan barcodes and QR codes into images for storage, support sharing
</string>
<string
name=
"guide_2"
>
Scan products to obtain prices and other information
</string>
<string
name=
"guide_3"
>
Edit the various information you want to share into QR codes
</string>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment