first commit

This commit is contained in:
2026-04-29 12:53:22 +07:00
commit e6a30eddd3
394 changed files with 16408 additions and 0 deletions

18
lib/l10n/arb/app_en.arb Normal file
View File

@@ -0,0 +1,18 @@
{
"@@locale": "en",
"counterAppBarTitle": "Counter",
"@counterAppBarTitle": {
"description": "Text shown in the AppBar of the Counter Page"
},
"@login": {
"title": "Sign-in to continue your maintenance tasks",
"labelUsername": "Employee ID / Username",
"descriptionUsername": "Enter your employee ID / Username",
"labelPassword": "Password",
"descriptionPassword": "Enter your password",
"loginForgotPassword": "Forgot Password?",
"loginButton": "Login",
"questTest": "Having trouble?",
"contactAdmin": "Contact Admin"
}
}

7
lib/l10n/arb/app_es.arb Normal file
View File

@@ -0,0 +1,7 @@
{
"@@locale": "es",
"counterAppBarTitle": "Contador",
"@counterAppBarTitle": {
"description": "Texto mostrado en la AppBar de la página del contador"
}
}

11
lib/l10n/arb/app_id.arb Normal file
View File

@@ -0,0 +1,11 @@
{
"@@locale": "id",
"counterAppBarTitle": "Penghitung",
"@counterAppBarTitle": {
"description": "Teks yang ditampilkan di AppBar pada Halaman Penghitung"
},
"@loginTitle": "Masuk",
"@loginAppBarTitle": {
"description": "Teks yang ditampilkan di AppBar pada Halaman Login"
}
}

8
lib/l10n/l10n.dart Normal file
View File

@@ -0,0 +1,8 @@
import 'package:flutter/widgets.dart';
import 'package:frontend_eccp_mobile/l10n/gen/app_localizations.dart';
export 'package:frontend_eccp_mobile/l10n/gen/app_localizations.dart';
extension AppLocalizationsX on BuildContext {
AppLocalizations get l10n => AppLocalizations.of(this);
}