Skip to content

Commit

Permalink
Merge branch 'main' into credential_detail
Browse files Browse the repository at this point in the history
  • Loading branch information
phoebus-84 committed Feb 9, 2024
2 parents 1b5fabc + 58b3c7b commit df80a69
Show file tree
Hide file tree
Showing 45 changed files with 831 additions and 95 deletions.
5 changes: 5 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"recommendations": [
"inlang.vs-code-extension"
]
}
1 change: 1 addition & 0 deletions android/app/capacitor.build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ dependencies {
implementation project(':capacitor-app')
implementation project(':capacitor-camera')
implementation project(':capacitor-clipboard')
implementation project(':capacitor-device')
implementation project(':capacitor-filesystem')
implementation project(':capacitor-haptics')
implementation project(':capacitor-keyboard')
Expand Down
3 changes: 3 additions & 0 deletions android/capacitor.settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ project(':capacitor-camera').projectDir = new File('../node_modules/.pnpm/@capac
include ':capacitor-clipboard'
project(':capacitor-clipboard').projectDir = new File('../node_modules/.pnpm/@[email protected]_@[email protected]/node_modules/@capacitor/clipboard/android')

include ':capacitor-device'
project(':capacitor-device').projectDir = new File('../node_modules/.pnpm/@[email protected]_@[email protected]/node_modules/@capacitor/device/android')

include ':capacitor-filesystem'
project(':capacitor-filesystem').projectDir = new File('../node_modules/.pnpm/@[email protected]_@[email protected]/node_modules/@capacitor/filesystem/android')

Expand Down
1 change: 1 addition & 0 deletions ios/App/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ def capacitor_pods
pod 'CapacitorApp', :path => '../../node_modules/.pnpm/@[email protected]_@[email protected]/node_modules/@capacitor/app'
pod 'CapacitorCamera', :path => '../../node_modules/.pnpm/@[email protected]_@[email protected]/node_modules/@capacitor/camera'
pod 'CapacitorClipboard', :path => '../../node_modules/.pnpm/@[email protected]_@[email protected]/node_modules/@capacitor/clipboard'
pod 'CapacitorDevice', :path => '../../node_modules/.pnpm/@[email protected]_@[email protected]/node_modules/@capacitor/device'
pod 'CapacitorFilesystem', :path => '../../node_modules/.pnpm/@[email protected]_@[email protected]/node_modules/@capacitor/filesystem'
pod 'CapacitorHaptics', :path => '../../node_modules/.pnpm/@[email protected]_@[email protected]/node_modules/@capacitor/haptics'
pod 'CapacitorKeyboard', :path => '../../node_modules/.pnpm/@[email protected]_@[email protected]/node_modules/@capacitor/keyboard'
Expand Down
7 changes: 7 additions & 0 deletions messages/en.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"$schema": "https://inlang.com/schema/inlang-message-format",
"Claim_credential": "Claim credential",
"Wallet": "Wallet",
"Scan_QR_code_to_claim_credential_or_request_one_below": "Scan QR code to claim credential or request one below",
"Language": "Language"
}
7 changes: 7 additions & 0 deletions messages/it.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"$schema": "https://inlang.com/schema/inlang-message-format",
"Claim_credential": "Richiedi credenziale",
"Wallet": "Portafoglio",
"Scan_QR_code_to_claim_credential_or_request_one_below": "Scennerizza il QR code per ottenere una credenziale o verificarne una",
"Language": "Lingua"
}
8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"private": true,
"scripts": {
"dev": "vite dev --host",
"build": "vite build",
"build": "paraglide-js compile --project ./project.inlang && vite build",
"preview": "vite preview",
"test": "npm run test:integration && npm run test:unit",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
Expand All @@ -19,11 +19,13 @@
"android": "ionic cap run android -l --external",
"apk": "ionic capacitor copy android && cd android && ./gradlew assembleDebug && ./gradlew installDebug && cd ..",
"web": "ionic serve",
"icons": "npx capacitor-assets generate --ios --android"
"icons": "npx capacitor-assets generate --ios --android",
"postinstall": "paraglide-js compile --project ./project.inlang"
},
"devDependencies": {
"@capacitor/assets": "^3.0.4",
"@faker-js/faker": "^8.4.0",
"@inlang/paraglide-js": "1.2.2",
"@lottiefiles/svelte-lottie-player": "^0.3.1",
"@playwright/test": "^1.28.1",
"@semantic-release/changelog": "^6.0.3",
Expand Down Expand Up @@ -66,6 +68,7 @@
"@capacitor/cli": "^5.6.0",
"@capacitor/clipboard": "^5.0.7",
"@capacitor/core": "^5.6.0",
"@capacitor/device": "^5.0.7",
"@capacitor/filesystem": "^5.2.1",
"@capacitor/haptics": "^5.0.7",
"@capacitor/ios": "^5.6.0",
Expand All @@ -74,6 +77,7 @@
"@capacitor/status-bar": "^5.0.7",
"@efstajas/svelte-stepper": "^0.2.1",
"@fontsource-variable/gantari": "^5.0.9",
"@inlang/paraglide-js-adapter-sveltekit": "^0.3.3",
"@ionic/core": "^7.7.0",
"@slangroom/core": "^1.13.0",
"@slangroom/http": "^1.13.0",
Expand Down
Loading

0 comments on commit df80a69

Please sign in to comment.