initial commit to gitea

This commit is contained in:
2022-03-10 00:47:26 -05:00
parent 808ffa3211
commit f504e213a0
93 changed files with 4394 additions and 1539 deletions

View File

@@ -3439,13 +3439,13 @@ class S {
);
}
/// `Payment verification code has been sent to your mobile phone {mobile}. Please enter the verification code below.`
String payment_verification_sent(Object mobile) {
/// `Payment verification code has been sent to your {p1} {p2}. Please enter the verification code below.`
String payment_verification_sent(Object p1, Object p2) {
return Intl.message(
'Payment verification code has been sent to your mobile phone $mobile. Please enter the verification code below.',
'Payment verification code has been sent to your $p1 $p2. Please enter the verification code below.',
name: 'payment_verification_sent',
desc: '',
args: [mobile],
args: [p1, p2],
);
}
@@ -3978,6 +3978,146 @@ class S {
args: [],
);
}
/// `Enter keyword`
String get enter_keyword {
return Intl.message(
'Enter keyword',
name: 'enter_keyword',
desc: '',
args: [],
);
}
/// `Search`
String get search {
return Intl.message(
'Search',
name: 'search',
desc: '',
args: [],
);
}
/// `Open an online store`
String get create_a_online_store {
return Intl.message(
'Open an online store',
name: 'create_a_online_store',
desc: '',
args: [],
);
}
/// `Open an online store`
String get open_online_store {
return Intl.message(
'Open an online store',
name: 'open_online_store',
desc: '',
args: [],
);
}
/// `Select a store`
String get select_a_store {
return Intl.message(
'Select a store',
name: 'select_a_store',
desc: '',
args: [],
);
}
/// `Domain name`
String get domain_name {
return Intl.message(
'Domain name',
name: 'domain_name',
desc: '',
args: [],
);
}
/// `Your desired domain name`
String get enter_desired_domain {
return Intl.message(
'Your desired domain name',
name: 'enter_desired_domain',
desc: '',
args: [],
);
}
/// `Check availability`
String get check_domain_name {
return Intl.message(
'Check availability',
name: 'check_domain_name',
desc: '',
args: [],
);
}
/// `Domains separated by comma`
String get domains_separated_comma {
return Intl.message(
'Domains separated by comma',
name: 'domains_separated_comma',
desc: '',
args: [],
);
}
/// `{domain} (available)`
String domain_available_token(Object domain) {
return Intl.message(
'$domain (available)',
name: 'domain_available_token',
desc: '',
args: [domain],
);
}
/// `{domain} (unavailable)`
String domain_unavailable_token(Object domain) {
return Intl.message(
'$domain (unavailable)',
name: 'domain_unavailable_token',
desc: '',
args: [domain],
);
}
/// `Place order now`
String get place_order_now {
return Intl.message(
'Place order now',
name: 'place_order_now',
desc: '',
args: [],
);
}
/// `mobile`
String get mobile {
return Intl.message(
'mobile',
name: 'mobile',
desc: '',
args: [],
);
}
/// `Renew service now`
String get renew_service_now {
return Intl.message(
'Renew service now',
name: 'renew_service_now',
desc: '',
args: [],
);
}
}
class AppLocalizationDelegate extends LocalizationsDelegate<S> {