mirror of
https://github.com/nostrlabs-io/zap-stream-flutter.git
synced 2025-06-15 11:48:21 +00:00
feat: disconnect wallet
This commit is contained in:
@ -10,6 +10,7 @@ import 'package:zap_stream_flutter/pages/login.dart';
|
|||||||
import 'package:zap_stream_flutter/pages/login_input.dart';
|
import 'package:zap_stream_flutter/pages/login_input.dart';
|
||||||
import 'package:zap_stream_flutter/pages/new_account.dart';
|
import 'package:zap_stream_flutter/pages/new_account.dart';
|
||||||
import 'package:zap_stream_flutter/pages/profile.dart';
|
import 'package:zap_stream_flutter/pages/profile.dart';
|
||||||
|
import 'package:zap_stream_flutter/pages/settings.dart';
|
||||||
import 'package:zap_stream_flutter/pages/settings_profile.dart';
|
import 'package:zap_stream_flutter/pages/settings_profile.dart';
|
||||||
import 'package:zap_stream_flutter/pages/settings_wallet.dart';
|
import 'package:zap_stream_flutter/pages/settings_wallet.dart';
|
||||||
import 'package:zap_stream_flutter/pages/stream.dart';
|
import 'package:zap_stream_flutter/pages/stream.dart';
|
||||||
@ -109,7 +110,7 @@ void runZapStream() {
|
|||||||
routes: [
|
routes: [
|
||||||
GoRoute(
|
GoRoute(
|
||||||
path: "/settings",
|
path: "/settings",
|
||||||
builder: (context, state) => SizedBox(),
|
builder: (context, state) => SettingsPage(),
|
||||||
routes: [
|
routes: [
|
||||||
GoRoute(
|
GoRoute(
|
||||||
path: "profile",
|
path: "profile",
|
||||||
|
@ -4,9 +4,9 @@
|
|||||||
/// To regenerate, run: `dart run slang`
|
/// To regenerate, run: `dart run slang`
|
||||||
///
|
///
|
||||||
/// Locales: 28
|
/// Locales: 28
|
||||||
/// Strings: 1768 (63 per locale)
|
/// Strings: 1988 (71 per locale)
|
||||||
///
|
///
|
||||||
/// Built on 2025-05-26 at 10:54 UTC
|
/// Built on 2025-05-26 at 12:50 UTC
|
||||||
|
|
||||||
// coverage:ignore-file
|
// coverage:ignore-file
|
||||||
// ignore_for_file: type=lint, unused_import
|
// ignore_for_file: type=lint, unused_import
|
||||||
|
@ -67,6 +67,7 @@ class TranslationsAf extends Translations {
|
|||||||
|
|
||||||
@override late final _TranslationsZapAf zap = _TranslationsZapAf._(_root);
|
@override late final _TranslationsZapAf zap = _TranslationsZapAf._(_root);
|
||||||
@override late final _TranslationsProfileAf profile = _TranslationsProfileAf._(_root);
|
@override late final _TranslationsProfileAf profile = _TranslationsProfileAf._(_root);
|
||||||
|
@override late final _TranslationsSettingsAf settings = _TranslationsSettingsAf._(_root);
|
||||||
@override late final _TranslationsLoginAf login = _TranslationsLoginAf._(_root);
|
@override late final _TranslationsLoginAf login = _TranslationsLoginAf._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -118,6 +119,8 @@ class _TranslationsButtonAf extends TranslationsButtonEn {
|
|||||||
@override String get unmute => 'Unmute';
|
@override String get unmute => 'Unmute';
|
||||||
@override String get share => 'Share';
|
@override String get share => 'Share';
|
||||||
@override String get save => 'Save';
|
@override String get save => 'Save';
|
||||||
|
@override String get connect => 'Connect';
|
||||||
|
@override String get settings => 'Settings';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: embed
|
// Path: embed
|
||||||
@ -159,6 +162,7 @@ class _TranslationsZapAf extends TranslationsZapEn {
|
|||||||
@override String button_zap_ready({required Object amount}) => 'Zap ${amount} sats';
|
@override String button_zap_ready({required Object amount}) => 'Zap ${amount} sats';
|
||||||
@override String get button_zap => 'Zap';
|
@override String get button_zap => 'Zap';
|
||||||
@override String get button_open_wallet => 'Open in Wallet';
|
@override String get button_open_wallet => 'Open in Wallet';
|
||||||
|
@override String get button_connect_wallet => 'Connect Wallet';
|
||||||
@override String get copy => 'Copied to clipboard';
|
@override String get copy => 'Copied to clipboard';
|
||||||
@override late final _TranslationsZapErrorAf error = _TranslationsZapErrorAf._(_root);
|
@override late final _TranslationsZapErrorAf error = _TranslationsZapErrorAf._(_root);
|
||||||
}
|
}
|
||||||
@ -171,7 +175,19 @@ class _TranslationsProfileAf extends TranslationsProfileEn {
|
|||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
@override String get past_streams => 'Past Streams';
|
@override String get past_streams => 'Past Streams';
|
||||||
@override late final _TranslationsProfileEditAf edit = _TranslationsProfileEditAf._(_root);
|
}
|
||||||
|
|
||||||
|
// Path: settings
|
||||||
|
class _TranslationsSettingsAf extends TranslationsSettingsEn {
|
||||||
|
_TranslationsSettingsAf._(TranslationsAf root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsAf _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get button_profile => 'Edit Profile';
|
||||||
|
@override String get button_wallet => 'Wallet Settings';
|
||||||
|
@override late final _TranslationsSettingsProfileAf profile = _TranslationsSettingsProfileAf._(_root);
|
||||||
|
@override late final _TranslationsSettingsWalletAf wallet = _TranslationsSettingsWalletAf._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login
|
// Path: login
|
||||||
@ -247,9 +263,9 @@ class _TranslationsZapErrorAf extends TranslationsZapErrorEn {
|
|||||||
@override String get no_lud16 => 'No lightning address found';
|
@override String get no_lud16 => 'No lightning address found';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit
|
// Path: settings.profile
|
||||||
class _TranslationsProfileEditAf extends TranslationsProfileEditEn {
|
class _TranslationsSettingsProfileAf extends TranslationsSettingsProfileEn {
|
||||||
_TranslationsProfileEditAf._(TranslationsAf root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileAf._(TranslationsAf root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsAf _root; // ignore: unused_field
|
final TranslationsAf _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -258,7 +274,19 @@ class _TranslationsProfileEditAf extends TranslationsProfileEditEn {
|
|||||||
@override String get about => 'About';
|
@override String get about => 'About';
|
||||||
@override String get nip05 => 'Nostr Address';
|
@override String get nip05 => 'Nostr Address';
|
||||||
@override String get lud16 => 'Lightning Address';
|
@override String get lud16 => 'Lightning Address';
|
||||||
@override late final _TranslationsProfileEditErrorAf error = _TranslationsProfileEditErrorAf._(_root);
|
@override late final _TranslationsSettingsProfileErrorAf error = _TranslationsSettingsProfileErrorAf._(_root);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet
|
||||||
|
class _TranslationsSettingsWalletAf extends TranslationsSettingsWalletEn {
|
||||||
|
_TranslationsSettingsWalletAf._(TranslationsAf root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsAf _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get connect_wallet => 'Connect Wallet (NWC nwc://)';
|
||||||
|
@override String get disconnect_wallet => 'Disconnect Wallet';
|
||||||
|
@override late final _TranslationsSettingsWalletErrorAf error = _TranslationsSettingsWalletErrorAf._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login.error
|
// Path: login.error
|
||||||
@ -319,9 +347,9 @@ class _TranslationsStreamChatRaidAf extends TranslationsStreamChatRaidEn {
|
|||||||
@override String countdown({required Object time}) => 'Raiding in ${time}';
|
@override String countdown({required Object time}) => 'Raiding in ${time}';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit.error
|
// Path: settings.profile.error
|
||||||
class _TranslationsProfileEditErrorAf extends TranslationsProfileEditErrorEn {
|
class _TranslationsSettingsProfileErrorAf extends TranslationsSettingsProfileErrorEn {
|
||||||
_TranslationsProfileEditErrorAf._(TranslationsAf root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileErrorAf._(TranslationsAf root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsAf _root; // ignore: unused_field
|
final TranslationsAf _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -329,6 +357,16 @@ class _TranslationsProfileEditErrorAf extends TranslationsProfileEditErrorEn {
|
|||||||
@override String get logged_out => 'Cant edit profile when logged out';
|
@override String get logged_out => 'Cant edit profile when logged out';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet.error
|
||||||
|
class _TranslationsSettingsWalletErrorAf extends TranslationsSettingsWalletErrorEn {
|
||||||
|
_TranslationsSettingsWalletErrorAf._(TranslationsAf root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsAf _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get logged_out => 'Cant connect wallet when logged out';
|
||||||
|
}
|
||||||
|
|
||||||
/// Flat map(s) containing all translations.
|
/// Flat map(s) containing all translations.
|
||||||
/// Only for edge cases! For simple maps, use the map function of this library.
|
/// Only for edge cases! For simple maps, use the map function of this library.
|
||||||
extension on TranslationsAf {
|
extension on TranslationsAf {
|
||||||
@ -381,6 +419,8 @@ extension on TranslationsAf {
|
|||||||
case 'button.unmute': return 'Unmute';
|
case 'button.unmute': return 'Unmute';
|
||||||
case 'button.share': return 'Share';
|
case 'button.share': return 'Share';
|
||||||
case 'button.save': return 'Save';
|
case 'button.save': return 'Save';
|
||||||
|
case 'button.connect': return 'Connect';
|
||||||
|
case 'button.settings': return 'Settings';
|
||||||
case 'embed.article_by': return ({required Object name}) => 'Article by ${name}';
|
case 'embed.article_by': return ({required Object name}) => 'Article by ${name}';
|
||||||
case 'embed.note_by': return ({required Object name}) => 'Note by ${name}';
|
case 'embed.note_by': return ({required Object name}) => 'Note by ${name}';
|
||||||
case 'embed.live_stream_by': return ({required Object name}) => 'Live stream by ${name}';
|
case 'embed.live_stream_by': return ({required Object name}) => 'Live stream by ${name}';
|
||||||
@ -395,16 +435,22 @@ extension on TranslationsAf {
|
|||||||
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zap ${amount} sats';
|
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zap ${amount} sats';
|
||||||
case 'zap.button_zap': return 'Zap';
|
case 'zap.button_zap': return 'Zap';
|
||||||
case 'zap.button_open_wallet': return 'Open in Wallet';
|
case 'zap.button_open_wallet': return 'Open in Wallet';
|
||||||
|
case 'zap.button_connect_wallet': return 'Connect Wallet';
|
||||||
case 'zap.copy': return 'Copied to clipboard';
|
case 'zap.copy': return 'Copied to clipboard';
|
||||||
case 'zap.error.invalid_custom_amount': return 'Invalid custom amount';
|
case 'zap.error.invalid_custom_amount': return 'Invalid custom amount';
|
||||||
case 'zap.error.no_wallet': return 'No lightning wallet installed';
|
case 'zap.error.no_wallet': return 'No lightning wallet installed';
|
||||||
case 'zap.error.no_lud16': return 'No lightning address found';
|
case 'zap.error.no_lud16': return 'No lightning address found';
|
||||||
case 'profile.past_streams': return 'Past Streams';
|
case 'profile.past_streams': return 'Past Streams';
|
||||||
case 'profile.edit.display_name': return 'Display Name';
|
case 'settings.button_profile': return 'Edit Profile';
|
||||||
case 'profile.edit.about': return 'About';
|
case 'settings.button_wallet': return 'Wallet Settings';
|
||||||
case 'profile.edit.nip05': return 'Nostr Address';
|
case 'settings.profile.display_name': return 'Display Name';
|
||||||
case 'profile.edit.lud16': return 'Lightning Address';
|
case 'settings.profile.about': return 'About';
|
||||||
case 'profile.edit.error.logged_out': return 'Cant edit profile when logged out';
|
case 'settings.profile.nip05': return 'Nostr Address';
|
||||||
|
case 'settings.profile.lud16': return 'Lightning Address';
|
||||||
|
case 'settings.profile.error.logged_out': return 'Cant edit profile when logged out';
|
||||||
|
case 'settings.wallet.connect_wallet': return 'Connect Wallet (NWC nwc://)';
|
||||||
|
case 'settings.wallet.disconnect_wallet': return 'Disconnect Wallet';
|
||||||
|
case 'settings.wallet.error.logged_out': return 'Cant connect wallet when logged out';
|
||||||
case 'login.username': return 'Username';
|
case 'login.username': return 'Username';
|
||||||
case 'login.amber': return 'Login with Amber';
|
case 'login.amber': return 'Login with Amber';
|
||||||
case 'login.key': return 'Login with Key';
|
case 'login.key': return 'Login with Key';
|
||||||
|
@ -67,6 +67,7 @@ class TranslationsAr extends Translations {
|
|||||||
|
|
||||||
@override late final _TranslationsZapAr zap = _TranslationsZapAr._(_root);
|
@override late final _TranslationsZapAr zap = _TranslationsZapAr._(_root);
|
||||||
@override late final _TranslationsProfileAr profile = _TranslationsProfileAr._(_root);
|
@override late final _TranslationsProfileAr profile = _TranslationsProfileAr._(_root);
|
||||||
|
@override late final _TranslationsSettingsAr settings = _TranslationsSettingsAr._(_root);
|
||||||
@override late final _TranslationsLoginAr login = _TranslationsLoginAr._(_root);
|
@override late final _TranslationsLoginAr login = _TranslationsLoginAr._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -118,6 +119,8 @@ class _TranslationsButtonAr extends TranslationsButtonEn {
|
|||||||
@override String get unmute => 'رفع الكتم';
|
@override String get unmute => 'رفع الكتم';
|
||||||
@override String get share => 'مشاركة';
|
@override String get share => 'مشاركة';
|
||||||
@override String get save => 'حفظ';
|
@override String get save => 'حفظ';
|
||||||
|
@override String get connect => 'الاتصال';
|
||||||
|
@override String get settings => 'الإعدادات';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: embed
|
// Path: embed
|
||||||
@ -159,6 +162,7 @@ class _TranslationsZapAr extends TranslationsZapEn {
|
|||||||
@override String button_zap_ready({required Object amount}) => 'أومض ${amount} ساتوشي';
|
@override String button_zap_ready({required Object amount}) => 'أومض ${amount} ساتوشي';
|
||||||
@override String get button_zap => 'زاب';
|
@override String get button_zap => 'زاب';
|
||||||
@override String get button_open_wallet => 'فتح في المحفظة';
|
@override String get button_open_wallet => 'فتح في المحفظة';
|
||||||
|
@override String get button_connect_wallet => 'توصيل المحفظة';
|
||||||
@override String get copy => 'نسخ إلى الحافظة';
|
@override String get copy => 'نسخ إلى الحافظة';
|
||||||
@override late final _TranslationsZapErrorAr error = _TranslationsZapErrorAr._(_root);
|
@override late final _TranslationsZapErrorAr error = _TranslationsZapErrorAr._(_root);
|
||||||
}
|
}
|
||||||
@ -171,7 +175,19 @@ class _TranslationsProfileAr extends TranslationsProfileEn {
|
|||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
@override String get past_streams => 'التدفقات السابقة';
|
@override String get past_streams => 'التدفقات السابقة';
|
||||||
@override late final _TranslationsProfileEditAr edit = _TranslationsProfileEditAr._(_root);
|
}
|
||||||
|
|
||||||
|
// Path: settings
|
||||||
|
class _TranslationsSettingsAr extends TranslationsSettingsEn {
|
||||||
|
_TranslationsSettingsAr._(TranslationsAr root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsAr _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get button_profile => 'تعديل الملف الشخصي';
|
||||||
|
@override String get button_wallet => 'إعدادات المحفظة';
|
||||||
|
@override late final _TranslationsSettingsProfileAr profile = _TranslationsSettingsProfileAr._(_root);
|
||||||
|
@override late final _TranslationsSettingsWalletAr wallet = _TranslationsSettingsWalletAr._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login
|
// Path: login
|
||||||
@ -247,18 +263,30 @@ class _TranslationsZapErrorAr extends TranslationsZapErrorEn {
|
|||||||
@override String get no_lud16 => 'لم يتم العثور على عنوان البرق';
|
@override String get no_lud16 => 'لم يتم العثور على عنوان البرق';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit
|
// Path: settings.profile
|
||||||
class _TranslationsProfileEditAr extends TranslationsProfileEditEn {
|
class _TranslationsSettingsProfileAr extends TranslationsSettingsProfileEn {
|
||||||
_TranslationsProfileEditAr._(TranslationsAr root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileAr._(TranslationsAr root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsAr _root; // ignore: unused_field
|
final TranslationsAr _root; // ignore: unused_field
|
||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
@override String get display_name => 'اسم العرض';
|
@override String get display_name => 'اسم العرض';
|
||||||
@override String get about => 'نبذة';
|
@override String get about => 'نبذة عن';
|
||||||
@override String get nip05 => 'عنوان نوستر';
|
@override String get nip05 => 'عنوان نوستر';
|
||||||
@override String get lud16 => 'عنوان البرق';
|
@override String get lud16 => 'عنوان البرق';
|
||||||
@override late final _TranslationsProfileEditErrorAr error = _TranslationsProfileEditErrorAr._(_root);
|
@override late final _TranslationsSettingsProfileErrorAr error = _TranslationsSettingsProfileErrorAr._(_root);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet
|
||||||
|
class _TranslationsSettingsWalletAr extends TranslationsSettingsWalletEn {
|
||||||
|
_TranslationsSettingsWalletAr._(TranslationsAr root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsAr _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get connect_wallet => 'توصيل المحفظة (NWC nwc://)';
|
||||||
|
@override String get disconnect_wallet => 'محفظة قطع الاتصال';
|
||||||
|
@override late final _TranslationsSettingsWalletErrorAr error = _TranslationsSettingsWalletErrorAr._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login.error
|
// Path: login.error
|
||||||
@ -319,9 +347,9 @@ class _TranslationsStreamChatRaidAr extends TranslationsStreamChatRaidEn {
|
|||||||
@override String countdown({required Object time}) => 'الإغارة في ${time}';
|
@override String countdown({required Object time}) => 'الإغارة في ${time}';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit.error
|
// Path: settings.profile.error
|
||||||
class _TranslationsProfileEditErrorAr extends TranslationsProfileEditErrorEn {
|
class _TranslationsSettingsProfileErrorAr extends TranslationsSettingsProfileErrorEn {
|
||||||
_TranslationsProfileEditErrorAr._(TranslationsAr root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileErrorAr._(TranslationsAr root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsAr _root; // ignore: unused_field
|
final TranslationsAr _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -329,6 +357,16 @@ class _TranslationsProfileEditErrorAr extends TranslationsProfileEditErrorEn {
|
|||||||
@override String get logged_out => 'لا يمكن تحرير ملف التعريف عند تسجيل الخروج';
|
@override String get logged_out => 'لا يمكن تحرير ملف التعريف عند تسجيل الخروج';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet.error
|
||||||
|
class _TranslationsSettingsWalletErrorAr extends TranslationsSettingsWalletErrorEn {
|
||||||
|
_TranslationsSettingsWalletErrorAr._(TranslationsAr root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsAr _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get logged_out => 'لا يمكن الاتصال بالمحفظة عند تسجيل الخروج';
|
||||||
|
}
|
||||||
|
|
||||||
/// Flat map(s) containing all translations.
|
/// Flat map(s) containing all translations.
|
||||||
/// Only for edge cases! For simple maps, use the map function of this library.
|
/// Only for edge cases! For simple maps, use the map function of this library.
|
||||||
extension on TranslationsAr {
|
extension on TranslationsAr {
|
||||||
@ -381,6 +419,8 @@ extension on TranslationsAr {
|
|||||||
case 'button.unmute': return 'رفع الكتم';
|
case 'button.unmute': return 'رفع الكتم';
|
||||||
case 'button.share': return 'مشاركة';
|
case 'button.share': return 'مشاركة';
|
||||||
case 'button.save': return 'حفظ';
|
case 'button.save': return 'حفظ';
|
||||||
|
case 'button.connect': return 'الاتصال';
|
||||||
|
case 'button.settings': return 'الإعدادات';
|
||||||
case 'embed.article_by': return ({required Object name}) => 'مقال بقلم ${name}';
|
case 'embed.article_by': return ({required Object name}) => 'مقال بقلم ${name}';
|
||||||
case 'embed.note_by': return ({required Object name}) => 'ملاحظة من ${name}';
|
case 'embed.note_by': return ({required Object name}) => 'ملاحظة من ${name}';
|
||||||
case 'embed.live_stream_by': return ({required Object name}) => 'بث مباشر من ${name}';
|
case 'embed.live_stream_by': return ({required Object name}) => 'بث مباشر من ${name}';
|
||||||
@ -395,16 +435,22 @@ extension on TranslationsAr {
|
|||||||
case 'zap.button_zap_ready': return ({required Object amount}) => 'أومض ${amount} ساتوشي';
|
case 'zap.button_zap_ready': return ({required Object amount}) => 'أومض ${amount} ساتوشي';
|
||||||
case 'zap.button_zap': return 'زاب';
|
case 'zap.button_zap': return 'زاب';
|
||||||
case 'zap.button_open_wallet': return 'فتح في المحفظة';
|
case 'zap.button_open_wallet': return 'فتح في المحفظة';
|
||||||
|
case 'zap.button_connect_wallet': return 'توصيل المحفظة';
|
||||||
case 'zap.copy': return 'نسخ إلى الحافظة';
|
case 'zap.copy': return 'نسخ إلى الحافظة';
|
||||||
case 'zap.error.invalid_custom_amount': return 'مبلغ مخصص غير صالح';
|
case 'zap.error.invalid_custom_amount': return 'مبلغ مخصص غير صالح';
|
||||||
case 'zap.error.no_wallet': return 'لا توجد محفظة برق مثبتة';
|
case 'zap.error.no_wallet': return 'لا توجد محفظة برق مثبتة';
|
||||||
case 'zap.error.no_lud16': return 'لم يتم العثور على عنوان البرق';
|
case 'zap.error.no_lud16': return 'لم يتم العثور على عنوان البرق';
|
||||||
case 'profile.past_streams': return 'التدفقات السابقة';
|
case 'profile.past_streams': return 'التدفقات السابقة';
|
||||||
case 'profile.edit.display_name': return 'اسم العرض';
|
case 'settings.button_profile': return 'تعديل الملف الشخصي';
|
||||||
case 'profile.edit.about': return 'نبذة';
|
case 'settings.button_wallet': return 'إعدادات المحفظة';
|
||||||
case 'profile.edit.nip05': return 'عنوان نوستر';
|
case 'settings.profile.display_name': return 'اسم العرض';
|
||||||
case 'profile.edit.lud16': return 'عنوان البرق';
|
case 'settings.profile.about': return 'نبذة عن';
|
||||||
case 'profile.edit.error.logged_out': return 'لا يمكن تحرير ملف التعريف عند تسجيل الخروج';
|
case 'settings.profile.nip05': return 'عنوان نوستر';
|
||||||
|
case 'settings.profile.lud16': return 'عنوان البرق';
|
||||||
|
case 'settings.profile.error.logged_out': return 'لا يمكن تحرير ملف التعريف عند تسجيل الخروج';
|
||||||
|
case 'settings.wallet.connect_wallet': return 'توصيل المحفظة (NWC nwc://)';
|
||||||
|
case 'settings.wallet.disconnect_wallet': return 'محفظة قطع الاتصال';
|
||||||
|
case 'settings.wallet.error.logged_out': return 'لا يمكن الاتصال بالمحفظة عند تسجيل الخروج';
|
||||||
case 'login.username': return 'اسم المستخدم';
|
case 'login.username': return 'اسم المستخدم';
|
||||||
case 'login.amber': return 'تسجيل الدخول مع آمبر';
|
case 'login.amber': return 'تسجيل الدخول مع آمبر';
|
||||||
case 'login.key': return 'تسجيل الدخول بالمفتاح';
|
case 'login.key': return 'تسجيل الدخول بالمفتاح';
|
||||||
|
@ -67,6 +67,7 @@ class TranslationsCa extends Translations {
|
|||||||
|
|
||||||
@override late final _TranslationsZapCa zap = _TranslationsZapCa._(_root);
|
@override late final _TranslationsZapCa zap = _TranslationsZapCa._(_root);
|
||||||
@override late final _TranslationsProfileCa profile = _TranslationsProfileCa._(_root);
|
@override late final _TranslationsProfileCa profile = _TranslationsProfileCa._(_root);
|
||||||
|
@override late final _TranslationsSettingsCa settings = _TranslationsSettingsCa._(_root);
|
||||||
@override late final _TranslationsLoginCa login = _TranslationsLoginCa._(_root);
|
@override late final _TranslationsLoginCa login = _TranslationsLoginCa._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -118,6 +119,8 @@ class _TranslationsButtonCa extends TranslationsButtonEn {
|
|||||||
@override String get unmute => 'Unmute';
|
@override String get unmute => 'Unmute';
|
||||||
@override String get share => 'Share';
|
@override String get share => 'Share';
|
||||||
@override String get save => 'Save';
|
@override String get save => 'Save';
|
||||||
|
@override String get connect => 'Connect';
|
||||||
|
@override String get settings => 'Settings';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: embed
|
// Path: embed
|
||||||
@ -159,6 +162,7 @@ class _TranslationsZapCa extends TranslationsZapEn {
|
|||||||
@override String button_zap_ready({required Object amount}) => 'Zap ${amount} sats';
|
@override String button_zap_ready({required Object amount}) => 'Zap ${amount} sats';
|
||||||
@override String get button_zap => 'Zap';
|
@override String get button_zap => 'Zap';
|
||||||
@override String get button_open_wallet => 'Open in Wallet';
|
@override String get button_open_wallet => 'Open in Wallet';
|
||||||
|
@override String get button_connect_wallet => 'Connect Wallet';
|
||||||
@override String get copy => 'Copied to clipboard';
|
@override String get copy => 'Copied to clipboard';
|
||||||
@override late final _TranslationsZapErrorCa error = _TranslationsZapErrorCa._(_root);
|
@override late final _TranslationsZapErrorCa error = _TranslationsZapErrorCa._(_root);
|
||||||
}
|
}
|
||||||
@ -171,7 +175,19 @@ class _TranslationsProfileCa extends TranslationsProfileEn {
|
|||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
@override String get past_streams => 'Past Streams';
|
@override String get past_streams => 'Past Streams';
|
||||||
@override late final _TranslationsProfileEditCa edit = _TranslationsProfileEditCa._(_root);
|
}
|
||||||
|
|
||||||
|
// Path: settings
|
||||||
|
class _TranslationsSettingsCa extends TranslationsSettingsEn {
|
||||||
|
_TranslationsSettingsCa._(TranslationsCa root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsCa _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get button_profile => 'Edit Profile';
|
||||||
|
@override String get button_wallet => 'Wallet Settings';
|
||||||
|
@override late final _TranslationsSettingsProfileCa profile = _TranslationsSettingsProfileCa._(_root);
|
||||||
|
@override late final _TranslationsSettingsWalletCa wallet = _TranslationsSettingsWalletCa._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login
|
// Path: login
|
||||||
@ -247,9 +263,9 @@ class _TranslationsZapErrorCa extends TranslationsZapErrorEn {
|
|||||||
@override String get no_lud16 => 'No lightning address found';
|
@override String get no_lud16 => 'No lightning address found';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit
|
// Path: settings.profile
|
||||||
class _TranslationsProfileEditCa extends TranslationsProfileEditEn {
|
class _TranslationsSettingsProfileCa extends TranslationsSettingsProfileEn {
|
||||||
_TranslationsProfileEditCa._(TranslationsCa root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileCa._(TranslationsCa root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsCa _root; // ignore: unused_field
|
final TranslationsCa _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -258,7 +274,19 @@ class _TranslationsProfileEditCa extends TranslationsProfileEditEn {
|
|||||||
@override String get about => 'About';
|
@override String get about => 'About';
|
||||||
@override String get nip05 => 'Nostr Address';
|
@override String get nip05 => 'Nostr Address';
|
||||||
@override String get lud16 => 'Lightning Address';
|
@override String get lud16 => 'Lightning Address';
|
||||||
@override late final _TranslationsProfileEditErrorCa error = _TranslationsProfileEditErrorCa._(_root);
|
@override late final _TranslationsSettingsProfileErrorCa error = _TranslationsSettingsProfileErrorCa._(_root);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet
|
||||||
|
class _TranslationsSettingsWalletCa extends TranslationsSettingsWalletEn {
|
||||||
|
_TranslationsSettingsWalletCa._(TranslationsCa root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsCa _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get connect_wallet => 'Connect Wallet (NWC nwc://)';
|
||||||
|
@override String get disconnect_wallet => 'Disconnect Wallet';
|
||||||
|
@override late final _TranslationsSettingsWalletErrorCa error = _TranslationsSettingsWalletErrorCa._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login.error
|
// Path: login.error
|
||||||
@ -319,9 +347,9 @@ class _TranslationsStreamChatRaidCa extends TranslationsStreamChatRaidEn {
|
|||||||
@override String countdown({required Object time}) => 'Raiding in ${time}';
|
@override String countdown({required Object time}) => 'Raiding in ${time}';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit.error
|
// Path: settings.profile.error
|
||||||
class _TranslationsProfileEditErrorCa extends TranslationsProfileEditErrorEn {
|
class _TranslationsSettingsProfileErrorCa extends TranslationsSettingsProfileErrorEn {
|
||||||
_TranslationsProfileEditErrorCa._(TranslationsCa root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileErrorCa._(TranslationsCa root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsCa _root; // ignore: unused_field
|
final TranslationsCa _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -329,6 +357,16 @@ class _TranslationsProfileEditErrorCa extends TranslationsProfileEditErrorEn {
|
|||||||
@override String get logged_out => 'Cant edit profile when logged out';
|
@override String get logged_out => 'Cant edit profile when logged out';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet.error
|
||||||
|
class _TranslationsSettingsWalletErrorCa extends TranslationsSettingsWalletErrorEn {
|
||||||
|
_TranslationsSettingsWalletErrorCa._(TranslationsCa root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsCa _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get logged_out => 'Cant connect wallet when logged out';
|
||||||
|
}
|
||||||
|
|
||||||
/// Flat map(s) containing all translations.
|
/// Flat map(s) containing all translations.
|
||||||
/// Only for edge cases! For simple maps, use the map function of this library.
|
/// Only for edge cases! For simple maps, use the map function of this library.
|
||||||
extension on TranslationsCa {
|
extension on TranslationsCa {
|
||||||
@ -381,6 +419,8 @@ extension on TranslationsCa {
|
|||||||
case 'button.unmute': return 'Unmute';
|
case 'button.unmute': return 'Unmute';
|
||||||
case 'button.share': return 'Share';
|
case 'button.share': return 'Share';
|
||||||
case 'button.save': return 'Save';
|
case 'button.save': return 'Save';
|
||||||
|
case 'button.connect': return 'Connect';
|
||||||
|
case 'button.settings': return 'Settings';
|
||||||
case 'embed.article_by': return ({required Object name}) => 'Article by ${name}';
|
case 'embed.article_by': return ({required Object name}) => 'Article by ${name}';
|
||||||
case 'embed.note_by': return ({required Object name}) => 'Note by ${name}';
|
case 'embed.note_by': return ({required Object name}) => 'Note by ${name}';
|
||||||
case 'embed.live_stream_by': return ({required Object name}) => 'Live stream by ${name}';
|
case 'embed.live_stream_by': return ({required Object name}) => 'Live stream by ${name}';
|
||||||
@ -395,16 +435,22 @@ extension on TranslationsCa {
|
|||||||
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zap ${amount} sats';
|
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zap ${amount} sats';
|
||||||
case 'zap.button_zap': return 'Zap';
|
case 'zap.button_zap': return 'Zap';
|
||||||
case 'zap.button_open_wallet': return 'Open in Wallet';
|
case 'zap.button_open_wallet': return 'Open in Wallet';
|
||||||
|
case 'zap.button_connect_wallet': return 'Connect Wallet';
|
||||||
case 'zap.copy': return 'Copied to clipboard';
|
case 'zap.copy': return 'Copied to clipboard';
|
||||||
case 'zap.error.invalid_custom_amount': return 'Invalid custom amount';
|
case 'zap.error.invalid_custom_amount': return 'Invalid custom amount';
|
||||||
case 'zap.error.no_wallet': return 'No lightning wallet installed';
|
case 'zap.error.no_wallet': return 'No lightning wallet installed';
|
||||||
case 'zap.error.no_lud16': return 'No lightning address found';
|
case 'zap.error.no_lud16': return 'No lightning address found';
|
||||||
case 'profile.past_streams': return 'Past Streams';
|
case 'profile.past_streams': return 'Past Streams';
|
||||||
case 'profile.edit.display_name': return 'Display Name';
|
case 'settings.button_profile': return 'Edit Profile';
|
||||||
case 'profile.edit.about': return 'About';
|
case 'settings.button_wallet': return 'Wallet Settings';
|
||||||
case 'profile.edit.nip05': return 'Nostr Address';
|
case 'settings.profile.display_name': return 'Display Name';
|
||||||
case 'profile.edit.lud16': return 'Lightning Address';
|
case 'settings.profile.about': return 'About';
|
||||||
case 'profile.edit.error.logged_out': return 'Cant edit profile when logged out';
|
case 'settings.profile.nip05': return 'Nostr Address';
|
||||||
|
case 'settings.profile.lud16': return 'Lightning Address';
|
||||||
|
case 'settings.profile.error.logged_out': return 'Cant edit profile when logged out';
|
||||||
|
case 'settings.wallet.connect_wallet': return 'Connect Wallet (NWC nwc://)';
|
||||||
|
case 'settings.wallet.disconnect_wallet': return 'Disconnect Wallet';
|
||||||
|
case 'settings.wallet.error.logged_out': return 'Cant connect wallet when logged out';
|
||||||
case 'login.username': return 'Username';
|
case 'login.username': return 'Username';
|
||||||
case 'login.amber': return 'Login with Amber';
|
case 'login.amber': return 'Login with Amber';
|
||||||
case 'login.key': return 'Login with Key';
|
case 'login.key': return 'Login with Key';
|
||||||
|
@ -67,6 +67,7 @@ class TranslationsCs extends Translations {
|
|||||||
|
|
||||||
@override late final _TranslationsZapCs zap = _TranslationsZapCs._(_root);
|
@override late final _TranslationsZapCs zap = _TranslationsZapCs._(_root);
|
||||||
@override late final _TranslationsProfileCs profile = _TranslationsProfileCs._(_root);
|
@override late final _TranslationsProfileCs profile = _TranslationsProfileCs._(_root);
|
||||||
|
@override late final _TranslationsSettingsCs settings = _TranslationsSettingsCs._(_root);
|
||||||
@override late final _TranslationsLoginCs login = _TranslationsLoginCs._(_root);
|
@override late final _TranslationsLoginCs login = _TranslationsLoginCs._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -118,6 +119,8 @@ class _TranslationsButtonCs extends TranslationsButtonEn {
|
|||||||
@override String get unmute => 'Zrušit ztlumení';
|
@override String get unmute => 'Zrušit ztlumení';
|
||||||
@override String get share => 'Sdílet';
|
@override String get share => 'Sdílet';
|
||||||
@override String get save => 'Uložit';
|
@override String get save => 'Uložit';
|
||||||
|
@override String get connect => 'Připojení';
|
||||||
|
@override String get settings => 'Nastavení';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: embed
|
// Path: embed
|
||||||
@ -159,6 +162,7 @@ class _TranslationsZapCs extends TranslationsZapEn {
|
|||||||
@override String button_zap_ready({required Object amount}) => 'Zap ${amount} sats';
|
@override String button_zap_ready({required Object amount}) => 'Zap ${amount} sats';
|
||||||
@override String get button_zap => 'Zap';
|
@override String get button_zap => 'Zap';
|
||||||
@override String get button_open_wallet => 'Otevřít v peněžence';
|
@override String get button_open_wallet => 'Otevřít v peněžence';
|
||||||
|
@override String get button_connect_wallet => 'Připojení peněženky';
|
||||||
@override String get copy => 'Zkopírováno do schránky';
|
@override String get copy => 'Zkopírováno do schránky';
|
||||||
@override late final _TranslationsZapErrorCs error = _TranslationsZapErrorCs._(_root);
|
@override late final _TranslationsZapErrorCs error = _TranslationsZapErrorCs._(_root);
|
||||||
}
|
}
|
||||||
@ -171,7 +175,19 @@ class _TranslationsProfileCs extends TranslationsProfileEn {
|
|||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
@override String get past_streams => 'Minulé proudy';
|
@override String get past_streams => 'Minulé proudy';
|
||||||
@override late final _TranslationsProfileEditCs edit = _TranslationsProfileEditCs._(_root);
|
}
|
||||||
|
|
||||||
|
// Path: settings
|
||||||
|
class _TranslationsSettingsCs extends TranslationsSettingsEn {
|
||||||
|
_TranslationsSettingsCs._(TranslationsCs root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsCs _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get button_profile => 'Upravit profil';
|
||||||
|
@override String get button_wallet => 'Nastavení peněženky';
|
||||||
|
@override late final _TranslationsSettingsProfileCs profile = _TranslationsSettingsProfileCs._(_root);
|
||||||
|
@override late final _TranslationsSettingsWalletCs wallet = _TranslationsSettingsWalletCs._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login
|
// Path: login
|
||||||
@ -247,9 +263,9 @@ class _TranslationsZapErrorCs extends TranslationsZapErrorEn {
|
|||||||
@override String get no_lud16 => 'Nebyla nalezena žádná adresa blesku';
|
@override String get no_lud16 => 'Nebyla nalezena žádná adresa blesku';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit
|
// Path: settings.profile
|
||||||
class _TranslationsProfileEditCs extends TranslationsProfileEditEn {
|
class _TranslationsSettingsProfileCs extends TranslationsSettingsProfileEn {
|
||||||
_TranslationsProfileEditCs._(TranslationsCs root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileCs._(TranslationsCs root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsCs _root; // ignore: unused_field
|
final TranslationsCs _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -258,7 +274,19 @@ class _TranslationsProfileEditCs extends TranslationsProfileEditEn {
|
|||||||
@override String get about => 'O stránkách';
|
@override String get about => 'O stránkách';
|
||||||
@override String get nip05 => 'Adresa Nostr';
|
@override String get nip05 => 'Adresa Nostr';
|
||||||
@override String get lud16 => 'Adresa blesku';
|
@override String get lud16 => 'Adresa blesku';
|
||||||
@override late final _TranslationsProfileEditErrorCs error = _TranslationsProfileEditErrorCs._(_root);
|
@override late final _TranslationsSettingsProfileErrorCs error = _TranslationsSettingsProfileErrorCs._(_root);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet
|
||||||
|
class _TranslationsSettingsWalletCs extends TranslationsSettingsWalletEn {
|
||||||
|
_TranslationsSettingsWalletCs._(TranslationsCs root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsCs _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get connect_wallet => 'Připojení peněženky (NWC nwc://)';
|
||||||
|
@override String get disconnect_wallet => 'Odpojení peněženky';
|
||||||
|
@override late final _TranslationsSettingsWalletErrorCs error = _TranslationsSettingsWalletErrorCs._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login.error
|
// Path: login.error
|
||||||
@ -319,9 +347,9 @@ class _TranslationsStreamChatRaidCs extends TranslationsStreamChatRaidEn {
|
|||||||
@override String countdown({required Object time}) => 'Nájezdy na ${time}';
|
@override String countdown({required Object time}) => 'Nájezdy na ${time}';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit.error
|
// Path: settings.profile.error
|
||||||
class _TranslationsProfileEditErrorCs extends TranslationsProfileEditErrorEn {
|
class _TranslationsSettingsProfileErrorCs extends TranslationsSettingsProfileErrorEn {
|
||||||
_TranslationsProfileEditErrorCs._(TranslationsCs root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileErrorCs._(TranslationsCs root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsCs _root; // ignore: unused_field
|
final TranslationsCs _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -329,6 +357,16 @@ class _TranslationsProfileEditErrorCs extends TranslationsProfileEditErrorEn {
|
|||||||
@override String get logged_out => 'Nelze upravit profil, když je odhlášený';
|
@override String get logged_out => 'Nelze upravit profil, když je odhlášený';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet.error
|
||||||
|
class _TranslationsSettingsWalletErrorCs extends TranslationsSettingsWalletErrorEn {
|
||||||
|
_TranslationsSettingsWalletErrorCs._(TranslationsCs root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsCs _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get logged_out => 'Nelze se připojit k peněžence, když jste odhlášeni';
|
||||||
|
}
|
||||||
|
|
||||||
/// Flat map(s) containing all translations.
|
/// Flat map(s) containing all translations.
|
||||||
/// Only for edge cases! For simple maps, use the map function of this library.
|
/// Only for edge cases! For simple maps, use the map function of this library.
|
||||||
extension on TranslationsCs {
|
extension on TranslationsCs {
|
||||||
@ -381,6 +419,8 @@ extension on TranslationsCs {
|
|||||||
case 'button.unmute': return 'Zrušit ztlumení';
|
case 'button.unmute': return 'Zrušit ztlumení';
|
||||||
case 'button.share': return 'Sdílet';
|
case 'button.share': return 'Sdílet';
|
||||||
case 'button.save': return 'Uložit';
|
case 'button.save': return 'Uložit';
|
||||||
|
case 'button.connect': return 'Připojení';
|
||||||
|
case 'button.settings': return 'Nastavení';
|
||||||
case 'embed.article_by': return ({required Object name}) => 'Článek na ${name}';
|
case 'embed.article_by': return ({required Object name}) => 'Článek na ${name}';
|
||||||
case 'embed.note_by': return ({required Object name}) => 'Poznámka ${name}';
|
case 'embed.note_by': return ({required Object name}) => 'Poznámka ${name}';
|
||||||
case 'embed.live_stream_by': return ({required Object name}) => 'Přímý přenos na adrese ${name}';
|
case 'embed.live_stream_by': return ({required Object name}) => 'Přímý přenos na adrese ${name}';
|
||||||
@ -395,16 +435,22 @@ extension on TranslationsCs {
|
|||||||
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zap ${amount} sats';
|
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zap ${amount} sats';
|
||||||
case 'zap.button_zap': return 'Zap';
|
case 'zap.button_zap': return 'Zap';
|
||||||
case 'zap.button_open_wallet': return 'Otevřít v peněžence';
|
case 'zap.button_open_wallet': return 'Otevřít v peněžence';
|
||||||
|
case 'zap.button_connect_wallet': return 'Připojení peněženky';
|
||||||
case 'zap.copy': return 'Zkopírováno do schránky';
|
case 'zap.copy': return 'Zkopírováno do schránky';
|
||||||
case 'zap.error.invalid_custom_amount': return 'Neplatná vlastní částka';
|
case 'zap.error.invalid_custom_amount': return 'Neplatná vlastní částka';
|
||||||
case 'zap.error.no_wallet': return 'Není nainstalována blesková peněženka';
|
case 'zap.error.no_wallet': return 'Není nainstalována blesková peněženka';
|
||||||
case 'zap.error.no_lud16': return 'Nebyla nalezena žádná adresa blesku';
|
case 'zap.error.no_lud16': return 'Nebyla nalezena žádná adresa blesku';
|
||||||
case 'profile.past_streams': return 'Minulé proudy';
|
case 'profile.past_streams': return 'Minulé proudy';
|
||||||
case 'profile.edit.display_name': return 'Zobrazení názvu';
|
case 'settings.button_profile': return 'Upravit profil';
|
||||||
case 'profile.edit.about': return 'O stránkách';
|
case 'settings.button_wallet': return 'Nastavení peněženky';
|
||||||
case 'profile.edit.nip05': return 'Adresa Nostr';
|
case 'settings.profile.display_name': return 'Zobrazení názvu';
|
||||||
case 'profile.edit.lud16': return 'Adresa blesku';
|
case 'settings.profile.about': return 'O stránkách';
|
||||||
case 'profile.edit.error.logged_out': return 'Nelze upravit profil, když je odhlášený';
|
case 'settings.profile.nip05': return 'Adresa Nostr';
|
||||||
|
case 'settings.profile.lud16': return 'Adresa blesku';
|
||||||
|
case 'settings.profile.error.logged_out': return 'Nelze upravit profil, když je odhlášený';
|
||||||
|
case 'settings.wallet.connect_wallet': return 'Připojení peněženky (NWC nwc://)';
|
||||||
|
case 'settings.wallet.disconnect_wallet': return 'Odpojení peněženky';
|
||||||
|
case 'settings.wallet.error.logged_out': return 'Nelze se připojit k peněžence, když jste odhlášeni';
|
||||||
case 'login.username': return 'Uživatelské jméno';
|
case 'login.username': return 'Uživatelské jméno';
|
||||||
case 'login.amber': return 'Přihlášení pomocí Amber';
|
case 'login.amber': return 'Přihlášení pomocí Amber';
|
||||||
case 'login.key': return 'Přihlášení pomocí klíče';
|
case 'login.key': return 'Přihlášení pomocí klíče';
|
||||||
|
@ -67,6 +67,7 @@ class TranslationsDa extends Translations {
|
|||||||
|
|
||||||
@override late final _TranslationsZapDa zap = _TranslationsZapDa._(_root);
|
@override late final _TranslationsZapDa zap = _TranslationsZapDa._(_root);
|
||||||
@override late final _TranslationsProfileDa profile = _TranslationsProfileDa._(_root);
|
@override late final _TranslationsProfileDa profile = _TranslationsProfileDa._(_root);
|
||||||
|
@override late final _TranslationsSettingsDa settings = _TranslationsSettingsDa._(_root);
|
||||||
@override late final _TranslationsLoginDa login = _TranslationsLoginDa._(_root);
|
@override late final _TranslationsLoginDa login = _TranslationsLoginDa._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -118,6 +119,8 @@ class _TranslationsButtonDa extends TranslationsButtonEn {
|
|||||||
@override String get unmute => 'Slå lyden fra';
|
@override String get unmute => 'Slå lyden fra';
|
||||||
@override String get share => 'Del';
|
@override String get share => 'Del';
|
||||||
@override String get save => 'Gemme';
|
@override String get save => 'Gemme';
|
||||||
|
@override String get connect => 'Opret forbindelse';
|
||||||
|
@override String get settings => 'Indstillinger';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: embed
|
// Path: embed
|
||||||
@ -159,6 +162,7 @@ class _TranslationsZapDa extends TranslationsZapEn {
|
|||||||
@override String button_zap_ready({required Object amount}) => 'Zap ${amount} sats';
|
@override String button_zap_ready({required Object amount}) => 'Zap ${amount} sats';
|
||||||
@override String get button_zap => 'Zap';
|
@override String get button_zap => 'Zap';
|
||||||
@override String get button_open_wallet => 'Åbn i tegnebogen';
|
@override String get button_open_wallet => 'Åbn i tegnebogen';
|
||||||
|
@override String get button_connect_wallet => 'Forbind tegnebog';
|
||||||
@override String get copy => 'Kopieret til udklipsholder';
|
@override String get copy => 'Kopieret til udklipsholder';
|
||||||
@override late final _TranslationsZapErrorDa error = _TranslationsZapErrorDa._(_root);
|
@override late final _TranslationsZapErrorDa error = _TranslationsZapErrorDa._(_root);
|
||||||
}
|
}
|
||||||
@ -171,7 +175,19 @@ class _TranslationsProfileDa extends TranslationsProfileEn {
|
|||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
@override String get past_streams => 'Tidligere strømme';
|
@override String get past_streams => 'Tidligere strømme';
|
||||||
@override late final _TranslationsProfileEditDa edit = _TranslationsProfileEditDa._(_root);
|
}
|
||||||
|
|
||||||
|
// Path: settings
|
||||||
|
class _TranslationsSettingsDa extends TranslationsSettingsEn {
|
||||||
|
_TranslationsSettingsDa._(TranslationsDa root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsDa _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get button_profile => 'Rediger profil';
|
||||||
|
@override String get button_wallet => 'Indstillinger for tegnebog';
|
||||||
|
@override late final _TranslationsSettingsProfileDa profile = _TranslationsSettingsProfileDa._(_root);
|
||||||
|
@override late final _TranslationsSettingsWalletDa wallet = _TranslationsSettingsWalletDa._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login
|
// Path: login
|
||||||
@ -247,9 +263,9 @@ class _TranslationsZapErrorDa extends TranslationsZapErrorEn {
|
|||||||
@override String get no_lud16 => 'Ingen lyn-adresse fundet';
|
@override String get no_lud16 => 'Ingen lyn-adresse fundet';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit
|
// Path: settings.profile
|
||||||
class _TranslationsProfileEditDa extends TranslationsProfileEditEn {
|
class _TranslationsSettingsProfileDa extends TranslationsSettingsProfileEn {
|
||||||
_TranslationsProfileEditDa._(TranslationsDa root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileDa._(TranslationsDa root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsDa _root; // ignore: unused_field
|
final TranslationsDa _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -258,7 +274,19 @@ class _TranslationsProfileEditDa extends TranslationsProfileEditEn {
|
|||||||
@override String get about => 'Omkring';
|
@override String get about => 'Omkring';
|
||||||
@override String get nip05 => 'Nostr-adresse';
|
@override String get nip05 => 'Nostr-adresse';
|
||||||
@override String get lud16 => 'Adresse for lynnedslag';
|
@override String get lud16 => 'Adresse for lynnedslag';
|
||||||
@override late final _TranslationsProfileEditErrorDa error = _TranslationsProfileEditErrorDa._(_root);
|
@override late final _TranslationsSettingsProfileErrorDa error = _TranslationsSettingsProfileErrorDa._(_root);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet
|
||||||
|
class _TranslationsSettingsWalletDa extends TranslationsSettingsWalletEn {
|
||||||
|
_TranslationsSettingsWalletDa._(TranslationsDa root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsDa _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get connect_wallet => 'Connect Wallet (NWC nwc://)';
|
||||||
|
@override String get disconnect_wallet => 'Afbryd forbindelsen til tegnebogen';
|
||||||
|
@override late final _TranslationsSettingsWalletErrorDa error = _TranslationsSettingsWalletErrorDa._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login.error
|
// Path: login.error
|
||||||
@ -319,9 +347,9 @@ class _TranslationsStreamChatRaidDa extends TranslationsStreamChatRaidEn {
|
|||||||
@override String countdown({required Object time}) => 'Raiding i ${time}';
|
@override String countdown({required Object time}) => 'Raiding i ${time}';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit.error
|
// Path: settings.profile.error
|
||||||
class _TranslationsProfileEditErrorDa extends TranslationsProfileEditErrorEn {
|
class _TranslationsSettingsProfileErrorDa extends TranslationsSettingsProfileErrorEn {
|
||||||
_TranslationsProfileEditErrorDa._(TranslationsDa root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileErrorDa._(TranslationsDa root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsDa _root; // ignore: unused_field
|
final TranslationsDa _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -329,6 +357,16 @@ class _TranslationsProfileEditErrorDa extends TranslationsProfileEditErrorEn {
|
|||||||
@override String get logged_out => 'Kan ikke redigere profil, når jeg er logget ud';
|
@override String get logged_out => 'Kan ikke redigere profil, når jeg er logget ud';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet.error
|
||||||
|
class _TranslationsSettingsWalletErrorDa extends TranslationsSettingsWalletErrorEn {
|
||||||
|
_TranslationsSettingsWalletErrorDa._(TranslationsDa root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsDa _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get logged_out => 'Kan ikke oprette forbindelse til wallet, når jeg er logget ud';
|
||||||
|
}
|
||||||
|
|
||||||
/// Flat map(s) containing all translations.
|
/// Flat map(s) containing all translations.
|
||||||
/// Only for edge cases! For simple maps, use the map function of this library.
|
/// Only for edge cases! For simple maps, use the map function of this library.
|
||||||
extension on TranslationsDa {
|
extension on TranslationsDa {
|
||||||
@ -381,6 +419,8 @@ extension on TranslationsDa {
|
|||||||
case 'button.unmute': return 'Slå lyden fra';
|
case 'button.unmute': return 'Slå lyden fra';
|
||||||
case 'button.share': return 'Del';
|
case 'button.share': return 'Del';
|
||||||
case 'button.save': return 'Gemme';
|
case 'button.save': return 'Gemme';
|
||||||
|
case 'button.connect': return 'Opret forbindelse';
|
||||||
|
case 'button.settings': return 'Indstillinger';
|
||||||
case 'embed.article_by': return ({required Object name}) => 'Artikel af ${name}';
|
case 'embed.article_by': return ({required Object name}) => 'Artikel af ${name}';
|
||||||
case 'embed.note_by': return ({required Object name}) => 'Note fra ${name}';
|
case 'embed.note_by': return ({required Object name}) => 'Note fra ${name}';
|
||||||
case 'embed.live_stream_by': return ({required Object name}) => 'Livestream på ${name}';
|
case 'embed.live_stream_by': return ({required Object name}) => 'Livestream på ${name}';
|
||||||
@ -395,16 +435,22 @@ extension on TranslationsDa {
|
|||||||
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zap ${amount} sats';
|
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zap ${amount} sats';
|
||||||
case 'zap.button_zap': return 'Zap';
|
case 'zap.button_zap': return 'Zap';
|
||||||
case 'zap.button_open_wallet': return 'Åbn i tegnebogen';
|
case 'zap.button_open_wallet': return 'Åbn i tegnebogen';
|
||||||
|
case 'zap.button_connect_wallet': return 'Forbind tegnebog';
|
||||||
case 'zap.copy': return 'Kopieret til udklipsholder';
|
case 'zap.copy': return 'Kopieret til udklipsholder';
|
||||||
case 'zap.error.invalid_custom_amount': return 'Ugyldigt brugerdefineret beløb';
|
case 'zap.error.invalid_custom_amount': return 'Ugyldigt brugerdefineret beløb';
|
||||||
case 'zap.error.no_wallet': return 'Ingen lightning wallet installeret';
|
case 'zap.error.no_wallet': return 'Ingen lightning wallet installeret';
|
||||||
case 'zap.error.no_lud16': return 'Ingen lyn-adresse fundet';
|
case 'zap.error.no_lud16': return 'Ingen lyn-adresse fundet';
|
||||||
case 'profile.past_streams': return 'Tidligere strømme';
|
case 'profile.past_streams': return 'Tidligere strømme';
|
||||||
case 'profile.edit.display_name': return 'Vis navn';
|
case 'settings.button_profile': return 'Rediger profil';
|
||||||
case 'profile.edit.about': return 'Omkring';
|
case 'settings.button_wallet': return 'Indstillinger for tegnebog';
|
||||||
case 'profile.edit.nip05': return 'Nostr-adresse';
|
case 'settings.profile.display_name': return 'Vis navn';
|
||||||
case 'profile.edit.lud16': return 'Adresse for lynnedslag';
|
case 'settings.profile.about': return 'Omkring';
|
||||||
case 'profile.edit.error.logged_out': return 'Kan ikke redigere profil, når jeg er logget ud';
|
case 'settings.profile.nip05': return 'Nostr-adresse';
|
||||||
|
case 'settings.profile.lud16': return 'Adresse for lynnedslag';
|
||||||
|
case 'settings.profile.error.logged_out': return 'Kan ikke redigere profil, når jeg er logget ud';
|
||||||
|
case 'settings.wallet.connect_wallet': return 'Connect Wallet (NWC nwc://)';
|
||||||
|
case 'settings.wallet.disconnect_wallet': return 'Afbryd forbindelsen til tegnebogen';
|
||||||
|
case 'settings.wallet.error.logged_out': return 'Kan ikke oprette forbindelse til wallet, når jeg er logget ud';
|
||||||
case 'login.username': return 'Brugernavn';
|
case 'login.username': return 'Brugernavn';
|
||||||
case 'login.amber': return 'Log ind med Amber';
|
case 'login.amber': return 'Log ind med Amber';
|
||||||
case 'login.key': return 'Login med nøgle';
|
case 'login.key': return 'Login med nøgle';
|
||||||
|
@ -67,6 +67,7 @@ class TranslationsDe extends Translations {
|
|||||||
|
|
||||||
@override late final _TranslationsZapDe zap = _TranslationsZapDe._(_root);
|
@override late final _TranslationsZapDe zap = _TranslationsZapDe._(_root);
|
||||||
@override late final _TranslationsProfileDe profile = _TranslationsProfileDe._(_root);
|
@override late final _TranslationsProfileDe profile = _TranslationsProfileDe._(_root);
|
||||||
|
@override late final _TranslationsSettingsDe settings = _TranslationsSettingsDe._(_root);
|
||||||
@override late final _TranslationsLoginDe login = _TranslationsLoginDe._(_root);
|
@override late final _TranslationsLoginDe login = _TranslationsLoginDe._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -118,6 +119,8 @@ class _TranslationsButtonDe extends TranslationsButtonEn {
|
|||||||
@override String get unmute => 'Entstummen';
|
@override String get unmute => 'Entstummen';
|
||||||
@override String get share => 'Teilen';
|
@override String get share => 'Teilen';
|
||||||
@override String get save => 'Speichern';
|
@override String get save => 'Speichern';
|
||||||
|
@override String get connect => 'Verbinden Sie';
|
||||||
|
@override String get settings => 'Einstellungen';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: embed
|
// Path: embed
|
||||||
@ -159,6 +162,7 @@ class _TranslationsZapDe extends TranslationsZapEn {
|
|||||||
@override String button_zap_ready({required Object amount}) => '${amount} sats zappen';
|
@override String button_zap_ready({required Object amount}) => '${amount} sats zappen';
|
||||||
@override String get button_zap => 'Zap';
|
@override String get button_zap => 'Zap';
|
||||||
@override String get button_open_wallet => 'In Brieftasche öffnen';
|
@override String get button_open_wallet => 'In Brieftasche öffnen';
|
||||||
|
@override String get button_connect_wallet => 'Brieftasche verbinden';
|
||||||
@override String get copy => 'In die Zwischenablage kopiert';
|
@override String get copy => 'In die Zwischenablage kopiert';
|
||||||
@override late final _TranslationsZapErrorDe error = _TranslationsZapErrorDe._(_root);
|
@override late final _TranslationsZapErrorDe error = _TranslationsZapErrorDe._(_root);
|
||||||
}
|
}
|
||||||
@ -171,7 +175,19 @@ class _TranslationsProfileDe extends TranslationsProfileEn {
|
|||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
@override String get past_streams => 'Vergangene Streams';
|
@override String get past_streams => 'Vergangene Streams';
|
||||||
@override late final _TranslationsProfileEditDe edit = _TranslationsProfileEditDe._(_root);
|
}
|
||||||
|
|
||||||
|
// Path: settings
|
||||||
|
class _TranslationsSettingsDe extends TranslationsSettingsEn {
|
||||||
|
_TranslationsSettingsDe._(TranslationsDe root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsDe _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get button_profile => 'Profil bearbeiten';
|
||||||
|
@override String get button_wallet => 'Wallet-Einstellungen';
|
||||||
|
@override late final _TranslationsSettingsProfileDe profile = _TranslationsSettingsProfileDe._(_root);
|
||||||
|
@override late final _TranslationsSettingsWalletDe wallet = _TranslationsSettingsWalletDe._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login
|
// Path: login
|
||||||
@ -247,9 +263,9 @@ class _TranslationsZapErrorDe extends TranslationsZapErrorEn {
|
|||||||
@override String get no_lud16 => 'Keine Blitzadresse gefunden';
|
@override String get no_lud16 => 'Keine Blitzadresse gefunden';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit
|
// Path: settings.profile
|
||||||
class _TranslationsProfileEditDe extends TranslationsProfileEditEn {
|
class _TranslationsSettingsProfileDe extends TranslationsSettingsProfileEn {
|
||||||
_TranslationsProfileEditDe._(TranslationsDe root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileDe._(TranslationsDe root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsDe _root; // ignore: unused_field
|
final TranslationsDe _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -257,8 +273,20 @@ class _TranslationsProfileEditDe extends TranslationsProfileEditEn {
|
|||||||
@override String get display_name => 'Name anzeigen';
|
@override String get display_name => 'Name anzeigen';
|
||||||
@override String get about => 'Über';
|
@override String get about => 'Über';
|
||||||
@override String get nip05 => 'Nostr-Adresse';
|
@override String get nip05 => 'Nostr-Adresse';
|
||||||
@override String get lud16 => 'Lightning-Adresse';
|
@override String get lud16 => 'Blitz-Adresse';
|
||||||
@override late final _TranslationsProfileEditErrorDe error = _TranslationsProfileEditErrorDe._(_root);
|
@override late final _TranslationsSettingsProfileErrorDe error = _TranslationsSettingsProfileErrorDe._(_root);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet
|
||||||
|
class _TranslationsSettingsWalletDe extends TranslationsSettingsWalletEn {
|
||||||
|
_TranslationsSettingsWalletDe._(TranslationsDe root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsDe _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get connect_wallet => 'Brieftasche verbinden (NWC nwc://)';
|
||||||
|
@override String get disconnect_wallet => 'Brieftasche abtrennen';
|
||||||
|
@override late final _TranslationsSettingsWalletErrorDe error = _TranslationsSettingsWalletErrorDe._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login.error
|
// Path: login.error
|
||||||
@ -319,9 +347,9 @@ class _TranslationsStreamChatRaidDe extends TranslationsStreamChatRaidEn {
|
|||||||
@override String countdown({required Object time}) => 'Raubzüge auf ${time}';
|
@override String countdown({required Object time}) => 'Raubzüge auf ${time}';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit.error
|
// Path: settings.profile.error
|
||||||
class _TranslationsProfileEditErrorDe extends TranslationsProfileEditErrorEn {
|
class _TranslationsSettingsProfileErrorDe extends TranslationsSettingsProfileErrorEn {
|
||||||
_TranslationsProfileEditErrorDe._(TranslationsDe root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileErrorDe._(TranslationsDe root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsDe _root; // ignore: unused_field
|
final TranslationsDe _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -329,6 +357,16 @@ class _TranslationsProfileEditErrorDe extends TranslationsProfileEditErrorEn {
|
|||||||
@override String get logged_out => 'Profil kann nicht bearbeitet werden, wenn es abgemeldet ist';
|
@override String get logged_out => 'Profil kann nicht bearbeitet werden, wenn es abgemeldet ist';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet.error
|
||||||
|
class _TranslationsSettingsWalletErrorDe extends TranslationsSettingsWalletErrorEn {
|
||||||
|
_TranslationsSettingsWalletErrorDe._(TranslationsDe root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsDe _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get logged_out => 'Kann keine Verbindung zur Brieftasche herstellen, wenn ich abgemeldet bin';
|
||||||
|
}
|
||||||
|
|
||||||
/// Flat map(s) containing all translations.
|
/// Flat map(s) containing all translations.
|
||||||
/// Only for edge cases! For simple maps, use the map function of this library.
|
/// Only for edge cases! For simple maps, use the map function of this library.
|
||||||
extension on TranslationsDe {
|
extension on TranslationsDe {
|
||||||
@ -381,6 +419,8 @@ extension on TranslationsDe {
|
|||||||
case 'button.unmute': return 'Entstummen';
|
case 'button.unmute': return 'Entstummen';
|
||||||
case 'button.share': return 'Teilen';
|
case 'button.share': return 'Teilen';
|
||||||
case 'button.save': return 'Speichern';
|
case 'button.save': return 'Speichern';
|
||||||
|
case 'button.connect': return 'Verbinden Sie';
|
||||||
|
case 'button.settings': return 'Einstellungen';
|
||||||
case 'embed.article_by': return ({required Object name}) => 'Artikel von ${name}';
|
case 'embed.article_by': return ({required Object name}) => 'Artikel von ${name}';
|
||||||
case 'embed.note_by': return ({required Object name}) => 'Note von ${name}';
|
case 'embed.note_by': return ({required Object name}) => 'Note von ${name}';
|
||||||
case 'embed.live_stream_by': return ({required Object name}) => 'Live-Stream von ${name}';
|
case 'embed.live_stream_by': return ({required Object name}) => 'Live-Stream von ${name}';
|
||||||
@ -395,16 +435,22 @@ extension on TranslationsDe {
|
|||||||
case 'zap.button_zap_ready': return ({required Object amount}) => '${amount} sats zappen';
|
case 'zap.button_zap_ready': return ({required Object amount}) => '${amount} sats zappen';
|
||||||
case 'zap.button_zap': return 'Zap';
|
case 'zap.button_zap': return 'Zap';
|
||||||
case 'zap.button_open_wallet': return 'In Brieftasche öffnen';
|
case 'zap.button_open_wallet': return 'In Brieftasche öffnen';
|
||||||
|
case 'zap.button_connect_wallet': return 'Brieftasche verbinden';
|
||||||
case 'zap.copy': return 'In die Zwischenablage kopiert';
|
case 'zap.copy': return 'In die Zwischenablage kopiert';
|
||||||
case 'zap.error.invalid_custom_amount': return 'Ungültiger benutzerdefinierter Betrag';
|
case 'zap.error.invalid_custom_amount': return 'Ungültiger benutzerdefinierter Betrag';
|
||||||
case 'zap.error.no_wallet': return 'Keine Lightning-Brieftasche installiert';
|
case 'zap.error.no_wallet': return 'Keine Lightning-Brieftasche installiert';
|
||||||
case 'zap.error.no_lud16': return 'Keine Blitzadresse gefunden';
|
case 'zap.error.no_lud16': return 'Keine Blitzadresse gefunden';
|
||||||
case 'profile.past_streams': return 'Vergangene Streams';
|
case 'profile.past_streams': return 'Vergangene Streams';
|
||||||
case 'profile.edit.display_name': return 'Name anzeigen';
|
case 'settings.button_profile': return 'Profil bearbeiten';
|
||||||
case 'profile.edit.about': return 'Über';
|
case 'settings.button_wallet': return 'Wallet-Einstellungen';
|
||||||
case 'profile.edit.nip05': return 'Nostr-Adresse';
|
case 'settings.profile.display_name': return 'Name anzeigen';
|
||||||
case 'profile.edit.lud16': return 'Lightning-Adresse';
|
case 'settings.profile.about': return 'Über';
|
||||||
case 'profile.edit.error.logged_out': return 'Profil kann nicht bearbeitet werden, wenn es abgemeldet ist';
|
case 'settings.profile.nip05': return 'Nostr-Adresse';
|
||||||
|
case 'settings.profile.lud16': return 'Blitz-Adresse';
|
||||||
|
case 'settings.profile.error.logged_out': return 'Profil kann nicht bearbeitet werden, wenn es abgemeldet ist';
|
||||||
|
case 'settings.wallet.connect_wallet': return 'Brieftasche verbinden (NWC nwc://)';
|
||||||
|
case 'settings.wallet.disconnect_wallet': return 'Brieftasche abtrennen';
|
||||||
|
case 'settings.wallet.error.logged_out': return 'Kann keine Verbindung zur Brieftasche herstellen, wenn ich abgemeldet bin';
|
||||||
case 'login.username': return 'Benutzername';
|
case 'login.username': return 'Benutzername';
|
||||||
case 'login.amber': return 'Anmeldung mit Amber';
|
case 'login.amber': return 'Anmeldung mit Amber';
|
||||||
case 'login.key': return 'Anmeldung mit Schlüssel';
|
case 'login.key': return 'Anmeldung mit Schlüssel';
|
||||||
|
@ -67,6 +67,7 @@ class TranslationsEl extends Translations {
|
|||||||
|
|
||||||
@override late final _TranslationsZapEl zap = _TranslationsZapEl._(_root);
|
@override late final _TranslationsZapEl zap = _TranslationsZapEl._(_root);
|
||||||
@override late final _TranslationsProfileEl profile = _TranslationsProfileEl._(_root);
|
@override late final _TranslationsProfileEl profile = _TranslationsProfileEl._(_root);
|
||||||
|
@override late final _TranslationsSettingsEl settings = _TranslationsSettingsEl._(_root);
|
||||||
@override late final _TranslationsLoginEl login = _TranslationsLoginEl._(_root);
|
@override late final _TranslationsLoginEl login = _TranslationsLoginEl._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -118,6 +119,8 @@ class _TranslationsButtonEl extends TranslationsButtonEn {
|
|||||||
@override String get unmute => 'Αποσυνδέστε τη φωνή σας από το';
|
@override String get unmute => 'Αποσυνδέστε τη φωνή σας από το';
|
||||||
@override String get share => 'Μοιραστείτε το';
|
@override String get share => 'Μοιραστείτε το';
|
||||||
@override String get save => 'Αποθήκευση';
|
@override String get save => 'Αποθήκευση';
|
||||||
|
@override String get connect => 'Συνδέστε το';
|
||||||
|
@override String get settings => 'Ρυθμίσεις';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: embed
|
// Path: embed
|
||||||
@ -159,6 +162,7 @@ class _TranslationsZapEl extends TranslationsZapEn {
|
|||||||
@override String button_zap_ready({required Object amount}) => 'Zap ${amount} sats';
|
@override String button_zap_ready({required Object amount}) => 'Zap ${amount} sats';
|
||||||
@override String get button_zap => 'Zap';
|
@override String get button_zap => 'Zap';
|
||||||
@override String get button_open_wallet => 'Άνοιγμα στο πορτοφόλι';
|
@override String get button_open_wallet => 'Άνοιγμα στο πορτοφόλι';
|
||||||
|
@override String get button_connect_wallet => 'Connect Wallet';
|
||||||
@override String get copy => 'Αντιγραφή στο πρόχειρο';
|
@override String get copy => 'Αντιγραφή στο πρόχειρο';
|
||||||
@override late final _TranslationsZapErrorEl error = _TranslationsZapErrorEl._(_root);
|
@override late final _TranslationsZapErrorEl error = _TranslationsZapErrorEl._(_root);
|
||||||
}
|
}
|
||||||
@ -171,7 +175,19 @@ class _TranslationsProfileEl extends TranslationsProfileEn {
|
|||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
@override String get past_streams => 'Προηγούμενα ρεύματα';
|
@override String get past_streams => 'Προηγούμενα ρεύματα';
|
||||||
@override late final _TranslationsProfileEditEl edit = _TranslationsProfileEditEl._(_root);
|
}
|
||||||
|
|
||||||
|
// Path: settings
|
||||||
|
class _TranslationsSettingsEl extends TranslationsSettingsEn {
|
||||||
|
_TranslationsSettingsEl._(TranslationsEl root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsEl _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get button_profile => 'Επεξεργασία προφίλ';
|
||||||
|
@override String get button_wallet => 'Ρυθμίσεις πορτοφολιού';
|
||||||
|
@override late final _TranslationsSettingsProfileEl profile = _TranslationsSettingsProfileEl._(_root);
|
||||||
|
@override late final _TranslationsSettingsWalletEl wallet = _TranslationsSettingsWalletEl._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login
|
// Path: login
|
||||||
@ -247,9 +263,9 @@ class _TranslationsZapErrorEl extends TranslationsZapErrorEn {
|
|||||||
@override String get no_lud16 => 'Δεν βρέθηκε διεύθυνση κεραυνού';
|
@override String get no_lud16 => 'Δεν βρέθηκε διεύθυνση κεραυνού';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit
|
// Path: settings.profile
|
||||||
class _TranslationsProfileEditEl extends TranslationsProfileEditEn {
|
class _TranslationsSettingsProfileEl extends TranslationsSettingsProfileEn {
|
||||||
_TranslationsProfileEditEl._(TranslationsEl root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileEl._(TranslationsEl root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsEl _root; // ignore: unused_field
|
final TranslationsEl _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -258,7 +274,19 @@ class _TranslationsProfileEditEl extends TranslationsProfileEditEn {
|
|||||||
@override String get about => 'Σχετικά με το';
|
@override String get about => 'Σχετικά με το';
|
||||||
@override String get nip05 => 'Διεύθυνση Nostr';
|
@override String get nip05 => 'Διεύθυνση Nostr';
|
||||||
@override String get lud16 => 'Διεύθυνση Lightning';
|
@override String get lud16 => 'Διεύθυνση Lightning';
|
||||||
@override late final _TranslationsProfileEditErrorEl error = _TranslationsProfileEditErrorEl._(_root);
|
@override late final _TranslationsSettingsProfileErrorEl error = _TranslationsSettingsProfileErrorEl._(_root);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet
|
||||||
|
class _TranslationsSettingsWalletEl extends TranslationsSettingsWalletEn {
|
||||||
|
_TranslationsSettingsWalletEl._(TranslationsEl root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsEl _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get connect_wallet => 'Σύνδεση πορτοφολιού (NWC nwc://)';
|
||||||
|
@override String get disconnect_wallet => 'Αποσύνδεση πορτοφολιού';
|
||||||
|
@override late final _TranslationsSettingsWalletErrorEl error = _TranslationsSettingsWalletErrorEl._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login.error
|
// Path: login.error
|
||||||
@ -319,9 +347,9 @@ class _TranslationsStreamChatRaidEl extends TranslationsStreamChatRaidEn {
|
|||||||
@override String countdown({required Object time}) => 'Επιδρομές στο ${time}';
|
@override String countdown({required Object time}) => 'Επιδρομές στο ${time}';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit.error
|
// Path: settings.profile.error
|
||||||
class _TranslationsProfileEditErrorEl extends TranslationsProfileEditErrorEn {
|
class _TranslationsSettingsProfileErrorEl extends TranslationsSettingsProfileErrorEn {
|
||||||
_TranslationsProfileEditErrorEl._(TranslationsEl root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileErrorEl._(TranslationsEl root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsEl _root; // ignore: unused_field
|
final TranslationsEl _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -329,6 +357,16 @@ class _TranslationsProfileEditErrorEl extends TranslationsProfileEditErrorEn {
|
|||||||
@override String get logged_out => 'Δεν μπορείτε να επεξεργαστείτε το προφίλ όταν έχετε αποσυνδεθεί';
|
@override String get logged_out => 'Δεν μπορείτε να επεξεργαστείτε το προφίλ όταν έχετε αποσυνδεθεί';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet.error
|
||||||
|
class _TranslationsSettingsWalletErrorEl extends TranslationsSettingsWalletErrorEn {
|
||||||
|
_TranslationsSettingsWalletErrorEl._(TranslationsEl root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsEl _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get logged_out => 'Δεν μπορώ να συνδεθώ με πορτοφόλι όταν έχω αποσυνδεθεί';
|
||||||
|
}
|
||||||
|
|
||||||
/// Flat map(s) containing all translations.
|
/// Flat map(s) containing all translations.
|
||||||
/// Only for edge cases! For simple maps, use the map function of this library.
|
/// Only for edge cases! For simple maps, use the map function of this library.
|
||||||
extension on TranslationsEl {
|
extension on TranslationsEl {
|
||||||
@ -381,6 +419,8 @@ extension on TranslationsEl {
|
|||||||
case 'button.unmute': return 'Αποσυνδέστε τη φωνή σας από το';
|
case 'button.unmute': return 'Αποσυνδέστε τη φωνή σας από το';
|
||||||
case 'button.share': return 'Μοιραστείτε το';
|
case 'button.share': return 'Μοιραστείτε το';
|
||||||
case 'button.save': return 'Αποθήκευση';
|
case 'button.save': return 'Αποθήκευση';
|
||||||
|
case 'button.connect': return 'Συνδέστε το';
|
||||||
|
case 'button.settings': return 'Ρυθμίσεις';
|
||||||
case 'embed.article_by': return ({required Object name}) => 'Άρθρο από ${name}';
|
case 'embed.article_by': return ({required Object name}) => 'Άρθρο από ${name}';
|
||||||
case 'embed.note_by': return ({required Object name}) => 'Σημείωση του ${name}';
|
case 'embed.note_by': return ({required Object name}) => 'Σημείωση του ${name}';
|
||||||
case 'embed.live_stream_by': return ({required Object name}) => 'Ζωντανή μετάδοση από το ${name}';
|
case 'embed.live_stream_by': return ({required Object name}) => 'Ζωντανή μετάδοση από το ${name}';
|
||||||
@ -395,16 +435,22 @@ extension on TranslationsEl {
|
|||||||
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zap ${amount} sats';
|
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zap ${amount} sats';
|
||||||
case 'zap.button_zap': return 'Zap';
|
case 'zap.button_zap': return 'Zap';
|
||||||
case 'zap.button_open_wallet': return 'Άνοιγμα στο πορτοφόλι';
|
case 'zap.button_open_wallet': return 'Άνοιγμα στο πορτοφόλι';
|
||||||
|
case 'zap.button_connect_wallet': return 'Connect Wallet';
|
||||||
case 'zap.copy': return 'Αντιγραφή στο πρόχειρο';
|
case 'zap.copy': return 'Αντιγραφή στο πρόχειρο';
|
||||||
case 'zap.error.invalid_custom_amount': return 'Μη έγκυρο προσαρμοσμένο ποσό';
|
case 'zap.error.invalid_custom_amount': return 'Μη έγκυρο προσαρμοσμένο ποσό';
|
||||||
case 'zap.error.no_wallet': return 'Δεν έχει εγκατασταθεί πορτοφόλι αστραπής';
|
case 'zap.error.no_wallet': return 'Δεν έχει εγκατασταθεί πορτοφόλι αστραπής';
|
||||||
case 'zap.error.no_lud16': return 'Δεν βρέθηκε διεύθυνση κεραυνού';
|
case 'zap.error.no_lud16': return 'Δεν βρέθηκε διεύθυνση κεραυνού';
|
||||||
case 'profile.past_streams': return 'Προηγούμενα ρεύματα';
|
case 'profile.past_streams': return 'Προηγούμενα ρεύματα';
|
||||||
case 'profile.edit.display_name': return 'Όνομα οθόνης';
|
case 'settings.button_profile': return 'Επεξεργασία προφίλ';
|
||||||
case 'profile.edit.about': return 'Σχετικά με το';
|
case 'settings.button_wallet': return 'Ρυθμίσεις πορτοφολιού';
|
||||||
case 'profile.edit.nip05': return 'Διεύθυνση Nostr';
|
case 'settings.profile.display_name': return 'Όνομα οθόνης';
|
||||||
case 'profile.edit.lud16': return 'Διεύθυνση Lightning';
|
case 'settings.profile.about': return 'Σχετικά με το';
|
||||||
case 'profile.edit.error.logged_out': return 'Δεν μπορείτε να επεξεργαστείτε το προφίλ όταν έχετε αποσυνδεθεί';
|
case 'settings.profile.nip05': return 'Διεύθυνση Nostr';
|
||||||
|
case 'settings.profile.lud16': return 'Διεύθυνση Lightning';
|
||||||
|
case 'settings.profile.error.logged_out': return 'Δεν μπορείτε να επεξεργαστείτε το προφίλ όταν έχετε αποσυνδεθεί';
|
||||||
|
case 'settings.wallet.connect_wallet': return 'Σύνδεση πορτοφολιού (NWC nwc://)';
|
||||||
|
case 'settings.wallet.disconnect_wallet': return 'Αποσύνδεση πορτοφολιού';
|
||||||
|
case 'settings.wallet.error.logged_out': return 'Δεν μπορώ να συνδεθώ με πορτοφόλι όταν έχω αποσυνδεθεί';
|
||||||
case 'login.username': return 'Όνομα χρήστη';
|
case 'login.username': return 'Όνομα χρήστη';
|
||||||
case 'login.amber': return 'Σύνδεση με Amber';
|
case 'login.amber': return 'Σύνδεση με Amber';
|
||||||
case 'login.key': return 'Σύνδεση με κλειδί';
|
case 'login.key': return 'Σύνδεση με κλειδί';
|
||||||
|
@ -68,7 +68,7 @@ class Translations implements BaseTranslations<AppLocale, Translations> {
|
|||||||
|
|
||||||
late final TranslationsZapEn zap = TranslationsZapEn.internal(_root);
|
late final TranslationsZapEn zap = TranslationsZapEn.internal(_root);
|
||||||
late final TranslationsProfileEn profile = TranslationsProfileEn.internal(_root);
|
late final TranslationsProfileEn profile = TranslationsProfileEn.internal(_root);
|
||||||
late final TranslationsWalletEn wallet = TranslationsWalletEn.internal(_root);
|
late final TranslationsSettingsEn settings = TranslationsSettingsEn.internal(_root);
|
||||||
late final TranslationsLoginEn login = TranslationsLoginEn.internal(_root);
|
late final TranslationsLoginEn login = TranslationsLoginEn.internal(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -121,6 +121,7 @@ class TranslationsButtonEn {
|
|||||||
String get share => 'Share';
|
String get share => 'Share';
|
||||||
String get save => 'Save';
|
String get save => 'Save';
|
||||||
String get connect => 'Connect';
|
String get connect => 'Connect';
|
||||||
|
String get settings => 'Settings';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: embed
|
// Path: embed
|
||||||
@ -175,18 +176,19 @@ class TranslationsProfileEn {
|
|||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
String get past_streams => 'Past Streams';
|
String get past_streams => 'Past Streams';
|
||||||
late final TranslationsProfileEditEn edit = TranslationsProfileEditEn.internal(_root);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: wallet
|
// Path: settings
|
||||||
class TranslationsWalletEn {
|
class TranslationsSettingsEn {
|
||||||
TranslationsWalletEn.internal(this._root);
|
TranslationsSettingsEn.internal(this._root);
|
||||||
|
|
||||||
final Translations _root; // ignore: unused_field
|
final Translations _root; // ignore: unused_field
|
||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
String get connect_wallet => 'Connect Wallet (NWC)';
|
String get button_profile => 'Edit Profile';
|
||||||
late final TranslationsWalletErrorEn error = TranslationsWalletErrorEn.internal(_root);
|
String get button_wallet => 'Wallet Settings';
|
||||||
|
late final TranslationsSettingsProfileEn profile = TranslationsSettingsProfileEn.internal(_root);
|
||||||
|
late final TranslationsSettingsWalletEn wallet = TranslationsSettingsWalletEn.internal(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login
|
// Path: login
|
||||||
@ -262,9 +264,9 @@ class TranslationsZapErrorEn {
|
|||||||
String get no_lud16 => 'No lightning address found';
|
String get no_lud16 => 'No lightning address found';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit
|
// Path: settings.profile
|
||||||
class TranslationsProfileEditEn {
|
class TranslationsSettingsProfileEn {
|
||||||
TranslationsProfileEditEn.internal(this._root);
|
TranslationsSettingsProfileEn.internal(this._root);
|
||||||
|
|
||||||
final Translations _root; // ignore: unused_field
|
final Translations _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -273,17 +275,19 @@ class TranslationsProfileEditEn {
|
|||||||
String get about => 'About';
|
String get about => 'About';
|
||||||
String get nip05 => 'Nostr Address';
|
String get nip05 => 'Nostr Address';
|
||||||
String get lud16 => 'Lightning Address';
|
String get lud16 => 'Lightning Address';
|
||||||
late final TranslationsProfileEditErrorEn error = TranslationsProfileEditErrorEn.internal(_root);
|
late final TranslationsSettingsProfileErrorEn error = TranslationsSettingsProfileErrorEn.internal(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: wallet.error
|
// Path: settings.wallet
|
||||||
class TranslationsWalletErrorEn {
|
class TranslationsSettingsWalletEn {
|
||||||
TranslationsWalletErrorEn.internal(this._root);
|
TranslationsSettingsWalletEn.internal(this._root);
|
||||||
|
|
||||||
final Translations _root; // ignore: unused_field
|
final Translations _root; // ignore: unused_field
|
||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
String get logged_out => 'Cant connect wallet when logged out';
|
String get connect_wallet => 'Connect Wallet (NWC nwc://)';
|
||||||
|
String get disconnect_wallet => 'Disconnect Wallet';
|
||||||
|
late final TranslationsSettingsWalletErrorEn error = TranslationsSettingsWalletErrorEn.internal(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login.error
|
// Path: login.error
|
||||||
@ -344,9 +348,9 @@ class TranslationsStreamChatRaidEn {
|
|||||||
String countdown({required Object time}) => 'Raiding in ${time}';
|
String countdown({required Object time}) => 'Raiding in ${time}';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit.error
|
// Path: settings.profile.error
|
||||||
class TranslationsProfileEditErrorEn {
|
class TranslationsSettingsProfileErrorEn {
|
||||||
TranslationsProfileEditErrorEn.internal(this._root);
|
TranslationsSettingsProfileErrorEn.internal(this._root);
|
||||||
|
|
||||||
final Translations _root; // ignore: unused_field
|
final Translations _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -354,6 +358,16 @@ class TranslationsProfileEditErrorEn {
|
|||||||
String get logged_out => 'Cant edit profile when logged out';
|
String get logged_out => 'Cant edit profile when logged out';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet.error
|
||||||
|
class TranslationsSettingsWalletErrorEn {
|
||||||
|
TranslationsSettingsWalletErrorEn.internal(this._root);
|
||||||
|
|
||||||
|
final Translations _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
String get logged_out => 'Cant connect wallet when logged out';
|
||||||
|
}
|
||||||
|
|
||||||
/// Flat map(s) containing all translations.
|
/// Flat map(s) containing all translations.
|
||||||
/// Only for edge cases! For simple maps, use the map function of this library.
|
/// Only for edge cases! For simple maps, use the map function of this library.
|
||||||
extension on Translations {
|
extension on Translations {
|
||||||
@ -407,6 +421,7 @@ extension on Translations {
|
|||||||
case 'button.share': return 'Share';
|
case 'button.share': return 'Share';
|
||||||
case 'button.save': return 'Save';
|
case 'button.save': return 'Save';
|
||||||
case 'button.connect': return 'Connect';
|
case 'button.connect': return 'Connect';
|
||||||
|
case 'button.settings': return 'Settings';
|
||||||
case 'embed.article_by': return ({required Object name}) => 'Article by ${name}';
|
case 'embed.article_by': return ({required Object name}) => 'Article by ${name}';
|
||||||
case 'embed.note_by': return ({required Object name}) => 'Note by ${name}';
|
case 'embed.note_by': return ({required Object name}) => 'Note by ${name}';
|
||||||
case 'embed.live_stream_by': return ({required Object name}) => 'Live stream by ${name}';
|
case 'embed.live_stream_by': return ({required Object name}) => 'Live stream by ${name}';
|
||||||
@ -427,13 +442,16 @@ extension on Translations {
|
|||||||
case 'zap.error.no_wallet': return 'No lightning wallet installed';
|
case 'zap.error.no_wallet': return 'No lightning wallet installed';
|
||||||
case 'zap.error.no_lud16': return 'No lightning address found';
|
case 'zap.error.no_lud16': return 'No lightning address found';
|
||||||
case 'profile.past_streams': return 'Past Streams';
|
case 'profile.past_streams': return 'Past Streams';
|
||||||
case 'profile.edit.display_name': return 'Display Name';
|
case 'settings.button_profile': return 'Edit Profile';
|
||||||
case 'profile.edit.about': return 'About';
|
case 'settings.button_wallet': return 'Wallet Settings';
|
||||||
case 'profile.edit.nip05': return 'Nostr Address';
|
case 'settings.profile.display_name': return 'Display Name';
|
||||||
case 'profile.edit.lud16': return 'Lightning Address';
|
case 'settings.profile.about': return 'About';
|
||||||
case 'profile.edit.error.logged_out': return 'Cant edit profile when logged out';
|
case 'settings.profile.nip05': return 'Nostr Address';
|
||||||
case 'wallet.connect_wallet': return 'Connect Wallet (NWC)';
|
case 'settings.profile.lud16': return 'Lightning Address';
|
||||||
case 'wallet.error.logged_out': return 'Cant connect wallet when logged out';
|
case 'settings.profile.error.logged_out': return 'Cant edit profile when logged out';
|
||||||
|
case 'settings.wallet.connect_wallet': return 'Connect Wallet (NWC nwc://)';
|
||||||
|
case 'settings.wallet.disconnect_wallet': return 'Disconnect Wallet';
|
||||||
|
case 'settings.wallet.error.logged_out': return 'Cant connect wallet when logged out';
|
||||||
case 'login.username': return 'Username';
|
case 'login.username': return 'Username';
|
||||||
case 'login.amber': return 'Login with Amber';
|
case 'login.amber': return 'Login with Amber';
|
||||||
case 'login.key': return 'Login with Key';
|
case 'login.key': return 'Login with Key';
|
||||||
|
@ -67,6 +67,7 @@ class TranslationsEs extends Translations {
|
|||||||
|
|
||||||
@override late final _TranslationsZapEs zap = _TranslationsZapEs._(_root);
|
@override late final _TranslationsZapEs zap = _TranslationsZapEs._(_root);
|
||||||
@override late final _TranslationsProfileEs profile = _TranslationsProfileEs._(_root);
|
@override late final _TranslationsProfileEs profile = _TranslationsProfileEs._(_root);
|
||||||
|
@override late final _TranslationsSettingsEs settings = _TranslationsSettingsEs._(_root);
|
||||||
@override late final _TranslationsLoginEs login = _TranslationsLoginEs._(_root);
|
@override late final _TranslationsLoginEs login = _TranslationsLoginEs._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -118,6 +119,8 @@ class _TranslationsButtonEs extends TranslationsButtonEn {
|
|||||||
@override String get unmute => 'Dejar de silenciar';
|
@override String get unmute => 'Dejar de silenciar';
|
||||||
@override String get share => 'Compartir';
|
@override String get share => 'Compartir';
|
||||||
@override String get save => 'Guardar';
|
@override String get save => 'Guardar';
|
||||||
|
@override String get connect => 'Conectar';
|
||||||
|
@override String get settings => 'Ajustes';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: embed
|
// Path: embed
|
||||||
@ -159,6 +162,7 @@ class _TranslationsZapEs extends TranslationsZapEn {
|
|||||||
@override String button_zap_ready({required Object amount}) => 'Zapear ${amount} sats';
|
@override String button_zap_ready({required Object amount}) => 'Zapear ${amount} sats';
|
||||||
@override String get button_zap => 'Zap';
|
@override String get button_zap => 'Zap';
|
||||||
@override String get button_open_wallet => 'Abrir en cartera';
|
@override String get button_open_wallet => 'Abrir en cartera';
|
||||||
|
@override String get button_connect_wallet => 'Billetera Connect';
|
||||||
@override String get copy => 'Copiado al portapapeles';
|
@override String get copy => 'Copiado al portapapeles';
|
||||||
@override late final _TranslationsZapErrorEs error = _TranslationsZapErrorEs._(_root);
|
@override late final _TranslationsZapErrorEs error = _TranslationsZapErrorEs._(_root);
|
||||||
}
|
}
|
||||||
@ -171,7 +175,19 @@ class _TranslationsProfileEs extends TranslationsProfileEn {
|
|||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
@override String get past_streams => 'Transmisiones anteriores';
|
@override String get past_streams => 'Transmisiones anteriores';
|
||||||
@override late final _TranslationsProfileEditEs edit = _TranslationsProfileEditEs._(_root);
|
}
|
||||||
|
|
||||||
|
// Path: settings
|
||||||
|
class _TranslationsSettingsEs extends TranslationsSettingsEn {
|
||||||
|
_TranslationsSettingsEs._(TranslationsEs root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsEs _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get button_profile => 'Editar perfil';
|
||||||
|
@override String get button_wallet => 'Configuración de la cartera';
|
||||||
|
@override late final _TranslationsSettingsProfileEs profile = _TranslationsSettingsProfileEs._(_root);
|
||||||
|
@override late final _TranslationsSettingsWalletEs wallet = _TranslationsSettingsWalletEs._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login
|
// Path: login
|
||||||
@ -247,18 +263,30 @@ class _TranslationsZapErrorEs extends TranslationsZapErrorEn {
|
|||||||
@override String get no_lud16 => 'No se ha encontrado ninguna dirección de rayos';
|
@override String get no_lud16 => 'No se ha encontrado ninguna dirección de rayos';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit
|
// Path: settings.profile
|
||||||
class _TranslationsProfileEditEs extends TranslationsProfileEditEn {
|
class _TranslationsSettingsProfileEs extends TranslationsSettingsProfileEn {
|
||||||
_TranslationsProfileEditEs._(TranslationsEs root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileEs._(TranslationsEs root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsEs _root; // ignore: unused_field
|
final TranslationsEs _root; // ignore: unused_field
|
||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
@override String get display_name => 'Mostrar nombre';
|
@override String get display_name => 'Mostrar nombre';
|
||||||
@override String get about => 'Sobre ti';
|
@override String get about => 'Acerca de';
|
||||||
@override String get nip05 => 'Dirección Nostr';
|
@override String get nip05 => 'Dirección Nostr';
|
||||||
@override String get lud16 => 'Dirección del rayo';
|
@override String get lud16 => 'Dirección del rayo';
|
||||||
@override late final _TranslationsProfileEditErrorEs error = _TranslationsProfileEditErrorEs._(_root);
|
@override late final _TranslationsSettingsProfileErrorEs error = _TranslationsSettingsProfileErrorEs._(_root);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet
|
||||||
|
class _TranslationsSettingsWalletEs extends TranslationsSettingsWalletEn {
|
||||||
|
_TranslationsSettingsWalletEs._(TranslationsEs root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsEs _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get connect_wallet => 'Cartera Connect (NWC nwc://)';
|
||||||
|
@override String get disconnect_wallet => 'Desconectar Cartera';
|
||||||
|
@override late final _TranslationsSettingsWalletErrorEs error = _TranslationsSettingsWalletErrorEs._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login.error
|
// Path: login.error
|
||||||
@ -319,9 +347,9 @@ class _TranslationsStreamChatRaidEs extends TranslationsStreamChatRaidEn {
|
|||||||
@override String countdown({required Object time}) => 'Incursiones en ${time}';
|
@override String countdown({required Object time}) => 'Incursiones en ${time}';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit.error
|
// Path: settings.profile.error
|
||||||
class _TranslationsProfileEditErrorEs extends TranslationsProfileEditErrorEn {
|
class _TranslationsSettingsProfileErrorEs extends TranslationsSettingsProfileErrorEn {
|
||||||
_TranslationsProfileEditErrorEs._(TranslationsEs root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileErrorEs._(TranslationsEs root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsEs _root; // ignore: unused_field
|
final TranslationsEs _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -329,6 +357,16 @@ class _TranslationsProfileEditErrorEs extends TranslationsProfileEditErrorEn {
|
|||||||
@override String get logged_out => 'No se puede editar el perfil cuando se cierra la sesión';
|
@override String get logged_out => 'No se puede editar el perfil cuando se cierra la sesión';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet.error
|
||||||
|
class _TranslationsSettingsWalletErrorEs extends TranslationsSettingsWalletErrorEn {
|
||||||
|
_TranslationsSettingsWalletErrorEs._(TranslationsEs root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsEs _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get logged_out => 'No se puede conectar el monedero al cerrar la sesión';
|
||||||
|
}
|
||||||
|
|
||||||
/// Flat map(s) containing all translations.
|
/// Flat map(s) containing all translations.
|
||||||
/// Only for edge cases! For simple maps, use the map function of this library.
|
/// Only for edge cases! For simple maps, use the map function of this library.
|
||||||
extension on TranslationsEs {
|
extension on TranslationsEs {
|
||||||
@ -381,6 +419,8 @@ extension on TranslationsEs {
|
|||||||
case 'button.unmute': return 'Dejar de silenciar';
|
case 'button.unmute': return 'Dejar de silenciar';
|
||||||
case 'button.share': return 'Compartir';
|
case 'button.share': return 'Compartir';
|
||||||
case 'button.save': return 'Guardar';
|
case 'button.save': return 'Guardar';
|
||||||
|
case 'button.connect': return 'Conectar';
|
||||||
|
case 'button.settings': return 'Ajustes';
|
||||||
case 'embed.article_by': return ({required Object name}) => 'Artículo de ${name}';
|
case 'embed.article_by': return ({required Object name}) => 'Artículo de ${name}';
|
||||||
case 'embed.note_by': return ({required Object name}) => 'Nota de ${name}';
|
case 'embed.note_by': return ({required Object name}) => 'Nota de ${name}';
|
||||||
case 'embed.live_stream_by': return ({required Object name}) => 'Transmisión en directo por ${name}';
|
case 'embed.live_stream_by': return ({required Object name}) => 'Transmisión en directo por ${name}';
|
||||||
@ -395,16 +435,22 @@ extension on TranslationsEs {
|
|||||||
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zapear ${amount} sats';
|
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zapear ${amount} sats';
|
||||||
case 'zap.button_zap': return 'Zap';
|
case 'zap.button_zap': return 'Zap';
|
||||||
case 'zap.button_open_wallet': return 'Abrir en cartera';
|
case 'zap.button_open_wallet': return 'Abrir en cartera';
|
||||||
|
case 'zap.button_connect_wallet': return 'Billetera Connect';
|
||||||
case 'zap.copy': return 'Copiado al portapapeles';
|
case 'zap.copy': return 'Copiado al portapapeles';
|
||||||
case 'zap.error.invalid_custom_amount': return 'Importe personalizado no válido';
|
case 'zap.error.invalid_custom_amount': return 'Importe personalizado no válido';
|
||||||
case 'zap.error.no_wallet': return 'Sin monedero relámpago instalado';
|
case 'zap.error.no_wallet': return 'Sin monedero relámpago instalado';
|
||||||
case 'zap.error.no_lud16': return 'No se ha encontrado ninguna dirección de rayos';
|
case 'zap.error.no_lud16': return 'No se ha encontrado ninguna dirección de rayos';
|
||||||
case 'profile.past_streams': return 'Transmisiones anteriores';
|
case 'profile.past_streams': return 'Transmisiones anteriores';
|
||||||
case 'profile.edit.display_name': return 'Mostrar nombre';
|
case 'settings.button_profile': return 'Editar perfil';
|
||||||
case 'profile.edit.about': return 'Sobre ti';
|
case 'settings.button_wallet': return 'Configuración de la cartera';
|
||||||
case 'profile.edit.nip05': return 'Dirección Nostr';
|
case 'settings.profile.display_name': return 'Mostrar nombre';
|
||||||
case 'profile.edit.lud16': return 'Dirección del rayo';
|
case 'settings.profile.about': return 'Acerca de';
|
||||||
case 'profile.edit.error.logged_out': return 'No se puede editar el perfil cuando se cierra la sesión';
|
case 'settings.profile.nip05': return 'Dirección Nostr';
|
||||||
|
case 'settings.profile.lud16': return 'Dirección del rayo';
|
||||||
|
case 'settings.profile.error.logged_out': return 'No se puede editar el perfil cuando se cierra la sesión';
|
||||||
|
case 'settings.wallet.connect_wallet': return 'Cartera Connect (NWC nwc://)';
|
||||||
|
case 'settings.wallet.disconnect_wallet': return 'Desconectar Cartera';
|
||||||
|
case 'settings.wallet.error.logged_out': return 'No se puede conectar el monedero al cerrar la sesión';
|
||||||
case 'login.username': return 'Usuario';
|
case 'login.username': return 'Usuario';
|
||||||
case 'login.amber': return 'Iniciar sesión con Amber';
|
case 'login.amber': return 'Iniciar sesión con Amber';
|
||||||
case 'login.key': return 'Inicio de sesión con clave';
|
case 'login.key': return 'Inicio de sesión con clave';
|
||||||
|
@ -67,6 +67,7 @@ class TranslationsFi extends Translations {
|
|||||||
|
|
||||||
@override late final _TranslationsZapFi zap = _TranslationsZapFi._(_root);
|
@override late final _TranslationsZapFi zap = _TranslationsZapFi._(_root);
|
||||||
@override late final _TranslationsProfileFi profile = _TranslationsProfileFi._(_root);
|
@override late final _TranslationsProfileFi profile = _TranslationsProfileFi._(_root);
|
||||||
|
@override late final _TranslationsSettingsFi settings = _TranslationsSettingsFi._(_root);
|
||||||
@override late final _TranslationsLoginFi login = _TranslationsLoginFi._(_root);
|
@override late final _TranslationsLoginFi login = _TranslationsLoginFi._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -118,6 +119,8 @@ class _TranslationsButtonFi extends TranslationsButtonEn {
|
|||||||
@override String get unmute => 'Poista mykistys';
|
@override String get unmute => 'Poista mykistys';
|
||||||
@override String get share => 'Jaa';
|
@override String get share => 'Jaa';
|
||||||
@override String get save => 'Tallenna';
|
@override String get save => 'Tallenna';
|
||||||
|
@override String get connect => 'Yhdistä';
|
||||||
|
@override String get settings => 'Asetukset';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: embed
|
// Path: embed
|
||||||
@ -159,6 +162,7 @@ class _TranslationsZapFi extends TranslationsZapEn {
|
|||||||
@override String button_zap_ready({required Object amount}) => 'Zap ${amount} satsia';
|
@override String button_zap_ready({required Object amount}) => 'Zap ${amount} satsia';
|
||||||
@override String get button_zap => 'Zap';
|
@override String get button_zap => 'Zap';
|
||||||
@override String get button_open_wallet => 'Avaa lompakossa';
|
@override String get button_open_wallet => 'Avaa lompakossa';
|
||||||
|
@override String get button_connect_wallet => 'Yhdistä lompakko';
|
||||||
@override String get copy => 'Kopioitu leikepöydälle';
|
@override String get copy => 'Kopioitu leikepöydälle';
|
||||||
@override late final _TranslationsZapErrorFi error = _TranslationsZapErrorFi._(_root);
|
@override late final _TranslationsZapErrorFi error = _TranslationsZapErrorFi._(_root);
|
||||||
}
|
}
|
||||||
@ -171,7 +175,19 @@ class _TranslationsProfileFi extends TranslationsProfileEn {
|
|||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
@override String get past_streams => 'Aikaisemmat lähetykset';
|
@override String get past_streams => 'Aikaisemmat lähetykset';
|
||||||
@override late final _TranslationsProfileEditFi edit = _TranslationsProfileEditFi._(_root);
|
}
|
||||||
|
|
||||||
|
// Path: settings
|
||||||
|
class _TranslationsSettingsFi extends TranslationsSettingsEn {
|
||||||
|
_TranslationsSettingsFi._(TranslationsFi root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsFi _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get button_profile => 'Muokkaa profiilia';
|
||||||
|
@override String get button_wallet => 'Lompakon asetukset';
|
||||||
|
@override late final _TranslationsSettingsProfileFi profile = _TranslationsSettingsProfileFi._(_root);
|
||||||
|
@override late final _TranslationsSettingsWalletFi wallet = _TranslationsSettingsWalletFi._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login
|
// Path: login
|
||||||
@ -247,18 +263,30 @@ class _TranslationsZapErrorFi extends TranslationsZapErrorEn {
|
|||||||
@override String get no_lud16 => 'Salamaosoitetta ei löytynyt';
|
@override String get no_lud16 => 'Salamaosoitetta ei löytynyt';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit
|
// Path: settings.profile
|
||||||
class _TranslationsProfileEditFi extends TranslationsProfileEditEn {
|
class _TranslationsSettingsProfileFi extends TranslationsSettingsProfileEn {
|
||||||
_TranslationsProfileEditFi._(TranslationsFi root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileFi._(TranslationsFi root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsFi _root; // ignore: unused_field
|
final TranslationsFi _root; // ignore: unused_field
|
||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
@override String get display_name => 'Näytön nimi';
|
@override String get display_name => 'Näytön nimi';
|
||||||
@override String get about => 'Tietoja';
|
@override String get about => 'Tietoja';
|
||||||
@override String get nip05 => 'Nostr-osoite';
|
@override String get nip05 => 'Nostr Osoite';
|
||||||
@override String get lud16 => 'Lightning-osoite';
|
@override String get lud16 => 'Salama osoite';
|
||||||
@override late final _TranslationsProfileEditErrorFi error = _TranslationsProfileEditErrorFi._(_root);
|
@override late final _TranslationsSettingsProfileErrorFi error = _TranslationsSettingsProfileErrorFi._(_root);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet
|
||||||
|
class _TranslationsSettingsWalletFi extends TranslationsSettingsWalletEn {
|
||||||
|
_TranslationsSettingsWalletFi._(TranslationsFi root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsFi _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get connect_wallet => 'Yhdistä lompakko (NWC nwc://)';
|
||||||
|
@override String get disconnect_wallet => 'Irrota lompakko';
|
||||||
|
@override late final _TranslationsSettingsWalletErrorFi error = _TranslationsSettingsWalletErrorFi._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login.error
|
// Path: login.error
|
||||||
@ -319,9 +347,9 @@ class _TranslationsStreamChatRaidFi extends TranslationsStreamChatRaidEn {
|
|||||||
@override String countdown({required Object time}) => 'Ryöstöretket osoitteessa ${time}';
|
@override String countdown({required Object time}) => 'Ryöstöretket osoitteessa ${time}';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit.error
|
// Path: settings.profile.error
|
||||||
class _TranslationsProfileEditErrorFi extends TranslationsProfileEditErrorEn {
|
class _TranslationsSettingsProfileErrorFi extends TranslationsSettingsProfileErrorEn {
|
||||||
_TranslationsProfileEditErrorFi._(TranslationsFi root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileErrorFi._(TranslationsFi root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsFi _root; // ignore: unused_field
|
final TranslationsFi _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -329,6 +357,16 @@ class _TranslationsProfileEditErrorFi extends TranslationsProfileEditErrorEn {
|
|||||||
@override String get logged_out => 'Ei voi muokata profiilia, kun on kirjautunut ulos';
|
@override String get logged_out => 'Ei voi muokata profiilia, kun on kirjautunut ulos';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet.error
|
||||||
|
class _TranslationsSettingsWalletErrorFi extends TranslationsSettingsWalletErrorEn {
|
||||||
|
_TranslationsSettingsWalletErrorFi._(TranslationsFi root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsFi _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get logged_out => 'Ei voi muodostaa yhteyttä lompakkoon, kun on kirjautunut ulos';
|
||||||
|
}
|
||||||
|
|
||||||
/// Flat map(s) containing all translations.
|
/// Flat map(s) containing all translations.
|
||||||
/// Only for edge cases! For simple maps, use the map function of this library.
|
/// Only for edge cases! For simple maps, use the map function of this library.
|
||||||
extension on TranslationsFi {
|
extension on TranslationsFi {
|
||||||
@ -381,6 +419,8 @@ extension on TranslationsFi {
|
|||||||
case 'button.unmute': return 'Poista mykistys';
|
case 'button.unmute': return 'Poista mykistys';
|
||||||
case 'button.share': return 'Jaa';
|
case 'button.share': return 'Jaa';
|
||||||
case 'button.save': return 'Tallenna';
|
case 'button.save': return 'Tallenna';
|
||||||
|
case 'button.connect': return 'Yhdistä';
|
||||||
|
case 'button.settings': return 'Asetukset';
|
||||||
case 'embed.article_by': return ({required Object name}) => 'Artikkeli ${name}';
|
case 'embed.article_by': return ({required Object name}) => 'Artikkeli ${name}';
|
||||||
case 'embed.note_by': return ({required Object name}) => 'Viesti lähettäjältä ${name}';
|
case 'embed.note_by': return ({required Object name}) => 'Viesti lähettäjältä ${name}';
|
||||||
case 'embed.live_stream_by': return ({required Object name}) => 'Suora lähetys osoitteessa ${name}';
|
case 'embed.live_stream_by': return ({required Object name}) => 'Suora lähetys osoitteessa ${name}';
|
||||||
@ -395,16 +435,22 @@ extension on TranslationsFi {
|
|||||||
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zap ${amount} satsia';
|
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zap ${amount} satsia';
|
||||||
case 'zap.button_zap': return 'Zap';
|
case 'zap.button_zap': return 'Zap';
|
||||||
case 'zap.button_open_wallet': return 'Avaa lompakossa';
|
case 'zap.button_open_wallet': return 'Avaa lompakossa';
|
||||||
|
case 'zap.button_connect_wallet': return 'Yhdistä lompakko';
|
||||||
case 'zap.copy': return 'Kopioitu leikepöydälle';
|
case 'zap.copy': return 'Kopioitu leikepöydälle';
|
||||||
case 'zap.error.invalid_custom_amount': return 'Virheellinen mukautettu määrä';
|
case 'zap.error.invalid_custom_amount': return 'Virheellinen mukautettu määrä';
|
||||||
case 'zap.error.no_wallet': return 'Ei asennettua salamalompakkoa';
|
case 'zap.error.no_wallet': return 'Ei asennettua salamalompakkoa';
|
||||||
case 'zap.error.no_lud16': return 'Salamaosoitetta ei löytynyt';
|
case 'zap.error.no_lud16': return 'Salamaosoitetta ei löytynyt';
|
||||||
case 'profile.past_streams': return 'Aikaisemmat lähetykset';
|
case 'profile.past_streams': return 'Aikaisemmat lähetykset';
|
||||||
case 'profile.edit.display_name': return 'Näytön nimi';
|
case 'settings.button_profile': return 'Muokkaa profiilia';
|
||||||
case 'profile.edit.about': return 'Tietoja';
|
case 'settings.button_wallet': return 'Lompakon asetukset';
|
||||||
case 'profile.edit.nip05': return 'Nostr-osoite';
|
case 'settings.profile.display_name': return 'Näytön nimi';
|
||||||
case 'profile.edit.lud16': return 'Lightning-osoite';
|
case 'settings.profile.about': return 'Tietoja';
|
||||||
case 'profile.edit.error.logged_out': return 'Ei voi muokata profiilia, kun on kirjautunut ulos';
|
case 'settings.profile.nip05': return 'Nostr Osoite';
|
||||||
|
case 'settings.profile.lud16': return 'Salama osoite';
|
||||||
|
case 'settings.profile.error.logged_out': return 'Ei voi muokata profiilia, kun on kirjautunut ulos';
|
||||||
|
case 'settings.wallet.connect_wallet': return 'Yhdistä lompakko (NWC nwc://)';
|
||||||
|
case 'settings.wallet.disconnect_wallet': return 'Irrota lompakko';
|
||||||
|
case 'settings.wallet.error.logged_out': return 'Ei voi muodostaa yhteyttä lompakkoon, kun on kirjautunut ulos';
|
||||||
case 'login.username': return 'Käyttäjätunnus';
|
case 'login.username': return 'Käyttäjätunnus';
|
||||||
case 'login.amber': return 'Kirjaudu sisään Amber kanssa';
|
case 'login.amber': return 'Kirjaudu sisään Amber kanssa';
|
||||||
case 'login.key': return 'Kirjaudu sisään avaimella';
|
case 'login.key': return 'Kirjaudu sisään avaimella';
|
||||||
|
@ -67,6 +67,7 @@ class TranslationsFr extends Translations {
|
|||||||
|
|
||||||
@override late final _TranslationsZapFr zap = _TranslationsZapFr._(_root);
|
@override late final _TranslationsZapFr zap = _TranslationsZapFr._(_root);
|
||||||
@override late final _TranslationsProfileFr profile = _TranslationsProfileFr._(_root);
|
@override late final _TranslationsProfileFr profile = _TranslationsProfileFr._(_root);
|
||||||
|
@override late final _TranslationsSettingsFr settings = _TranslationsSettingsFr._(_root);
|
||||||
@override late final _TranslationsLoginFr login = _TranslationsLoginFr._(_root);
|
@override late final _TranslationsLoginFr login = _TranslationsLoginFr._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -118,6 +119,8 @@ class _TranslationsButtonFr extends TranslationsButtonEn {
|
|||||||
@override String get unmute => 'Retirer sourdine';
|
@override String get unmute => 'Retirer sourdine';
|
||||||
@override String get share => 'Partager';
|
@override String get share => 'Partager';
|
||||||
@override String get save => 'Sauvegarder';
|
@override String get save => 'Sauvegarder';
|
||||||
|
@override String get connect => 'Connecter';
|
||||||
|
@override String get settings => 'Paramètres';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: embed
|
// Path: embed
|
||||||
@ -159,6 +162,7 @@ class _TranslationsZapFr extends TranslationsZapEn {
|
|||||||
@override String button_zap_ready({required Object amount}) => 'Zapper ${amount} sats';
|
@override String button_zap_ready({required Object amount}) => 'Zapper ${amount} sats';
|
||||||
@override String get button_zap => 'Zap';
|
@override String get button_zap => 'Zap';
|
||||||
@override String get button_open_wallet => 'Ouvrir dans le portefeuille';
|
@override String get button_open_wallet => 'Ouvrir dans le portefeuille';
|
||||||
|
@override String get button_connect_wallet => 'Connecter le portefeuille';
|
||||||
@override String get copy => 'Copié dans le presse-papiers';
|
@override String get copy => 'Copié dans le presse-papiers';
|
||||||
@override late final _TranslationsZapErrorFr error = _TranslationsZapErrorFr._(_root);
|
@override late final _TranslationsZapErrorFr error = _TranslationsZapErrorFr._(_root);
|
||||||
}
|
}
|
||||||
@ -171,7 +175,19 @@ class _TranslationsProfileFr extends TranslationsProfileEn {
|
|||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
@override String get past_streams => 'Streams passés';
|
@override String get past_streams => 'Streams passés';
|
||||||
@override late final _TranslationsProfileEditFr edit = _TranslationsProfileEditFr._(_root);
|
}
|
||||||
|
|
||||||
|
// Path: settings
|
||||||
|
class _TranslationsSettingsFr extends TranslationsSettingsEn {
|
||||||
|
_TranslationsSettingsFr._(TranslationsFr root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsFr _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get button_profile => 'Modifier le profil';
|
||||||
|
@override String get button_wallet => 'Paramètres du portefeuille';
|
||||||
|
@override late final _TranslationsSettingsProfileFr profile = _TranslationsSettingsProfileFr._(_root);
|
||||||
|
@override late final _TranslationsSettingsWalletFr wallet = _TranslationsSettingsWalletFr._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login
|
// Path: login
|
||||||
@ -247,18 +263,30 @@ class _TranslationsZapErrorFr extends TranslationsZapErrorEn {
|
|||||||
@override String get no_lud16 => 'Pas d\'adresse éclair trouvée';
|
@override String get no_lud16 => 'Pas d\'adresse éclair trouvée';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit
|
// Path: settings.profile
|
||||||
class _TranslationsProfileEditFr extends TranslationsProfileEditEn {
|
class _TranslationsSettingsProfileFr extends TranslationsSettingsProfileEn {
|
||||||
_TranslationsProfileEditFr._(TranslationsFr root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileFr._(TranslationsFr root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsFr _root; // ignore: unused_field
|
final TranslationsFr _root; // ignore: unused_field
|
||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
@override String get display_name => 'Nom d\'affichage';
|
@override String get display_name => 'Nom d\'affichage';
|
||||||
@override String get about => 'À propos';
|
@override String get about => 'A propos de';
|
||||||
@override String get nip05 => 'Adresse Nostr';
|
@override String get nip05 => 'Nostr Adresse';
|
||||||
@override String get lud16 => 'Adresse Lightning';
|
@override String get lud16 => 'Adresse de la foudre';
|
||||||
@override late final _TranslationsProfileEditErrorFr error = _TranslationsProfileEditErrorFr._(_root);
|
@override late final _TranslationsSettingsProfileErrorFr error = _TranslationsSettingsProfileErrorFr._(_root);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet
|
||||||
|
class _TranslationsSettingsWalletFr extends TranslationsSettingsWalletEn {
|
||||||
|
_TranslationsSettingsWalletFr._(TranslationsFr root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsFr _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get connect_wallet => 'Portefeuille connecté (NWC nwc://)';
|
||||||
|
@override String get disconnect_wallet => 'Déconnecter le portefeuille';
|
||||||
|
@override late final _TranslationsSettingsWalletErrorFr error = _TranslationsSettingsWalletErrorFr._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login.error
|
// Path: login.error
|
||||||
@ -319,9 +347,9 @@ class _TranslationsStreamChatRaidFr extends TranslationsStreamChatRaidEn {
|
|||||||
@override String countdown({required Object time}) => 'Raid sur ${time}';
|
@override String countdown({required Object time}) => 'Raid sur ${time}';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit.error
|
// Path: settings.profile.error
|
||||||
class _TranslationsProfileEditErrorFr extends TranslationsProfileEditErrorEn {
|
class _TranslationsSettingsProfileErrorFr extends TranslationsSettingsProfileErrorEn {
|
||||||
_TranslationsProfileEditErrorFr._(TranslationsFr root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileErrorFr._(TranslationsFr root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsFr _root; // ignore: unused_field
|
final TranslationsFr _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -329,6 +357,16 @@ class _TranslationsProfileEditErrorFr extends TranslationsProfileEditErrorEn {
|
|||||||
@override String get logged_out => 'Impossible de modifier le profil lorsque l\'on est déconnecté';
|
@override String get logged_out => 'Impossible de modifier le profil lorsque l\'on est déconnecté';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet.error
|
||||||
|
class _TranslationsSettingsWalletErrorFr extends TranslationsSettingsWalletErrorEn {
|
||||||
|
_TranslationsSettingsWalletErrorFr._(TranslationsFr root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsFr _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get logged_out => 'Impossible de se connecter au portefeuille lorsque l\'on est déconnecté';
|
||||||
|
}
|
||||||
|
|
||||||
/// Flat map(s) containing all translations.
|
/// Flat map(s) containing all translations.
|
||||||
/// Only for edge cases! For simple maps, use the map function of this library.
|
/// Only for edge cases! For simple maps, use the map function of this library.
|
||||||
extension on TranslationsFr {
|
extension on TranslationsFr {
|
||||||
@ -381,6 +419,8 @@ extension on TranslationsFr {
|
|||||||
case 'button.unmute': return 'Retirer sourdine';
|
case 'button.unmute': return 'Retirer sourdine';
|
||||||
case 'button.share': return 'Partager';
|
case 'button.share': return 'Partager';
|
||||||
case 'button.save': return 'Sauvegarder';
|
case 'button.save': return 'Sauvegarder';
|
||||||
|
case 'button.connect': return 'Connecter';
|
||||||
|
case 'button.settings': return 'Paramètres';
|
||||||
case 'embed.article_by': return ({required Object name}) => 'Article par ${name}';
|
case 'embed.article_by': return ({required Object name}) => 'Article par ${name}';
|
||||||
case 'embed.note_by': return ({required Object name}) => 'Note par ${name}';
|
case 'embed.note_by': return ({required Object name}) => 'Note par ${name}';
|
||||||
case 'embed.live_stream_by': return ({required Object name}) => 'Retransmission en direct sur ${name}';
|
case 'embed.live_stream_by': return ({required Object name}) => 'Retransmission en direct sur ${name}';
|
||||||
@ -395,16 +435,22 @@ extension on TranslationsFr {
|
|||||||
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zapper ${amount} sats';
|
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zapper ${amount} sats';
|
||||||
case 'zap.button_zap': return 'Zap';
|
case 'zap.button_zap': return 'Zap';
|
||||||
case 'zap.button_open_wallet': return 'Ouvrir dans le portefeuille';
|
case 'zap.button_open_wallet': return 'Ouvrir dans le portefeuille';
|
||||||
|
case 'zap.button_connect_wallet': return 'Connecter le portefeuille';
|
||||||
case 'zap.copy': return 'Copié dans le presse-papiers';
|
case 'zap.copy': return 'Copié dans le presse-papiers';
|
||||||
case 'zap.error.invalid_custom_amount': return 'Montant personnalisé non valide';
|
case 'zap.error.invalid_custom_amount': return 'Montant personnalisé non valide';
|
||||||
case 'zap.error.no_wallet': return 'Pas de porte-monnaie électronique installé';
|
case 'zap.error.no_wallet': return 'Pas de porte-monnaie électronique installé';
|
||||||
case 'zap.error.no_lud16': return 'Pas d\'adresse éclair trouvée';
|
case 'zap.error.no_lud16': return 'Pas d\'adresse éclair trouvée';
|
||||||
case 'profile.past_streams': return 'Streams passés';
|
case 'profile.past_streams': return 'Streams passés';
|
||||||
case 'profile.edit.display_name': return 'Nom d\'affichage';
|
case 'settings.button_profile': return 'Modifier le profil';
|
||||||
case 'profile.edit.about': return 'À propos';
|
case 'settings.button_wallet': return 'Paramètres du portefeuille';
|
||||||
case 'profile.edit.nip05': return 'Adresse Nostr';
|
case 'settings.profile.display_name': return 'Nom d\'affichage';
|
||||||
case 'profile.edit.lud16': return 'Adresse Lightning';
|
case 'settings.profile.about': return 'A propos de';
|
||||||
case 'profile.edit.error.logged_out': return 'Impossible de modifier le profil lorsque l\'on est déconnecté';
|
case 'settings.profile.nip05': return 'Nostr Adresse';
|
||||||
|
case 'settings.profile.lud16': return 'Adresse de la foudre';
|
||||||
|
case 'settings.profile.error.logged_out': return 'Impossible de modifier le profil lorsque l\'on est déconnecté';
|
||||||
|
case 'settings.wallet.connect_wallet': return 'Portefeuille connecté (NWC nwc://)';
|
||||||
|
case 'settings.wallet.disconnect_wallet': return 'Déconnecter le portefeuille';
|
||||||
|
case 'settings.wallet.error.logged_out': return 'Impossible de se connecter au portefeuille lorsque l\'on est déconnecté';
|
||||||
case 'login.username': return 'Nom d’utilisateur';
|
case 'login.username': return 'Nom d’utilisateur';
|
||||||
case 'login.amber': return 'Se connecter avec Amber';
|
case 'login.amber': return 'Se connecter avec Amber';
|
||||||
case 'login.key': return 'Connexion avec la clé';
|
case 'login.key': return 'Connexion avec la clé';
|
||||||
|
@ -67,6 +67,7 @@ class TranslationsHe extends Translations {
|
|||||||
|
|
||||||
@override late final _TranslationsZapHe zap = _TranslationsZapHe._(_root);
|
@override late final _TranslationsZapHe zap = _TranslationsZapHe._(_root);
|
||||||
@override late final _TranslationsProfileHe profile = _TranslationsProfileHe._(_root);
|
@override late final _TranslationsProfileHe profile = _TranslationsProfileHe._(_root);
|
||||||
|
@override late final _TranslationsSettingsHe settings = _TranslationsSettingsHe._(_root);
|
||||||
@override late final _TranslationsLoginHe login = _TranslationsLoginHe._(_root);
|
@override late final _TranslationsLoginHe login = _TranslationsLoginHe._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -118,6 +119,8 @@ class _TranslationsButtonHe extends TranslationsButtonEn {
|
|||||||
@override String get unmute => 'Unmute';
|
@override String get unmute => 'Unmute';
|
||||||
@override String get share => 'Share';
|
@override String get share => 'Share';
|
||||||
@override String get save => 'Save';
|
@override String get save => 'Save';
|
||||||
|
@override String get connect => 'Connect';
|
||||||
|
@override String get settings => 'Settings';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: embed
|
// Path: embed
|
||||||
@ -159,6 +162,7 @@ class _TranslationsZapHe extends TranslationsZapEn {
|
|||||||
@override String button_zap_ready({required Object amount}) => 'Zap ${amount} sats';
|
@override String button_zap_ready({required Object amount}) => 'Zap ${amount} sats';
|
||||||
@override String get button_zap => 'Zap';
|
@override String get button_zap => 'Zap';
|
||||||
@override String get button_open_wallet => 'Open in Wallet';
|
@override String get button_open_wallet => 'Open in Wallet';
|
||||||
|
@override String get button_connect_wallet => 'Connect Wallet';
|
||||||
@override String get copy => 'Copied to clipboard';
|
@override String get copy => 'Copied to clipboard';
|
||||||
@override late final _TranslationsZapErrorHe error = _TranslationsZapErrorHe._(_root);
|
@override late final _TranslationsZapErrorHe error = _TranslationsZapErrorHe._(_root);
|
||||||
}
|
}
|
||||||
@ -171,7 +175,19 @@ class _TranslationsProfileHe extends TranslationsProfileEn {
|
|||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
@override String get past_streams => 'Past Streams';
|
@override String get past_streams => 'Past Streams';
|
||||||
@override late final _TranslationsProfileEditHe edit = _TranslationsProfileEditHe._(_root);
|
}
|
||||||
|
|
||||||
|
// Path: settings
|
||||||
|
class _TranslationsSettingsHe extends TranslationsSettingsEn {
|
||||||
|
_TranslationsSettingsHe._(TranslationsHe root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsHe _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get button_profile => 'Edit Profile';
|
||||||
|
@override String get button_wallet => 'Wallet Settings';
|
||||||
|
@override late final _TranslationsSettingsProfileHe profile = _TranslationsSettingsProfileHe._(_root);
|
||||||
|
@override late final _TranslationsSettingsWalletHe wallet = _TranslationsSettingsWalletHe._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login
|
// Path: login
|
||||||
@ -247,9 +263,9 @@ class _TranslationsZapErrorHe extends TranslationsZapErrorEn {
|
|||||||
@override String get no_lud16 => 'No lightning address found';
|
@override String get no_lud16 => 'No lightning address found';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit
|
// Path: settings.profile
|
||||||
class _TranslationsProfileEditHe extends TranslationsProfileEditEn {
|
class _TranslationsSettingsProfileHe extends TranslationsSettingsProfileEn {
|
||||||
_TranslationsProfileEditHe._(TranslationsHe root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileHe._(TranslationsHe root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsHe _root; // ignore: unused_field
|
final TranslationsHe _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -258,7 +274,19 @@ class _TranslationsProfileEditHe extends TranslationsProfileEditEn {
|
|||||||
@override String get about => 'About';
|
@override String get about => 'About';
|
||||||
@override String get nip05 => 'Nostr Address';
|
@override String get nip05 => 'Nostr Address';
|
||||||
@override String get lud16 => 'Lightning Address';
|
@override String get lud16 => 'Lightning Address';
|
||||||
@override late final _TranslationsProfileEditErrorHe error = _TranslationsProfileEditErrorHe._(_root);
|
@override late final _TranslationsSettingsProfileErrorHe error = _TranslationsSettingsProfileErrorHe._(_root);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet
|
||||||
|
class _TranslationsSettingsWalletHe extends TranslationsSettingsWalletEn {
|
||||||
|
_TranslationsSettingsWalletHe._(TranslationsHe root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsHe _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get connect_wallet => 'Connect Wallet (NWC nwc://)';
|
||||||
|
@override String get disconnect_wallet => 'Disconnect Wallet';
|
||||||
|
@override late final _TranslationsSettingsWalletErrorHe error = _TranslationsSettingsWalletErrorHe._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login.error
|
// Path: login.error
|
||||||
@ -319,9 +347,9 @@ class _TranslationsStreamChatRaidHe extends TranslationsStreamChatRaidEn {
|
|||||||
@override String countdown({required Object time}) => 'Raiding in ${time}';
|
@override String countdown({required Object time}) => 'Raiding in ${time}';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit.error
|
// Path: settings.profile.error
|
||||||
class _TranslationsProfileEditErrorHe extends TranslationsProfileEditErrorEn {
|
class _TranslationsSettingsProfileErrorHe extends TranslationsSettingsProfileErrorEn {
|
||||||
_TranslationsProfileEditErrorHe._(TranslationsHe root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileErrorHe._(TranslationsHe root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsHe _root; // ignore: unused_field
|
final TranslationsHe _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -329,6 +357,16 @@ class _TranslationsProfileEditErrorHe extends TranslationsProfileEditErrorEn {
|
|||||||
@override String get logged_out => 'Cant edit profile when logged out';
|
@override String get logged_out => 'Cant edit profile when logged out';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet.error
|
||||||
|
class _TranslationsSettingsWalletErrorHe extends TranslationsSettingsWalletErrorEn {
|
||||||
|
_TranslationsSettingsWalletErrorHe._(TranslationsHe root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsHe _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get logged_out => 'Cant connect wallet when logged out';
|
||||||
|
}
|
||||||
|
|
||||||
/// Flat map(s) containing all translations.
|
/// Flat map(s) containing all translations.
|
||||||
/// Only for edge cases! For simple maps, use the map function of this library.
|
/// Only for edge cases! For simple maps, use the map function of this library.
|
||||||
extension on TranslationsHe {
|
extension on TranslationsHe {
|
||||||
@ -381,6 +419,8 @@ extension on TranslationsHe {
|
|||||||
case 'button.unmute': return 'Unmute';
|
case 'button.unmute': return 'Unmute';
|
||||||
case 'button.share': return 'Share';
|
case 'button.share': return 'Share';
|
||||||
case 'button.save': return 'Save';
|
case 'button.save': return 'Save';
|
||||||
|
case 'button.connect': return 'Connect';
|
||||||
|
case 'button.settings': return 'Settings';
|
||||||
case 'embed.article_by': return ({required Object name}) => 'Article by ${name}';
|
case 'embed.article_by': return ({required Object name}) => 'Article by ${name}';
|
||||||
case 'embed.note_by': return ({required Object name}) => 'Note by ${name}';
|
case 'embed.note_by': return ({required Object name}) => 'Note by ${name}';
|
||||||
case 'embed.live_stream_by': return ({required Object name}) => 'Live stream by ${name}';
|
case 'embed.live_stream_by': return ({required Object name}) => 'Live stream by ${name}';
|
||||||
@ -395,16 +435,22 @@ extension on TranslationsHe {
|
|||||||
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zap ${amount} sats';
|
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zap ${amount} sats';
|
||||||
case 'zap.button_zap': return 'Zap';
|
case 'zap.button_zap': return 'Zap';
|
||||||
case 'zap.button_open_wallet': return 'Open in Wallet';
|
case 'zap.button_open_wallet': return 'Open in Wallet';
|
||||||
|
case 'zap.button_connect_wallet': return 'Connect Wallet';
|
||||||
case 'zap.copy': return 'Copied to clipboard';
|
case 'zap.copy': return 'Copied to clipboard';
|
||||||
case 'zap.error.invalid_custom_amount': return 'Invalid custom amount';
|
case 'zap.error.invalid_custom_amount': return 'Invalid custom amount';
|
||||||
case 'zap.error.no_wallet': return 'No lightning wallet installed';
|
case 'zap.error.no_wallet': return 'No lightning wallet installed';
|
||||||
case 'zap.error.no_lud16': return 'No lightning address found';
|
case 'zap.error.no_lud16': return 'No lightning address found';
|
||||||
case 'profile.past_streams': return 'Past Streams';
|
case 'profile.past_streams': return 'Past Streams';
|
||||||
case 'profile.edit.display_name': return 'Display Name';
|
case 'settings.button_profile': return 'Edit Profile';
|
||||||
case 'profile.edit.about': return 'About';
|
case 'settings.button_wallet': return 'Wallet Settings';
|
||||||
case 'profile.edit.nip05': return 'Nostr Address';
|
case 'settings.profile.display_name': return 'Display Name';
|
||||||
case 'profile.edit.lud16': return 'Lightning Address';
|
case 'settings.profile.about': return 'About';
|
||||||
case 'profile.edit.error.logged_out': return 'Cant edit profile when logged out';
|
case 'settings.profile.nip05': return 'Nostr Address';
|
||||||
|
case 'settings.profile.lud16': return 'Lightning Address';
|
||||||
|
case 'settings.profile.error.logged_out': return 'Cant edit profile when logged out';
|
||||||
|
case 'settings.wallet.connect_wallet': return 'Connect Wallet (NWC nwc://)';
|
||||||
|
case 'settings.wallet.disconnect_wallet': return 'Disconnect Wallet';
|
||||||
|
case 'settings.wallet.error.logged_out': return 'Cant connect wallet when logged out';
|
||||||
case 'login.username': return 'Username';
|
case 'login.username': return 'Username';
|
||||||
case 'login.amber': return 'Login with Amber';
|
case 'login.amber': return 'Login with Amber';
|
||||||
case 'login.key': return 'Login with Key';
|
case 'login.key': return 'Login with Key';
|
||||||
|
@ -67,6 +67,7 @@ class TranslationsHu extends Translations {
|
|||||||
|
|
||||||
@override late final _TranslationsZapHu zap = _TranslationsZapHu._(_root);
|
@override late final _TranslationsZapHu zap = _TranslationsZapHu._(_root);
|
||||||
@override late final _TranslationsProfileHu profile = _TranslationsProfileHu._(_root);
|
@override late final _TranslationsProfileHu profile = _TranslationsProfileHu._(_root);
|
||||||
|
@override late final _TranslationsSettingsHu settings = _TranslationsSettingsHu._(_root);
|
||||||
@override late final _TranslationsLoginHu login = _TranslationsLoginHu._(_root);
|
@override late final _TranslationsLoginHu login = _TranslationsLoginHu._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -118,6 +119,8 @@ class _TranslationsButtonHu extends TranslationsButtonEn {
|
|||||||
@override String get unmute => 'Némítás visszavonása';
|
@override String get unmute => 'Némítás visszavonása';
|
||||||
@override String get share => 'Megosztás';
|
@override String get share => 'Megosztás';
|
||||||
@override String get save => 'Mentés';
|
@override String get save => 'Mentés';
|
||||||
|
@override String get connect => 'Csatlakozás';
|
||||||
|
@override String get settings => 'Beállítások';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: embed
|
// Path: embed
|
||||||
@ -127,9 +130,9 @@ class _TranslationsEmbedHu extends TranslationsEmbedEn {
|
|||||||
final TranslationsHu _root; // ignore: unused_field
|
final TranslationsHu _root; // ignore: unused_field
|
||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
@override String article_by({required Object name}) => 'A ${name} cikke.';
|
@override String article_by({required Object name}) => 'Cikk ${name}';
|
||||||
@override String note_by({required Object name}) => '${name} bejegyzése';
|
@override String note_by({required Object name}) => '${name} bejegyzése';
|
||||||
@override String live_stream_by({required Object name}) => 'Élő közvetítés a ${name} oldalon';
|
@override String live_stream_by({required Object name}) => 'Élő közvetítés a ${name}oldalon';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: stream_list
|
// Path: stream_list
|
||||||
@ -159,6 +162,7 @@ class _TranslationsZapHu extends TranslationsZapEn {
|
|||||||
@override String button_zap_ready({required Object amount}) => 'Zap ${amount} satoshi';
|
@override String button_zap_ready({required Object amount}) => 'Zap ${amount} satoshi';
|
||||||
@override String get button_zap => 'Zap';
|
@override String get button_zap => 'Zap';
|
||||||
@override String get button_open_wallet => 'Megnyitás a pénztárcában';
|
@override String get button_open_wallet => 'Megnyitás a pénztárcában';
|
||||||
|
@override String get button_connect_wallet => 'Connect Wallet';
|
||||||
@override String get copy => 'Vágólapra másolva';
|
@override String get copy => 'Vágólapra másolva';
|
||||||
@override late final _TranslationsZapErrorHu error = _TranslationsZapErrorHu._(_root);
|
@override late final _TranslationsZapErrorHu error = _TranslationsZapErrorHu._(_root);
|
||||||
}
|
}
|
||||||
@ -171,7 +175,19 @@ class _TranslationsProfileHu extends TranslationsProfileEn {
|
|||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
@override String get past_streams => 'Múltbeli Streamek';
|
@override String get past_streams => 'Múltbeli Streamek';
|
||||||
@override late final _TranslationsProfileEditHu edit = _TranslationsProfileEditHu._(_root);
|
}
|
||||||
|
|
||||||
|
// Path: settings
|
||||||
|
class _TranslationsSettingsHu extends TranslationsSettingsEn {
|
||||||
|
_TranslationsSettingsHu._(TranslationsHu root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsHu _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get button_profile => 'Profil szerkesztése';
|
||||||
|
@override String get button_wallet => 'Pénztárca beállítások';
|
||||||
|
@override late final _TranslationsSettingsProfileHu profile = _TranslationsSettingsProfileHu._(_root);
|
||||||
|
@override late final _TranslationsSettingsWalletHu wallet = _TranslationsSettingsWalletHu._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login
|
// Path: login
|
||||||
@ -217,7 +233,7 @@ class _TranslationsStreamChatHu extends TranslationsStreamChatEn {
|
|||||||
user,
|
user,
|
||||||
const TextSpan(text: ' a '),
|
const TextSpan(text: ' a '),
|
||||||
time,
|
time,
|
||||||
const TextSpan(text: ' számára'),
|
const TextSpan(text: 'számára'),
|
||||||
]);
|
]);
|
||||||
|
|
||||||
/// A stream véget ért lábléc a chat alján
|
/// A stream véget ért lábléc a chat alján
|
||||||
@ -248,18 +264,30 @@ class _TranslationsZapErrorHu extends TranslationsZapErrorEn {
|
|||||||
@override String get no_lud16 => 'Nem talált villámcím';
|
@override String get no_lud16 => 'Nem talált villámcím';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit
|
// Path: settings.profile
|
||||||
class _TranslationsProfileEditHu extends TranslationsProfileEditEn {
|
class _TranslationsSettingsProfileHu extends TranslationsSettingsProfileEn {
|
||||||
_TranslationsProfileEditHu._(TranslationsHu root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileHu._(TranslationsHu root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsHu _root; // ignore: unused_field
|
final TranslationsHu _root; // ignore: unused_field
|
||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
@override String get display_name => 'Megjelenített név';
|
@override String get display_name => 'Megjelenített név';
|
||||||
@override String get about => 'Névjegy';
|
@override String get about => 'A oldalról';
|
||||||
@override String get nip05 => 'Nostr-cím';
|
@override String get nip05 => 'Nostr cím';
|
||||||
@override String get lud16 => 'Lightning-cím';
|
@override String get lud16 => 'Villám cím';
|
||||||
@override late final _TranslationsProfileEditErrorHu error = _TranslationsProfileEditErrorHu._(_root);
|
@override late final _TranslationsSettingsProfileErrorHu error = _TranslationsSettingsProfileErrorHu._(_root);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet
|
||||||
|
class _TranslationsSettingsWalletHu extends TranslationsSettingsWalletEn {
|
||||||
|
_TranslationsSettingsWalletHu._(TranslationsHu root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsHu _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get connect_wallet => 'Connect Wallet (NWC nwc://)';
|
||||||
|
@override String get disconnect_wallet => 'Pénztárca lekapcsolása';
|
||||||
|
@override late final _TranslationsSettingsWalletErrorHu error = _TranslationsSettingsWalletErrorHu._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login.error
|
// Path: login.error
|
||||||
@ -320,9 +348,9 @@ class _TranslationsStreamChatRaidHu extends TranslationsStreamChatRaidEn {
|
|||||||
@override String countdown({required Object time}) => 'Raiding a ${time} oldalon';
|
@override String countdown({required Object time}) => 'Raiding a ${time} oldalon';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit.error
|
// Path: settings.profile.error
|
||||||
class _TranslationsProfileEditErrorHu extends TranslationsProfileEditErrorEn {
|
class _TranslationsSettingsProfileErrorHu extends TranslationsSettingsProfileErrorEn {
|
||||||
_TranslationsProfileEditErrorHu._(TranslationsHu root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileErrorHu._(TranslationsHu root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsHu _root; // ignore: unused_field
|
final TranslationsHu _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -330,6 +358,16 @@ class _TranslationsProfileEditErrorHu extends TranslationsProfileEditErrorEn {
|
|||||||
@override String get logged_out => 'Kijelentkezve nem lehet profilt szerkeszteni';
|
@override String get logged_out => 'Kijelentkezve nem lehet profilt szerkeszteni';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet.error
|
||||||
|
class _TranslationsSettingsWalletErrorHu extends TranslationsSettingsWalletErrorEn {
|
||||||
|
_TranslationsSettingsWalletErrorHu._(TranslationsHu root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsHu _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get logged_out => 'Kijelentkezve nem lehet csatlakozni a pénztárcához';
|
||||||
|
}
|
||||||
|
|
||||||
/// Flat map(s) containing all translations.
|
/// Flat map(s) containing all translations.
|
||||||
/// Only for edge cases! For simple maps, use the map function of this library.
|
/// Only for edge cases! For simple maps, use the map function of this library.
|
||||||
extension on TranslationsHu {
|
extension on TranslationsHu {
|
||||||
@ -355,7 +393,7 @@ extension on TranslationsHu {
|
|||||||
user,
|
user,
|
||||||
const TextSpan(text: ' a '),
|
const TextSpan(text: ' a '),
|
||||||
time,
|
time,
|
||||||
const TextSpan(text: ' számára'),
|
const TextSpan(text: 'számára'),
|
||||||
]);
|
]);
|
||||||
case 'stream.chat.ended': return 'STREAM MEGSZÜNTETETT';
|
case 'stream.chat.ended': return 'STREAM MEGSZÜNTETETT';
|
||||||
case 'stream.chat.zap': return ({required InlineSpan user, required InlineSpan amount}) => TextSpan(children: [
|
case 'stream.chat.zap': return ({required InlineSpan user, required InlineSpan amount}) => TextSpan(children: [
|
||||||
@ -383,9 +421,11 @@ extension on TranslationsHu {
|
|||||||
case 'button.unmute': return 'Némítás visszavonása';
|
case 'button.unmute': return 'Némítás visszavonása';
|
||||||
case 'button.share': return 'Megosztás';
|
case 'button.share': return 'Megosztás';
|
||||||
case 'button.save': return 'Mentés';
|
case 'button.save': return 'Mentés';
|
||||||
case 'embed.article_by': return ({required Object name}) => 'A ${name} cikke.';
|
case 'button.connect': return 'Csatlakozás';
|
||||||
|
case 'button.settings': return 'Beállítások';
|
||||||
|
case 'embed.article_by': return ({required Object name}) => 'Cikk ${name}';
|
||||||
case 'embed.note_by': return ({required Object name}) => '${name} bejegyzése';
|
case 'embed.note_by': return ({required Object name}) => '${name} bejegyzése';
|
||||||
case 'embed.live_stream_by': return ({required Object name}) => 'Élő közvetítés a ${name} oldalon';
|
case 'embed.live_stream_by': return ({required Object name}) => 'Élő közvetítés a ${name}oldalon';
|
||||||
case 'stream_list.following': return 'Követettek bejegyzései';
|
case 'stream_list.following': return 'Követettek bejegyzései';
|
||||||
case 'stream_list.live': return 'Élő';
|
case 'stream_list.live': return 'Élő';
|
||||||
case 'stream_list.planned': return 'Tervezett';
|
case 'stream_list.planned': return 'Tervezett';
|
||||||
@ -397,16 +437,22 @@ extension on TranslationsHu {
|
|||||||
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zap ${amount} satoshi';
|
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zap ${amount} satoshi';
|
||||||
case 'zap.button_zap': return 'Zap';
|
case 'zap.button_zap': return 'Zap';
|
||||||
case 'zap.button_open_wallet': return 'Megnyitás a pénztárcában';
|
case 'zap.button_open_wallet': return 'Megnyitás a pénztárcában';
|
||||||
|
case 'zap.button_connect_wallet': return 'Connect Wallet';
|
||||||
case 'zap.copy': return 'Vágólapra másolva';
|
case 'zap.copy': return 'Vágólapra másolva';
|
||||||
case 'zap.error.invalid_custom_amount': return 'Érvénytelen egyéni összeg';
|
case 'zap.error.invalid_custom_amount': return 'Érvénytelen egyéni összeg';
|
||||||
case 'zap.error.no_wallet': return 'Nincs telepített villám tárca';
|
case 'zap.error.no_wallet': return 'Nincs telepített villám tárca';
|
||||||
case 'zap.error.no_lud16': return 'Nem talált villámcím';
|
case 'zap.error.no_lud16': return 'Nem talált villámcím';
|
||||||
case 'profile.past_streams': return 'Múltbeli Streamek';
|
case 'profile.past_streams': return 'Múltbeli Streamek';
|
||||||
case 'profile.edit.display_name': return 'Megjelenített név';
|
case 'settings.button_profile': return 'Profil szerkesztése';
|
||||||
case 'profile.edit.about': return 'Névjegy';
|
case 'settings.button_wallet': return 'Pénztárca beállítások';
|
||||||
case 'profile.edit.nip05': return 'Nostr-cím';
|
case 'settings.profile.display_name': return 'Megjelenített név';
|
||||||
case 'profile.edit.lud16': return 'Lightning-cím';
|
case 'settings.profile.about': return 'A oldalról';
|
||||||
case 'profile.edit.error.logged_out': return 'Kijelentkezve nem lehet profilt szerkeszteni';
|
case 'settings.profile.nip05': return 'Nostr cím';
|
||||||
|
case 'settings.profile.lud16': return 'Villám cím';
|
||||||
|
case 'settings.profile.error.logged_out': return 'Kijelentkezve nem lehet profilt szerkeszteni';
|
||||||
|
case 'settings.wallet.connect_wallet': return 'Connect Wallet (NWC nwc://)';
|
||||||
|
case 'settings.wallet.disconnect_wallet': return 'Pénztárca lekapcsolása';
|
||||||
|
case 'settings.wallet.error.logged_out': return 'Kijelentkezve nem lehet csatlakozni a pénztárcához';
|
||||||
case 'login.username': return 'Felhasználónév';
|
case 'login.username': return 'Felhasználónév';
|
||||||
case 'login.amber': return 'Bejelentkezés Amber segítségével';
|
case 'login.amber': return 'Bejelentkezés Amber segítségével';
|
||||||
case 'login.key': return 'Bejelentkezés kulccsal';
|
case 'login.key': return 'Bejelentkezés kulccsal';
|
||||||
|
@ -67,6 +67,7 @@ class TranslationsIt extends Translations {
|
|||||||
|
|
||||||
@override late final _TranslationsZapIt zap = _TranslationsZapIt._(_root);
|
@override late final _TranslationsZapIt zap = _TranslationsZapIt._(_root);
|
||||||
@override late final _TranslationsProfileIt profile = _TranslationsProfileIt._(_root);
|
@override late final _TranslationsProfileIt profile = _TranslationsProfileIt._(_root);
|
||||||
|
@override late final _TranslationsSettingsIt settings = _TranslationsSettingsIt._(_root);
|
||||||
@override late final _TranslationsLoginIt login = _TranslationsLoginIt._(_root);
|
@override late final _TranslationsLoginIt login = _TranslationsLoginIt._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -118,6 +119,8 @@ class _TranslationsButtonIt extends TranslationsButtonEn {
|
|||||||
@override String get unmute => 'Riattiva';
|
@override String get unmute => 'Riattiva';
|
||||||
@override String get share => 'Condividi';
|
@override String get share => 'Condividi';
|
||||||
@override String get save => 'Salva';
|
@override String get save => 'Salva';
|
||||||
|
@override String get connect => 'Collegare';
|
||||||
|
@override String get settings => 'Impostazioni';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: embed
|
// Path: embed
|
||||||
@ -159,6 +162,7 @@ class _TranslationsZapIt extends TranslationsZapEn {
|
|||||||
@override String button_zap_ready({required Object amount}) => 'Zap ${amount} sats';
|
@override String button_zap_ready({required Object amount}) => 'Zap ${amount} sats';
|
||||||
@override String get button_zap => 'Zap';
|
@override String get button_zap => 'Zap';
|
||||||
@override String get button_open_wallet => 'Aprire nel portafoglio';
|
@override String get button_open_wallet => 'Aprire nel portafoglio';
|
||||||
|
@override String get button_connect_wallet => 'Portafoglio Connect';
|
||||||
@override String get copy => 'Copiato negli appunti';
|
@override String get copy => 'Copiato negli appunti';
|
||||||
@override late final _TranslationsZapErrorIt error = _TranslationsZapErrorIt._(_root);
|
@override late final _TranslationsZapErrorIt error = _TranslationsZapErrorIt._(_root);
|
||||||
}
|
}
|
||||||
@ -171,7 +175,19 @@ class _TranslationsProfileIt extends TranslationsProfileEn {
|
|||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
@override String get past_streams => 'Flussi passati';
|
@override String get past_streams => 'Flussi passati';
|
||||||
@override late final _TranslationsProfileEditIt edit = _TranslationsProfileEditIt._(_root);
|
}
|
||||||
|
|
||||||
|
// Path: settings
|
||||||
|
class _TranslationsSettingsIt extends TranslationsSettingsEn {
|
||||||
|
_TranslationsSettingsIt._(TranslationsIt root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsIt _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get button_profile => 'Modifica profilo';
|
||||||
|
@override String get button_wallet => 'Impostazioni del portafoglio';
|
||||||
|
@override late final _TranslationsSettingsProfileIt profile = _TranslationsSettingsProfileIt._(_root);
|
||||||
|
@override late final _TranslationsSettingsWalletIt wallet = _TranslationsSettingsWalletIt._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login
|
// Path: login
|
||||||
@ -247,18 +263,30 @@ class _TranslationsZapErrorIt extends TranslationsZapErrorEn {
|
|||||||
@override String get no_lud16 => 'Nessun indirizzo di fulmine trovato';
|
@override String get no_lud16 => 'Nessun indirizzo di fulmine trovato';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit
|
// Path: settings.profile
|
||||||
class _TranslationsProfileEditIt extends TranslationsProfileEditEn {
|
class _TranslationsSettingsProfileIt extends TranslationsSettingsProfileEn {
|
||||||
_TranslationsProfileEditIt._(TranslationsIt root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileIt._(TranslationsIt root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsIt _root; // ignore: unused_field
|
final TranslationsIt _root; // ignore: unused_field
|
||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
@override String get display_name => 'Nome visualizzato';
|
@override String get display_name => 'Nome visualizzato';
|
||||||
@override String get about => 'Info';
|
@override String get about => 'Circa';
|
||||||
@override String get nip05 => 'Indirizzo Nostr';
|
@override String get nip05 => 'Indirizzo';
|
||||||
@override String get lud16 => 'Indirizzo del fulmine';
|
@override String get lud16 => 'Indirizzo del fulmine';
|
||||||
@override late final _TranslationsProfileEditErrorIt error = _TranslationsProfileEditErrorIt._(_root);
|
@override late final _TranslationsSettingsProfileErrorIt error = _TranslationsSettingsProfileErrorIt._(_root);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet
|
||||||
|
class _TranslationsSettingsWalletIt extends TranslationsSettingsWalletEn {
|
||||||
|
_TranslationsSettingsWalletIt._(TranslationsIt root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsIt _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get connect_wallet => 'Portafoglio Connect (NWC nwc://)';
|
||||||
|
@override String get disconnect_wallet => 'Disconnettere il portafoglio';
|
||||||
|
@override late final _TranslationsSettingsWalletErrorIt error = _TranslationsSettingsWalletErrorIt._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login.error
|
// Path: login.error
|
||||||
@ -319,9 +347,9 @@ class _TranslationsStreamChatRaidIt extends TranslationsStreamChatRaidEn {
|
|||||||
@override String countdown({required Object time}) => 'Raid in ${time}';
|
@override String countdown({required Object time}) => 'Raid in ${time}';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit.error
|
// Path: settings.profile.error
|
||||||
class _TranslationsProfileEditErrorIt extends TranslationsProfileEditErrorEn {
|
class _TranslationsSettingsProfileErrorIt extends TranslationsSettingsProfileErrorEn {
|
||||||
_TranslationsProfileEditErrorIt._(TranslationsIt root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileErrorIt._(TranslationsIt root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsIt _root; // ignore: unused_field
|
final TranslationsIt _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -329,6 +357,16 @@ class _TranslationsProfileEditErrorIt extends TranslationsProfileEditErrorEn {
|
|||||||
@override String get logged_out => 'Impossibile modificare il profilo quando si è disconnessi';
|
@override String get logged_out => 'Impossibile modificare il profilo quando si è disconnessi';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet.error
|
||||||
|
class _TranslationsSettingsWalletErrorIt extends TranslationsSettingsWalletErrorEn {
|
||||||
|
_TranslationsSettingsWalletErrorIt._(TranslationsIt root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsIt _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get logged_out => 'Impossibile connettere il portafoglio quando si è disconnessi';
|
||||||
|
}
|
||||||
|
|
||||||
/// Flat map(s) containing all translations.
|
/// Flat map(s) containing all translations.
|
||||||
/// Only for edge cases! For simple maps, use the map function of this library.
|
/// Only for edge cases! For simple maps, use the map function of this library.
|
||||||
extension on TranslationsIt {
|
extension on TranslationsIt {
|
||||||
@ -381,6 +419,8 @@ extension on TranslationsIt {
|
|||||||
case 'button.unmute': return 'Riattiva';
|
case 'button.unmute': return 'Riattiva';
|
||||||
case 'button.share': return 'Condividi';
|
case 'button.share': return 'Condividi';
|
||||||
case 'button.save': return 'Salva';
|
case 'button.save': return 'Salva';
|
||||||
|
case 'button.connect': return 'Collegare';
|
||||||
|
case 'button.settings': return 'Impostazioni';
|
||||||
case 'embed.article_by': return ({required Object name}) => 'Articolo di ${name}';
|
case 'embed.article_by': return ({required Object name}) => 'Articolo di ${name}';
|
||||||
case 'embed.note_by': return ({required Object name}) => 'Nota di ${name}';
|
case 'embed.note_by': return ({required Object name}) => 'Nota di ${name}';
|
||||||
case 'embed.live_stream_by': return ({required Object name}) => 'Streaming in diretta da ${name}';
|
case 'embed.live_stream_by': return ({required Object name}) => 'Streaming in diretta da ${name}';
|
||||||
@ -395,16 +435,22 @@ extension on TranslationsIt {
|
|||||||
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zap ${amount} sats';
|
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zap ${amount} sats';
|
||||||
case 'zap.button_zap': return 'Zap';
|
case 'zap.button_zap': return 'Zap';
|
||||||
case 'zap.button_open_wallet': return 'Aprire nel portafoglio';
|
case 'zap.button_open_wallet': return 'Aprire nel portafoglio';
|
||||||
|
case 'zap.button_connect_wallet': return 'Portafoglio Connect';
|
||||||
case 'zap.copy': return 'Copiato negli appunti';
|
case 'zap.copy': return 'Copiato negli appunti';
|
||||||
case 'zap.error.invalid_custom_amount': return 'Importo personalizzato non valido';
|
case 'zap.error.invalid_custom_amount': return 'Importo personalizzato non valido';
|
||||||
case 'zap.error.no_wallet': return 'Nessun portafoglio Lightning installato';
|
case 'zap.error.no_wallet': return 'Nessun portafoglio Lightning installato';
|
||||||
case 'zap.error.no_lud16': return 'Nessun indirizzo di fulmine trovato';
|
case 'zap.error.no_lud16': return 'Nessun indirizzo di fulmine trovato';
|
||||||
case 'profile.past_streams': return 'Flussi passati';
|
case 'profile.past_streams': return 'Flussi passati';
|
||||||
case 'profile.edit.display_name': return 'Nome visualizzato';
|
case 'settings.button_profile': return 'Modifica profilo';
|
||||||
case 'profile.edit.about': return 'Info';
|
case 'settings.button_wallet': return 'Impostazioni del portafoglio';
|
||||||
case 'profile.edit.nip05': return 'Indirizzo Nostr';
|
case 'settings.profile.display_name': return 'Nome visualizzato';
|
||||||
case 'profile.edit.lud16': return 'Indirizzo del fulmine';
|
case 'settings.profile.about': return 'Circa';
|
||||||
case 'profile.edit.error.logged_out': return 'Impossibile modificare il profilo quando si è disconnessi';
|
case 'settings.profile.nip05': return 'Indirizzo';
|
||||||
|
case 'settings.profile.lud16': return 'Indirizzo del fulmine';
|
||||||
|
case 'settings.profile.error.logged_out': return 'Impossibile modificare il profilo quando si è disconnessi';
|
||||||
|
case 'settings.wallet.connect_wallet': return 'Portafoglio Connect (NWC nwc://)';
|
||||||
|
case 'settings.wallet.disconnect_wallet': return 'Disconnettere il portafoglio';
|
||||||
|
case 'settings.wallet.error.logged_out': return 'Impossibile connettere il portafoglio quando si è disconnessi';
|
||||||
case 'login.username': return 'Nome utente';
|
case 'login.username': return 'Nome utente';
|
||||||
case 'login.amber': return 'Accesso con Amber';
|
case 'login.amber': return 'Accesso con Amber';
|
||||||
case 'login.key': return 'Accesso con chiave';
|
case 'login.key': return 'Accesso con chiave';
|
||||||
|
@ -67,6 +67,7 @@ class TranslationsJa extends Translations {
|
|||||||
|
|
||||||
@override late final _TranslationsZapJa zap = _TranslationsZapJa._(_root);
|
@override late final _TranslationsZapJa zap = _TranslationsZapJa._(_root);
|
||||||
@override late final _TranslationsProfileJa profile = _TranslationsProfileJa._(_root);
|
@override late final _TranslationsProfileJa profile = _TranslationsProfileJa._(_root);
|
||||||
|
@override late final _TranslationsSettingsJa settings = _TranslationsSettingsJa._(_root);
|
||||||
@override late final _TranslationsLoginJa login = _TranslationsLoginJa._(_root);
|
@override late final _TranslationsLoginJa login = _TranslationsLoginJa._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -118,6 +119,8 @@ class _TranslationsButtonJa extends TranslationsButtonEn {
|
|||||||
@override String get unmute => 'ミュート解除';
|
@override String get unmute => 'ミュート解除';
|
||||||
@override String get share => '共有';
|
@override String get share => '共有';
|
||||||
@override String get save => '保存';
|
@override String get save => '保存';
|
||||||
|
@override String get connect => '接続';
|
||||||
|
@override String get settings => '設定';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: embed
|
// Path: embed
|
||||||
@ -159,6 +162,7 @@ class _TranslationsZapJa extends TranslationsZapEn {
|
|||||||
@override String button_zap_ready({required Object amount}) => '${amount} satsをザップする';
|
@override String button_zap_ready({required Object amount}) => '${amount} satsをザップする';
|
||||||
@override String get button_zap => 'ザップ';
|
@override String get button_zap => 'ザップ';
|
||||||
@override String get button_open_wallet => 'ウォレットで開く';
|
@override String get button_open_wallet => 'ウォレットで開く';
|
||||||
|
@override String get button_connect_wallet => 'コネクトウォレット';
|
||||||
@override String get copy => 'クリップボードにコピー';
|
@override String get copy => 'クリップボードにコピー';
|
||||||
@override late final _TranslationsZapErrorJa error = _TranslationsZapErrorJa._(_root);
|
@override late final _TranslationsZapErrorJa error = _TranslationsZapErrorJa._(_root);
|
||||||
}
|
}
|
||||||
@ -171,7 +175,19 @@ class _TranslationsProfileJa extends TranslationsProfileEn {
|
|||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
@override String get past_streams => '過去の配信';
|
@override String get past_streams => '過去の配信';
|
||||||
@override late final _TranslationsProfileEditJa edit = _TranslationsProfileEditJa._(_root);
|
}
|
||||||
|
|
||||||
|
// Path: settings
|
||||||
|
class _TranslationsSettingsJa extends TranslationsSettingsEn {
|
||||||
|
_TranslationsSettingsJa._(TranslationsJa root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsJa _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get button_profile => 'プロフィール編集';
|
||||||
|
@override String get button_wallet => 'ウォレットの設定';
|
||||||
|
@override late final _TranslationsSettingsProfileJa profile = _TranslationsSettingsProfileJa._(_root);
|
||||||
|
@override late final _TranslationsSettingsWalletJa wallet = _TranslationsSettingsWalletJa._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login
|
// Path: login
|
||||||
@ -247,18 +263,30 @@ class _TranslationsZapErrorJa extends TranslationsZapErrorEn {
|
|||||||
@override String get no_lud16 => '雷アドレスが見つかりません';
|
@override String get no_lud16 => '雷アドレスが見つかりません';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit
|
// Path: settings.profile
|
||||||
class _TranslationsProfileEditJa extends TranslationsProfileEditEn {
|
class _TranslationsSettingsProfileJa extends TranslationsSettingsProfileEn {
|
||||||
_TranslationsProfileEditJa._(TranslationsJa root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileJa._(TranslationsJa root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsJa _root; // ignore: unused_field
|
final TranslationsJa _root; // ignore: unused_field
|
||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
@override String get display_name => '表示名';
|
@override String get display_name => '表示名';
|
||||||
@override String get about => '自己紹介';
|
@override String get about => 'について';
|
||||||
@override String get nip05 => 'Nostrアドレス';
|
@override String get nip05 => '住所';
|
||||||
@override String get lud16 => 'ライトニングアドレス';
|
@override String get lud16 => 'ライトニングアドレス';
|
||||||
@override late final _TranslationsProfileEditErrorJa error = _TranslationsProfileEditErrorJa._(_root);
|
@override late final _TranslationsSettingsProfileErrorJa error = _TranslationsSettingsProfileErrorJa._(_root);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet
|
||||||
|
class _TranslationsSettingsWalletJa extends TranslationsSettingsWalletEn {
|
||||||
|
_TranslationsSettingsWalletJa._(TranslationsJa root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsJa _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get connect_wallet => 'コネクトウォレット (NWC nwc://)';
|
||||||
|
@override String get disconnect_wallet => 'ウォレットの切断';
|
||||||
|
@override late final _TranslationsSettingsWalletErrorJa error = _TranslationsSettingsWalletErrorJa._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login.error
|
// Path: login.error
|
||||||
@ -319,9 +347,9 @@ class _TranslationsStreamChatRaidJa extends TranslationsStreamChatRaidEn {
|
|||||||
@override String countdown({required Object time}) => '${time}における襲撃';
|
@override String countdown({required Object time}) => '${time}における襲撃';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit.error
|
// Path: settings.profile.error
|
||||||
class _TranslationsProfileEditErrorJa extends TranslationsProfileEditErrorEn {
|
class _TranslationsSettingsProfileErrorJa extends TranslationsSettingsProfileErrorEn {
|
||||||
_TranslationsProfileEditErrorJa._(TranslationsJa root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileErrorJa._(TranslationsJa root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsJa _root; // ignore: unused_field
|
final TranslationsJa _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -329,6 +357,16 @@ class _TranslationsProfileEditErrorJa extends TranslationsProfileEditErrorEn {
|
|||||||
@override String get logged_out => 'ログアウトするとプロフィールが編集できない';
|
@override String get logged_out => 'ログアウトするとプロフィールが編集できない';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet.error
|
||||||
|
class _TranslationsSettingsWalletErrorJa extends TranslationsSettingsWalletErrorEn {
|
||||||
|
_TranslationsSettingsWalletErrorJa._(TranslationsJa root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsJa _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get logged_out => 'ログアウト時にウォレットに接続できない';
|
||||||
|
}
|
||||||
|
|
||||||
/// Flat map(s) containing all translations.
|
/// Flat map(s) containing all translations.
|
||||||
/// Only for edge cases! For simple maps, use the map function of this library.
|
/// Only for edge cases! For simple maps, use the map function of this library.
|
||||||
extension on TranslationsJa {
|
extension on TranslationsJa {
|
||||||
@ -381,6 +419,8 @@ extension on TranslationsJa {
|
|||||||
case 'button.unmute': return 'ミュート解除';
|
case 'button.unmute': return 'ミュート解除';
|
||||||
case 'button.share': return '共有';
|
case 'button.share': return '共有';
|
||||||
case 'button.save': return '保存';
|
case 'button.save': return '保存';
|
||||||
|
case 'button.connect': return '接続';
|
||||||
|
case 'button.settings': return '設定';
|
||||||
case 'embed.article_by': return ({required Object name}) => '記事: ${name}';
|
case 'embed.article_by': return ({required Object name}) => '記事: ${name}';
|
||||||
case 'embed.note_by': return ({required Object name}) => '${name} の投稿';
|
case 'embed.note_by': return ({required Object name}) => '${name} の投稿';
|
||||||
case 'embed.live_stream_by': return ({required Object name}) => 'ライブ・ストリーム ${name}';
|
case 'embed.live_stream_by': return ({required Object name}) => 'ライブ・ストリーム ${name}';
|
||||||
@ -395,16 +435,22 @@ extension on TranslationsJa {
|
|||||||
case 'zap.button_zap_ready': return ({required Object amount}) => '${amount} satsをザップする';
|
case 'zap.button_zap_ready': return ({required Object amount}) => '${amount} satsをザップする';
|
||||||
case 'zap.button_zap': return 'ザップ';
|
case 'zap.button_zap': return 'ザップ';
|
||||||
case 'zap.button_open_wallet': return 'ウォレットで開く';
|
case 'zap.button_open_wallet': return 'ウォレットで開く';
|
||||||
|
case 'zap.button_connect_wallet': return 'コネクトウォレット';
|
||||||
case 'zap.copy': return 'クリップボードにコピー';
|
case 'zap.copy': return 'クリップボードにコピー';
|
||||||
case 'zap.error.invalid_custom_amount': return '無効なカスタム金額';
|
case 'zap.error.invalid_custom_amount': return '無効なカスタム金額';
|
||||||
case 'zap.error.no_wallet': return 'Lightningウォレット未装着';
|
case 'zap.error.no_wallet': return 'Lightningウォレット未装着';
|
||||||
case 'zap.error.no_lud16': return '雷アドレスが見つかりません';
|
case 'zap.error.no_lud16': return '雷アドレスが見つかりません';
|
||||||
case 'profile.past_streams': return '過去の配信';
|
case 'profile.past_streams': return '過去の配信';
|
||||||
case 'profile.edit.display_name': return '表示名';
|
case 'settings.button_profile': return 'プロフィール編集';
|
||||||
case 'profile.edit.about': return '自己紹介';
|
case 'settings.button_wallet': return 'ウォレットの設定';
|
||||||
case 'profile.edit.nip05': return 'Nostrアドレス';
|
case 'settings.profile.display_name': return '表示名';
|
||||||
case 'profile.edit.lud16': return 'ライトニングアドレス';
|
case 'settings.profile.about': return 'について';
|
||||||
case 'profile.edit.error.logged_out': return 'ログアウトするとプロフィールが編集できない';
|
case 'settings.profile.nip05': return '住所';
|
||||||
|
case 'settings.profile.lud16': return 'ライトニングアドレス';
|
||||||
|
case 'settings.profile.error.logged_out': return 'ログアウトするとプロフィールが編集できない';
|
||||||
|
case 'settings.wallet.connect_wallet': return 'コネクトウォレット (NWC nwc://)';
|
||||||
|
case 'settings.wallet.disconnect_wallet': return 'ウォレットの切断';
|
||||||
|
case 'settings.wallet.error.logged_out': return 'ログアウト時にウォレットに接続できない';
|
||||||
case 'login.username': return 'ユーザー名';
|
case 'login.username': return 'ユーザー名';
|
||||||
case 'login.amber': return '琥珀でログイン';
|
case 'login.amber': return '琥珀でログイン';
|
||||||
case 'login.key': return 'キーでログイン';
|
case 'login.key': return 'キーでログイン';
|
||||||
|
@ -67,6 +67,7 @@ class TranslationsKo extends Translations {
|
|||||||
|
|
||||||
@override late final _TranslationsZapKo zap = _TranslationsZapKo._(_root);
|
@override late final _TranslationsZapKo zap = _TranslationsZapKo._(_root);
|
||||||
@override late final _TranslationsProfileKo profile = _TranslationsProfileKo._(_root);
|
@override late final _TranslationsProfileKo profile = _TranslationsProfileKo._(_root);
|
||||||
|
@override late final _TranslationsSettingsKo settings = _TranslationsSettingsKo._(_root);
|
||||||
@override late final _TranslationsLoginKo login = _TranslationsLoginKo._(_root);
|
@override late final _TranslationsLoginKo login = _TranslationsLoginKo._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -118,6 +119,8 @@ class _TranslationsButtonKo extends TranslationsButtonEn {
|
|||||||
@override String get unmute => '뮤트 해제';
|
@override String get unmute => '뮤트 해제';
|
||||||
@override String get share => '공유';
|
@override String get share => '공유';
|
||||||
@override String get save => '저장';
|
@override String get save => '저장';
|
||||||
|
@override String get connect => '연결';
|
||||||
|
@override String get settings => '설정';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: embed
|
// Path: embed
|
||||||
@ -159,6 +162,7 @@ class _TranslationsZapKo extends TranslationsZapEn {
|
|||||||
@override String button_zap_ready({required Object amount}) => 'Zap ${amount} sats';
|
@override String button_zap_ready({required Object amount}) => 'Zap ${amount} sats';
|
||||||
@override String get button_zap => 'Zap';
|
@override String get button_zap => 'Zap';
|
||||||
@override String get button_open_wallet => '지갑에서 열기';
|
@override String get button_open_wallet => '지갑에서 열기';
|
||||||
|
@override String get button_connect_wallet => '지갑 연결';
|
||||||
@override String get copy => '클립보드에 복사';
|
@override String get copy => '클립보드에 복사';
|
||||||
@override late final _TranslationsZapErrorKo error = _TranslationsZapErrorKo._(_root);
|
@override late final _TranslationsZapErrorKo error = _TranslationsZapErrorKo._(_root);
|
||||||
}
|
}
|
||||||
@ -171,7 +175,19 @@ class _TranslationsProfileKo extends TranslationsProfileEn {
|
|||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
@override String get past_streams => '과거 스트림';
|
@override String get past_streams => '과거 스트림';
|
||||||
@override late final _TranslationsProfileEditKo edit = _TranslationsProfileEditKo._(_root);
|
}
|
||||||
|
|
||||||
|
// Path: settings
|
||||||
|
class _TranslationsSettingsKo extends TranslationsSettingsEn {
|
||||||
|
_TranslationsSettingsKo._(TranslationsKo root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsKo _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get button_profile => '프로필 수정';
|
||||||
|
@override String get button_wallet => '지갑 설정';
|
||||||
|
@override late final _TranslationsSettingsProfileKo profile = _TranslationsSettingsProfileKo._(_root);
|
||||||
|
@override late final _TranslationsSettingsWalletKo wallet = _TranslationsSettingsWalletKo._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login
|
// Path: login
|
||||||
@ -247,9 +263,9 @@ class _TranslationsZapErrorKo extends TranslationsZapErrorEn {
|
|||||||
@override String get no_lud16 => '번개 주소를 찾을 수 없습니다.';
|
@override String get no_lud16 => '번개 주소를 찾을 수 없습니다.';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit
|
// Path: settings.profile
|
||||||
class _TranslationsProfileEditKo extends TranslationsProfileEditEn {
|
class _TranslationsSettingsProfileKo extends TranslationsSettingsProfileEn {
|
||||||
_TranslationsProfileEditKo._(TranslationsKo root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileKo._(TranslationsKo root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsKo _root; // ignore: unused_field
|
final TranslationsKo _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -258,7 +274,19 @@ class _TranslationsProfileEditKo extends TranslationsProfileEditEn {
|
|||||||
@override String get about => '정보';
|
@override String get about => '정보';
|
||||||
@override String get nip05 => '노스트르 주소';
|
@override String get nip05 => '노스트르 주소';
|
||||||
@override String get lud16 => '라이트닝 주소';
|
@override String get lud16 => '라이트닝 주소';
|
||||||
@override late final _TranslationsProfileEditErrorKo error = _TranslationsProfileEditErrorKo._(_root);
|
@override late final _TranslationsSettingsProfileErrorKo error = _TranslationsSettingsProfileErrorKo._(_root);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet
|
||||||
|
class _TranslationsSettingsWalletKo extends TranslationsSettingsWalletEn {
|
||||||
|
_TranslationsSettingsWalletKo._(TranslationsKo root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsKo _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get connect_wallet => '지갑 연결(NWC nwc://)';
|
||||||
|
@override String get disconnect_wallet => '지갑 연결 해제';
|
||||||
|
@override late final _TranslationsSettingsWalletErrorKo error = _TranslationsSettingsWalletErrorKo._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login.error
|
// Path: login.error
|
||||||
@ -319,9 +347,9 @@ class _TranslationsStreamChatRaidKo extends TranslationsStreamChatRaidEn {
|
|||||||
@override String countdown({required Object time}) => '${time}에서 레이드';
|
@override String countdown({required Object time}) => '${time}에서 레이드';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit.error
|
// Path: settings.profile.error
|
||||||
class _TranslationsProfileEditErrorKo extends TranslationsProfileEditErrorEn {
|
class _TranslationsSettingsProfileErrorKo extends TranslationsSettingsProfileErrorEn {
|
||||||
_TranslationsProfileEditErrorKo._(TranslationsKo root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileErrorKo._(TranslationsKo root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsKo _root; // ignore: unused_field
|
final TranslationsKo _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -329,6 +357,16 @@ class _TranslationsProfileEditErrorKo extends TranslationsProfileEditErrorEn {
|
|||||||
@override String get logged_out => '로그아웃 시 프로필 수정 불가';
|
@override String get logged_out => '로그아웃 시 프로필 수정 불가';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet.error
|
||||||
|
class _TranslationsSettingsWalletErrorKo extends TranslationsSettingsWalletErrorEn {
|
||||||
|
_TranslationsSettingsWalletErrorKo._(TranslationsKo root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsKo _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get logged_out => '로그아웃 시 지갑 연결 불가';
|
||||||
|
}
|
||||||
|
|
||||||
/// Flat map(s) containing all translations.
|
/// Flat map(s) containing all translations.
|
||||||
/// Only for edge cases! For simple maps, use the map function of this library.
|
/// Only for edge cases! For simple maps, use the map function of this library.
|
||||||
extension on TranslationsKo {
|
extension on TranslationsKo {
|
||||||
@ -381,6 +419,8 @@ extension on TranslationsKo {
|
|||||||
case 'button.unmute': return '뮤트 해제';
|
case 'button.unmute': return '뮤트 해제';
|
||||||
case 'button.share': return '공유';
|
case 'button.share': return '공유';
|
||||||
case 'button.save': return '저장';
|
case 'button.save': return '저장';
|
||||||
|
case 'button.connect': return '연결';
|
||||||
|
case 'button.settings': return '설정';
|
||||||
case 'embed.article_by': return ({required Object name}) => '작성자: ${name}';
|
case 'embed.article_by': return ({required Object name}) => '작성자: ${name}';
|
||||||
case 'embed.note_by': return ({required Object name}) => '노트 작성됨: ${name}';
|
case 'embed.note_by': return ({required Object name}) => '노트 작성됨: ${name}';
|
||||||
case 'embed.live_stream_by': return ({required Object name}) => '라이브 스트리밍: ${name}';
|
case 'embed.live_stream_by': return ({required Object name}) => '라이브 스트리밍: ${name}';
|
||||||
@ -395,16 +435,22 @@ extension on TranslationsKo {
|
|||||||
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zap ${amount} sats';
|
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zap ${amount} sats';
|
||||||
case 'zap.button_zap': return 'Zap';
|
case 'zap.button_zap': return 'Zap';
|
||||||
case 'zap.button_open_wallet': return '지갑에서 열기';
|
case 'zap.button_open_wallet': return '지갑에서 열기';
|
||||||
|
case 'zap.button_connect_wallet': return '지갑 연결';
|
||||||
case 'zap.copy': return '클립보드에 복사';
|
case 'zap.copy': return '클립보드에 복사';
|
||||||
case 'zap.error.invalid_custom_amount': return '잘못된 사용자 지정 금액';
|
case 'zap.error.invalid_custom_amount': return '잘못된 사용자 지정 금액';
|
||||||
case 'zap.error.no_wallet': return '라이트닝 월렛이 설치되지 않았습니다.';
|
case 'zap.error.no_wallet': return '라이트닝 월렛이 설치되지 않았습니다.';
|
||||||
case 'zap.error.no_lud16': return '번개 주소를 찾을 수 없습니다.';
|
case 'zap.error.no_lud16': return '번개 주소를 찾을 수 없습니다.';
|
||||||
case 'profile.past_streams': return '과거 스트림';
|
case 'profile.past_streams': return '과거 스트림';
|
||||||
case 'profile.edit.display_name': return '표시 이름';
|
case 'settings.button_profile': return '프로필 수정';
|
||||||
case 'profile.edit.about': return '정보';
|
case 'settings.button_wallet': return '지갑 설정';
|
||||||
case 'profile.edit.nip05': return '노스트르 주소';
|
case 'settings.profile.display_name': return '표시 이름';
|
||||||
case 'profile.edit.lud16': return '라이트닝 주소';
|
case 'settings.profile.about': return '정보';
|
||||||
case 'profile.edit.error.logged_out': return '로그아웃 시 프로필 수정 불가';
|
case 'settings.profile.nip05': return '노스트르 주소';
|
||||||
|
case 'settings.profile.lud16': return '라이트닝 주소';
|
||||||
|
case 'settings.profile.error.logged_out': return '로그아웃 시 프로필 수정 불가';
|
||||||
|
case 'settings.wallet.connect_wallet': return '지갑 연결(NWC nwc://)';
|
||||||
|
case 'settings.wallet.disconnect_wallet': return '지갑 연결 해제';
|
||||||
|
case 'settings.wallet.error.logged_out': return '로그아웃 시 지갑 연결 불가';
|
||||||
case 'login.username': return '사용자 이름';
|
case 'login.username': return '사용자 이름';
|
||||||
case 'login.amber': return 'Amber로 로그인';
|
case 'login.amber': return 'Amber로 로그인';
|
||||||
case 'login.key': return '키로 로그인';
|
case 'login.key': return '키로 로그인';
|
||||||
|
@ -67,6 +67,7 @@ class TranslationsNl extends Translations {
|
|||||||
|
|
||||||
@override late final _TranslationsZapNl zap = _TranslationsZapNl._(_root);
|
@override late final _TranslationsZapNl zap = _TranslationsZapNl._(_root);
|
||||||
@override late final _TranslationsProfileNl profile = _TranslationsProfileNl._(_root);
|
@override late final _TranslationsProfileNl profile = _TranslationsProfileNl._(_root);
|
||||||
|
@override late final _TranslationsSettingsNl settings = _TranslationsSettingsNl._(_root);
|
||||||
@override late final _TranslationsLoginNl login = _TranslationsLoginNl._(_root);
|
@override late final _TranslationsLoginNl login = _TranslationsLoginNl._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -118,6 +119,8 @@ class _TranslationsButtonNl extends TranslationsButtonEn {
|
|||||||
@override String get unmute => 'Niet langer negeren';
|
@override String get unmute => 'Niet langer negeren';
|
||||||
@override String get share => 'Deel';
|
@override String get share => 'Deel';
|
||||||
@override String get save => 'Opslaan';
|
@override String get save => 'Opslaan';
|
||||||
|
@override String get connect => 'Maak verbinding met';
|
||||||
|
@override String get settings => 'Instellingen';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: embed
|
// Path: embed
|
||||||
@ -159,6 +162,7 @@ class _TranslationsZapNl extends TranslationsZapEn {
|
|||||||
@override String button_zap_ready({required Object amount}) => 'Zap ${amount} sats';
|
@override String button_zap_ready({required Object amount}) => 'Zap ${amount} sats';
|
||||||
@override String get button_zap => 'Zap';
|
@override String get button_zap => 'Zap';
|
||||||
@override String get button_open_wallet => 'Openen in portefeuille';
|
@override String get button_open_wallet => 'Openen in portefeuille';
|
||||||
|
@override String get button_connect_wallet => 'Portemonnee aansluiten';
|
||||||
@override String get copy => 'Gekopieerd naar klembord';
|
@override String get copy => 'Gekopieerd naar klembord';
|
||||||
@override late final _TranslationsZapErrorNl error = _TranslationsZapErrorNl._(_root);
|
@override late final _TranslationsZapErrorNl error = _TranslationsZapErrorNl._(_root);
|
||||||
}
|
}
|
||||||
@ -171,7 +175,19 @@ class _TranslationsProfileNl extends TranslationsProfileEn {
|
|||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
@override String get past_streams => 'Afgelopen Streams';
|
@override String get past_streams => 'Afgelopen Streams';
|
||||||
@override late final _TranslationsProfileEditNl edit = _TranslationsProfileEditNl._(_root);
|
}
|
||||||
|
|
||||||
|
// Path: settings
|
||||||
|
class _TranslationsSettingsNl extends TranslationsSettingsEn {
|
||||||
|
_TranslationsSettingsNl._(TranslationsNl root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsNl _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get button_profile => 'Profiel bewerken';
|
||||||
|
@override String get button_wallet => 'Portemonnee-instellingen';
|
||||||
|
@override late final _TranslationsSettingsProfileNl profile = _TranslationsSettingsProfileNl._(_root);
|
||||||
|
@override late final _TranslationsSettingsWalletNl wallet = _TranslationsSettingsWalletNl._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login
|
// Path: login
|
||||||
@ -247,18 +263,30 @@ class _TranslationsZapErrorNl extends TranslationsZapErrorEn {
|
|||||||
@override String get no_lud16 => 'Geen bliksemadres gevonden';
|
@override String get no_lud16 => 'Geen bliksemadres gevonden';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit
|
// Path: settings.profile
|
||||||
class _TranslationsProfileEditNl extends TranslationsProfileEditEn {
|
class _TranslationsSettingsProfileNl extends TranslationsSettingsProfileEn {
|
||||||
_TranslationsProfileEditNl._(TranslationsNl root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileNl._(TranslationsNl root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsNl _root; // ignore: unused_field
|
final TranslationsNl _root; // ignore: unused_field
|
||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
@override String get display_name => 'Naam weergeven';
|
@override String get display_name => 'Naam weergeven';
|
||||||
@override String get about => 'Over ons';
|
@override String get about => 'Over';
|
||||||
@override String get nip05 => 'Nostr Adres';
|
@override String get nip05 => 'Nostr Adres';
|
||||||
@override String get lud16 => 'Lightning adres';
|
@override String get lud16 => 'Bliksemadres';
|
||||||
@override late final _TranslationsProfileEditErrorNl error = _TranslationsProfileEditErrorNl._(_root);
|
@override late final _TranslationsSettingsProfileErrorNl error = _TranslationsSettingsProfileErrorNl._(_root);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet
|
||||||
|
class _TranslationsSettingsWalletNl extends TranslationsSettingsWalletEn {
|
||||||
|
_TranslationsSettingsWalletNl._(TranslationsNl root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsNl _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get connect_wallet => 'Portemonnee verbinden (NWC nwc://)';
|
||||||
|
@override String get disconnect_wallet => 'Portefeuille loskoppelen';
|
||||||
|
@override late final _TranslationsSettingsWalletErrorNl error = _TranslationsSettingsWalletErrorNl._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login.error
|
// Path: login.error
|
||||||
@ -319,9 +347,9 @@ class _TranslationsStreamChatRaidNl extends TranslationsStreamChatRaidEn {
|
|||||||
@override String countdown({required Object time}) => 'Overvallen in ${time}';
|
@override String countdown({required Object time}) => 'Overvallen in ${time}';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit.error
|
// Path: settings.profile.error
|
||||||
class _TranslationsProfileEditErrorNl extends TranslationsProfileEditErrorEn {
|
class _TranslationsSettingsProfileErrorNl extends TranslationsSettingsProfileErrorEn {
|
||||||
_TranslationsProfileEditErrorNl._(TranslationsNl root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileErrorNl._(TranslationsNl root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsNl _root; // ignore: unused_field
|
final TranslationsNl _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -329,6 +357,16 @@ class _TranslationsProfileEditErrorNl extends TranslationsProfileEditErrorEn {
|
|||||||
@override String get logged_out => 'Kan profiel niet bewerken als ik ben uitgelogd';
|
@override String get logged_out => 'Kan profiel niet bewerken als ik ben uitgelogd';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet.error
|
||||||
|
class _TranslationsSettingsWalletErrorNl extends TranslationsSettingsWalletErrorEn {
|
||||||
|
_TranslationsSettingsWalletErrorNl._(TranslationsNl root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsNl _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get logged_out => 'Kan geen verbinding maken met portemonnee als ik ben uitgelogd';
|
||||||
|
}
|
||||||
|
|
||||||
/// Flat map(s) containing all translations.
|
/// Flat map(s) containing all translations.
|
||||||
/// Only for edge cases! For simple maps, use the map function of this library.
|
/// Only for edge cases! For simple maps, use the map function of this library.
|
||||||
extension on TranslationsNl {
|
extension on TranslationsNl {
|
||||||
@ -381,6 +419,8 @@ extension on TranslationsNl {
|
|||||||
case 'button.unmute': return 'Niet langer negeren';
|
case 'button.unmute': return 'Niet langer negeren';
|
||||||
case 'button.share': return 'Deel';
|
case 'button.share': return 'Deel';
|
||||||
case 'button.save': return 'Opslaan';
|
case 'button.save': return 'Opslaan';
|
||||||
|
case 'button.connect': return 'Maak verbinding met';
|
||||||
|
case 'button.settings': return 'Instellingen';
|
||||||
case 'embed.article_by': return ({required Object name}) => 'Artikel door ${name}';
|
case 'embed.article_by': return ({required Object name}) => 'Artikel door ${name}';
|
||||||
case 'embed.note_by': return ({required Object name}) => 'Opmerking door ${name}';
|
case 'embed.note_by': return ({required Object name}) => 'Opmerking door ${name}';
|
||||||
case 'embed.live_stream_by': return ({required Object name}) => 'Live stream via ${name}';
|
case 'embed.live_stream_by': return ({required Object name}) => 'Live stream via ${name}';
|
||||||
@ -395,16 +435,22 @@ extension on TranslationsNl {
|
|||||||
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zap ${amount} sats';
|
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zap ${amount} sats';
|
||||||
case 'zap.button_zap': return 'Zap';
|
case 'zap.button_zap': return 'Zap';
|
||||||
case 'zap.button_open_wallet': return 'Openen in portefeuille';
|
case 'zap.button_open_wallet': return 'Openen in portefeuille';
|
||||||
|
case 'zap.button_connect_wallet': return 'Portemonnee aansluiten';
|
||||||
case 'zap.copy': return 'Gekopieerd naar klembord';
|
case 'zap.copy': return 'Gekopieerd naar klembord';
|
||||||
case 'zap.error.invalid_custom_amount': return 'Ongeldig aangepast bedrag';
|
case 'zap.error.invalid_custom_amount': return 'Ongeldig aangepast bedrag';
|
||||||
case 'zap.error.no_wallet': return 'Geen bliksemportemonnee geïnstalleerd';
|
case 'zap.error.no_wallet': return 'Geen bliksemportemonnee geïnstalleerd';
|
||||||
case 'zap.error.no_lud16': return 'Geen bliksemadres gevonden';
|
case 'zap.error.no_lud16': return 'Geen bliksemadres gevonden';
|
||||||
case 'profile.past_streams': return 'Afgelopen Streams';
|
case 'profile.past_streams': return 'Afgelopen Streams';
|
||||||
case 'profile.edit.display_name': return 'Naam weergeven';
|
case 'settings.button_profile': return 'Profiel bewerken';
|
||||||
case 'profile.edit.about': return 'Over ons';
|
case 'settings.button_wallet': return 'Portemonnee-instellingen';
|
||||||
case 'profile.edit.nip05': return 'Nostr Adres';
|
case 'settings.profile.display_name': return 'Naam weergeven';
|
||||||
case 'profile.edit.lud16': return 'Lightning adres';
|
case 'settings.profile.about': return 'Over';
|
||||||
case 'profile.edit.error.logged_out': return 'Kan profiel niet bewerken als ik ben uitgelogd';
|
case 'settings.profile.nip05': return 'Nostr Adres';
|
||||||
|
case 'settings.profile.lud16': return 'Bliksemadres';
|
||||||
|
case 'settings.profile.error.logged_out': return 'Kan profiel niet bewerken als ik ben uitgelogd';
|
||||||
|
case 'settings.wallet.connect_wallet': return 'Portemonnee verbinden (NWC nwc://)';
|
||||||
|
case 'settings.wallet.disconnect_wallet': return 'Portefeuille loskoppelen';
|
||||||
|
case 'settings.wallet.error.logged_out': return 'Kan geen verbinding maken met portemonnee als ik ben uitgelogd';
|
||||||
case 'login.username': return 'Gebruikersnaam';
|
case 'login.username': return 'Gebruikersnaam';
|
||||||
case 'login.amber': return 'Inloggen met Amber';
|
case 'login.amber': return 'Inloggen met Amber';
|
||||||
case 'login.key': return 'Inloggen met sleutel';
|
case 'login.key': return 'Inloggen met sleutel';
|
||||||
|
@ -67,6 +67,7 @@ class TranslationsNo extends Translations {
|
|||||||
|
|
||||||
@override late final _TranslationsZapNo zap = _TranslationsZapNo._(_root);
|
@override late final _TranslationsZapNo zap = _TranslationsZapNo._(_root);
|
||||||
@override late final _TranslationsProfileNo profile = _TranslationsProfileNo._(_root);
|
@override late final _TranslationsProfileNo profile = _TranslationsProfileNo._(_root);
|
||||||
|
@override late final _TranslationsSettingsNo settings = _TranslationsSettingsNo._(_root);
|
||||||
@override late final _TranslationsLoginNo login = _TranslationsLoginNo._(_root);
|
@override late final _TranslationsLoginNo login = _TranslationsLoginNo._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -118,6 +119,8 @@ class _TranslationsButtonNo extends TranslationsButtonEn {
|
|||||||
@override String get unmute => 'Unmute';
|
@override String get unmute => 'Unmute';
|
||||||
@override String get share => 'Share';
|
@override String get share => 'Share';
|
||||||
@override String get save => 'Save';
|
@override String get save => 'Save';
|
||||||
|
@override String get connect => 'Connect';
|
||||||
|
@override String get settings => 'Settings';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: embed
|
// Path: embed
|
||||||
@ -159,6 +162,7 @@ class _TranslationsZapNo extends TranslationsZapEn {
|
|||||||
@override String button_zap_ready({required Object amount}) => 'Zap ${amount} sats';
|
@override String button_zap_ready({required Object amount}) => 'Zap ${amount} sats';
|
||||||
@override String get button_zap => 'Zap';
|
@override String get button_zap => 'Zap';
|
||||||
@override String get button_open_wallet => 'Open in Wallet';
|
@override String get button_open_wallet => 'Open in Wallet';
|
||||||
|
@override String get button_connect_wallet => 'Connect Wallet';
|
||||||
@override String get copy => 'Copied to clipboard';
|
@override String get copy => 'Copied to clipboard';
|
||||||
@override late final _TranslationsZapErrorNo error = _TranslationsZapErrorNo._(_root);
|
@override late final _TranslationsZapErrorNo error = _TranslationsZapErrorNo._(_root);
|
||||||
}
|
}
|
||||||
@ -171,7 +175,19 @@ class _TranslationsProfileNo extends TranslationsProfileEn {
|
|||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
@override String get past_streams => 'Past Streams';
|
@override String get past_streams => 'Past Streams';
|
||||||
@override late final _TranslationsProfileEditNo edit = _TranslationsProfileEditNo._(_root);
|
}
|
||||||
|
|
||||||
|
// Path: settings
|
||||||
|
class _TranslationsSettingsNo extends TranslationsSettingsEn {
|
||||||
|
_TranslationsSettingsNo._(TranslationsNo root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsNo _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get button_profile => 'Edit Profile';
|
||||||
|
@override String get button_wallet => 'Wallet Settings';
|
||||||
|
@override late final _TranslationsSettingsProfileNo profile = _TranslationsSettingsProfileNo._(_root);
|
||||||
|
@override late final _TranslationsSettingsWalletNo wallet = _TranslationsSettingsWalletNo._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login
|
// Path: login
|
||||||
@ -247,9 +263,9 @@ class _TranslationsZapErrorNo extends TranslationsZapErrorEn {
|
|||||||
@override String get no_lud16 => 'No lightning address found';
|
@override String get no_lud16 => 'No lightning address found';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit
|
// Path: settings.profile
|
||||||
class _TranslationsProfileEditNo extends TranslationsProfileEditEn {
|
class _TranslationsSettingsProfileNo extends TranslationsSettingsProfileEn {
|
||||||
_TranslationsProfileEditNo._(TranslationsNo root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileNo._(TranslationsNo root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsNo _root; // ignore: unused_field
|
final TranslationsNo _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -258,7 +274,19 @@ class _TranslationsProfileEditNo extends TranslationsProfileEditEn {
|
|||||||
@override String get about => 'About';
|
@override String get about => 'About';
|
||||||
@override String get nip05 => 'Nostr Address';
|
@override String get nip05 => 'Nostr Address';
|
||||||
@override String get lud16 => 'Lightning Address';
|
@override String get lud16 => 'Lightning Address';
|
||||||
@override late final _TranslationsProfileEditErrorNo error = _TranslationsProfileEditErrorNo._(_root);
|
@override late final _TranslationsSettingsProfileErrorNo error = _TranslationsSettingsProfileErrorNo._(_root);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet
|
||||||
|
class _TranslationsSettingsWalletNo extends TranslationsSettingsWalletEn {
|
||||||
|
_TranslationsSettingsWalletNo._(TranslationsNo root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsNo _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get connect_wallet => 'Connect Wallet (NWC nwc://)';
|
||||||
|
@override String get disconnect_wallet => 'Disconnect Wallet';
|
||||||
|
@override late final _TranslationsSettingsWalletErrorNo error = _TranslationsSettingsWalletErrorNo._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login.error
|
// Path: login.error
|
||||||
@ -319,9 +347,9 @@ class _TranslationsStreamChatRaidNo extends TranslationsStreamChatRaidEn {
|
|||||||
@override String countdown({required Object time}) => 'Raiding in ${time}';
|
@override String countdown({required Object time}) => 'Raiding in ${time}';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit.error
|
// Path: settings.profile.error
|
||||||
class _TranslationsProfileEditErrorNo extends TranslationsProfileEditErrorEn {
|
class _TranslationsSettingsProfileErrorNo extends TranslationsSettingsProfileErrorEn {
|
||||||
_TranslationsProfileEditErrorNo._(TranslationsNo root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileErrorNo._(TranslationsNo root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsNo _root; // ignore: unused_field
|
final TranslationsNo _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -329,6 +357,16 @@ class _TranslationsProfileEditErrorNo extends TranslationsProfileEditErrorEn {
|
|||||||
@override String get logged_out => 'Cant edit profile when logged out';
|
@override String get logged_out => 'Cant edit profile when logged out';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet.error
|
||||||
|
class _TranslationsSettingsWalletErrorNo extends TranslationsSettingsWalletErrorEn {
|
||||||
|
_TranslationsSettingsWalletErrorNo._(TranslationsNo root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsNo _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get logged_out => 'Cant connect wallet when logged out';
|
||||||
|
}
|
||||||
|
|
||||||
/// Flat map(s) containing all translations.
|
/// Flat map(s) containing all translations.
|
||||||
/// Only for edge cases! For simple maps, use the map function of this library.
|
/// Only for edge cases! For simple maps, use the map function of this library.
|
||||||
extension on TranslationsNo {
|
extension on TranslationsNo {
|
||||||
@ -381,6 +419,8 @@ extension on TranslationsNo {
|
|||||||
case 'button.unmute': return 'Unmute';
|
case 'button.unmute': return 'Unmute';
|
||||||
case 'button.share': return 'Share';
|
case 'button.share': return 'Share';
|
||||||
case 'button.save': return 'Save';
|
case 'button.save': return 'Save';
|
||||||
|
case 'button.connect': return 'Connect';
|
||||||
|
case 'button.settings': return 'Settings';
|
||||||
case 'embed.article_by': return ({required Object name}) => 'Article by ${name}';
|
case 'embed.article_by': return ({required Object name}) => 'Article by ${name}';
|
||||||
case 'embed.note_by': return ({required Object name}) => 'Note by ${name}';
|
case 'embed.note_by': return ({required Object name}) => 'Note by ${name}';
|
||||||
case 'embed.live_stream_by': return ({required Object name}) => 'Live stream by ${name}';
|
case 'embed.live_stream_by': return ({required Object name}) => 'Live stream by ${name}';
|
||||||
@ -395,16 +435,22 @@ extension on TranslationsNo {
|
|||||||
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zap ${amount} sats';
|
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zap ${amount} sats';
|
||||||
case 'zap.button_zap': return 'Zap';
|
case 'zap.button_zap': return 'Zap';
|
||||||
case 'zap.button_open_wallet': return 'Open in Wallet';
|
case 'zap.button_open_wallet': return 'Open in Wallet';
|
||||||
|
case 'zap.button_connect_wallet': return 'Connect Wallet';
|
||||||
case 'zap.copy': return 'Copied to clipboard';
|
case 'zap.copy': return 'Copied to clipboard';
|
||||||
case 'zap.error.invalid_custom_amount': return 'Invalid custom amount';
|
case 'zap.error.invalid_custom_amount': return 'Invalid custom amount';
|
||||||
case 'zap.error.no_wallet': return 'No lightning wallet installed';
|
case 'zap.error.no_wallet': return 'No lightning wallet installed';
|
||||||
case 'zap.error.no_lud16': return 'No lightning address found';
|
case 'zap.error.no_lud16': return 'No lightning address found';
|
||||||
case 'profile.past_streams': return 'Past Streams';
|
case 'profile.past_streams': return 'Past Streams';
|
||||||
case 'profile.edit.display_name': return 'Display Name';
|
case 'settings.button_profile': return 'Edit Profile';
|
||||||
case 'profile.edit.about': return 'About';
|
case 'settings.button_wallet': return 'Wallet Settings';
|
||||||
case 'profile.edit.nip05': return 'Nostr Address';
|
case 'settings.profile.display_name': return 'Display Name';
|
||||||
case 'profile.edit.lud16': return 'Lightning Address';
|
case 'settings.profile.about': return 'About';
|
||||||
case 'profile.edit.error.logged_out': return 'Cant edit profile when logged out';
|
case 'settings.profile.nip05': return 'Nostr Address';
|
||||||
|
case 'settings.profile.lud16': return 'Lightning Address';
|
||||||
|
case 'settings.profile.error.logged_out': return 'Cant edit profile when logged out';
|
||||||
|
case 'settings.wallet.connect_wallet': return 'Connect Wallet (NWC nwc://)';
|
||||||
|
case 'settings.wallet.disconnect_wallet': return 'Disconnect Wallet';
|
||||||
|
case 'settings.wallet.error.logged_out': return 'Cant connect wallet when logged out';
|
||||||
case 'login.username': return 'Username';
|
case 'login.username': return 'Username';
|
||||||
case 'login.amber': return 'Login with Amber';
|
case 'login.amber': return 'Login with Amber';
|
||||||
case 'login.key': return 'Login with Key';
|
case 'login.key': return 'Login with Key';
|
||||||
|
@ -67,6 +67,7 @@ class TranslationsPl extends Translations {
|
|||||||
|
|
||||||
@override late final _TranslationsZapPl zap = _TranslationsZapPl._(_root);
|
@override late final _TranslationsZapPl zap = _TranslationsZapPl._(_root);
|
||||||
@override late final _TranslationsProfilePl profile = _TranslationsProfilePl._(_root);
|
@override late final _TranslationsProfilePl profile = _TranslationsProfilePl._(_root);
|
||||||
|
@override late final _TranslationsSettingsPl settings = _TranslationsSettingsPl._(_root);
|
||||||
@override late final _TranslationsLoginPl login = _TranslationsLoginPl._(_root);
|
@override late final _TranslationsLoginPl login = _TranslationsLoginPl._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -118,6 +119,8 @@ class _TranslationsButtonPl extends TranslationsButtonEn {
|
|||||||
@override String get unmute => 'Wyłącz wyciszenie';
|
@override String get unmute => 'Wyłącz wyciszenie';
|
||||||
@override String get share => 'Udział';
|
@override String get share => 'Udział';
|
||||||
@override String get save => 'Zapisz';
|
@override String get save => 'Zapisz';
|
||||||
|
@override String get connect => 'Połączenie';
|
||||||
|
@override String get settings => 'Ustawienia';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: embed
|
// Path: embed
|
||||||
@ -159,6 +162,7 @@ class _TranslationsZapPl extends TranslationsZapEn {
|
|||||||
@override String button_zap_ready({required Object amount}) => 'Zap ${amount} sats';
|
@override String button_zap_ready({required Object amount}) => 'Zap ${amount} sats';
|
||||||
@override String get button_zap => 'Zap';
|
@override String get button_zap => 'Zap';
|
||||||
@override String get button_open_wallet => 'Otwórz w portfelu';
|
@override String get button_open_wallet => 'Otwórz w portfelu';
|
||||||
|
@override String get button_connect_wallet => 'Connect Wallet';
|
||||||
@override String get copy => 'Skopiowane do schowka';
|
@override String get copy => 'Skopiowane do schowka';
|
||||||
@override late final _TranslationsZapErrorPl error = _TranslationsZapErrorPl._(_root);
|
@override late final _TranslationsZapErrorPl error = _TranslationsZapErrorPl._(_root);
|
||||||
}
|
}
|
||||||
@ -171,7 +175,19 @@ class _TranslationsProfilePl extends TranslationsProfileEn {
|
|||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
@override String get past_streams => 'Poprzednie strumienie';
|
@override String get past_streams => 'Poprzednie strumienie';
|
||||||
@override late final _TranslationsProfileEditPl edit = _TranslationsProfileEditPl._(_root);
|
}
|
||||||
|
|
||||||
|
// Path: settings
|
||||||
|
class _TranslationsSettingsPl extends TranslationsSettingsEn {
|
||||||
|
_TranslationsSettingsPl._(TranslationsPl root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsPl _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get button_profile => 'Edytuj profil';
|
||||||
|
@override String get button_wallet => 'Ustawienia portfela';
|
||||||
|
@override late final _TranslationsSettingsProfilePl profile = _TranslationsSettingsProfilePl._(_root);
|
||||||
|
@override late final _TranslationsSettingsWalletPl wallet = _TranslationsSettingsWalletPl._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login
|
// Path: login
|
||||||
@ -247,9 +263,9 @@ class _TranslationsZapErrorPl extends TranslationsZapErrorEn {
|
|||||||
@override String get no_lud16 => 'Nie znaleziono adresu pioruna';
|
@override String get no_lud16 => 'Nie znaleziono adresu pioruna';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit
|
// Path: settings.profile
|
||||||
class _TranslationsProfileEditPl extends TranslationsProfileEditEn {
|
class _TranslationsSettingsProfilePl extends TranslationsSettingsProfileEn {
|
||||||
_TranslationsProfileEditPl._(TranslationsPl root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfilePl._(TranslationsPl root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsPl _root; // ignore: unused_field
|
final TranslationsPl _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -258,7 +274,19 @@ class _TranslationsProfileEditPl extends TranslationsProfileEditEn {
|
|||||||
@override String get about => 'O';
|
@override String get about => 'O';
|
||||||
@override String get nip05 => 'Adres Nostr';
|
@override String get nip05 => 'Adres Nostr';
|
||||||
@override String get lud16 => 'Adres błyskawicy';
|
@override String get lud16 => 'Adres błyskawicy';
|
||||||
@override late final _TranslationsProfileEditErrorPl error = _TranslationsProfileEditErrorPl._(_root);
|
@override late final _TranslationsSettingsProfileErrorPl error = _TranslationsSettingsProfileErrorPl._(_root);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet
|
||||||
|
class _TranslationsSettingsWalletPl extends TranslationsSettingsWalletEn {
|
||||||
|
_TranslationsSettingsWalletPl._(TranslationsPl root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsPl _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get connect_wallet => 'Connect Wallet (NWC nwc://)';
|
||||||
|
@override String get disconnect_wallet => 'Odłącz portfel';
|
||||||
|
@override late final _TranslationsSettingsWalletErrorPl error = _TranslationsSettingsWalletErrorPl._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login.error
|
// Path: login.error
|
||||||
@ -319,9 +347,9 @@ class _TranslationsStreamChatRaidPl extends TranslationsStreamChatRaidEn {
|
|||||||
@override String countdown({required Object time}) => 'Naloty w ${time}';
|
@override String countdown({required Object time}) => 'Naloty w ${time}';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit.error
|
// Path: settings.profile.error
|
||||||
class _TranslationsProfileEditErrorPl extends TranslationsProfileEditErrorEn {
|
class _TranslationsSettingsProfileErrorPl extends TranslationsSettingsProfileErrorEn {
|
||||||
_TranslationsProfileEditErrorPl._(TranslationsPl root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileErrorPl._(TranslationsPl root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsPl _root; // ignore: unused_field
|
final TranslationsPl _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -329,6 +357,16 @@ class _TranslationsProfileEditErrorPl extends TranslationsProfileEditErrorEn {
|
|||||||
@override String get logged_out => 'Nie można edytować profilu po wylogowaniu';
|
@override String get logged_out => 'Nie można edytować profilu po wylogowaniu';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet.error
|
||||||
|
class _TranslationsSettingsWalletErrorPl extends TranslationsSettingsWalletErrorEn {
|
||||||
|
_TranslationsSettingsWalletErrorPl._(TranslationsPl root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsPl _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get logged_out => 'Nie można połączyć portfela po wylogowaniu';
|
||||||
|
}
|
||||||
|
|
||||||
/// Flat map(s) containing all translations.
|
/// Flat map(s) containing all translations.
|
||||||
/// Only for edge cases! For simple maps, use the map function of this library.
|
/// Only for edge cases! For simple maps, use the map function of this library.
|
||||||
extension on TranslationsPl {
|
extension on TranslationsPl {
|
||||||
@ -381,6 +419,8 @@ extension on TranslationsPl {
|
|||||||
case 'button.unmute': return 'Wyłącz wyciszenie';
|
case 'button.unmute': return 'Wyłącz wyciszenie';
|
||||||
case 'button.share': return 'Udział';
|
case 'button.share': return 'Udział';
|
||||||
case 'button.save': return 'Zapisz';
|
case 'button.save': return 'Zapisz';
|
||||||
|
case 'button.connect': return 'Połączenie';
|
||||||
|
case 'button.settings': return 'Ustawienia';
|
||||||
case 'embed.article_by': return ({required Object name}) => 'Artykuł autorstwa ${name}';
|
case 'embed.article_by': return ({required Object name}) => 'Artykuł autorstwa ${name}';
|
||||||
case 'embed.note_by': return ({required Object name}) => 'Uwaga ${name}';
|
case 'embed.note_by': return ({required Object name}) => 'Uwaga ${name}';
|
||||||
case 'embed.live_stream_by': return ({required Object name}) => 'Transmisja na żywo przez ${name}';
|
case 'embed.live_stream_by': return ({required Object name}) => 'Transmisja na żywo przez ${name}';
|
||||||
@ -395,16 +435,22 @@ extension on TranslationsPl {
|
|||||||
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zap ${amount} sats';
|
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zap ${amount} sats';
|
||||||
case 'zap.button_zap': return 'Zap';
|
case 'zap.button_zap': return 'Zap';
|
||||||
case 'zap.button_open_wallet': return 'Otwórz w portfelu';
|
case 'zap.button_open_wallet': return 'Otwórz w portfelu';
|
||||||
|
case 'zap.button_connect_wallet': return 'Connect Wallet';
|
||||||
case 'zap.copy': return 'Skopiowane do schowka';
|
case 'zap.copy': return 'Skopiowane do schowka';
|
||||||
case 'zap.error.invalid_custom_amount': return 'Nieprawidłowa kwota niestandardowa';
|
case 'zap.error.invalid_custom_amount': return 'Nieprawidłowa kwota niestandardowa';
|
||||||
case 'zap.error.no_wallet': return 'Brak zainstalowanego portfela Lightning';
|
case 'zap.error.no_wallet': return 'Brak zainstalowanego portfela Lightning';
|
||||||
case 'zap.error.no_lud16': return 'Nie znaleziono adresu pioruna';
|
case 'zap.error.no_lud16': return 'Nie znaleziono adresu pioruna';
|
||||||
case 'profile.past_streams': return 'Poprzednie strumienie';
|
case 'profile.past_streams': return 'Poprzednie strumienie';
|
||||||
case 'profile.edit.display_name': return 'Wyświetlana nazwa';
|
case 'settings.button_profile': return 'Edytuj profil';
|
||||||
case 'profile.edit.about': return 'O';
|
case 'settings.button_wallet': return 'Ustawienia portfela';
|
||||||
case 'profile.edit.nip05': return 'Adres Nostr';
|
case 'settings.profile.display_name': return 'Wyświetlana nazwa';
|
||||||
case 'profile.edit.lud16': return 'Adres błyskawicy';
|
case 'settings.profile.about': return 'O';
|
||||||
case 'profile.edit.error.logged_out': return 'Nie można edytować profilu po wylogowaniu';
|
case 'settings.profile.nip05': return 'Adres Nostr';
|
||||||
|
case 'settings.profile.lud16': return 'Adres błyskawicy';
|
||||||
|
case 'settings.profile.error.logged_out': return 'Nie można edytować profilu po wylogowaniu';
|
||||||
|
case 'settings.wallet.connect_wallet': return 'Connect Wallet (NWC nwc://)';
|
||||||
|
case 'settings.wallet.disconnect_wallet': return 'Odłącz portfel';
|
||||||
|
case 'settings.wallet.error.logged_out': return 'Nie można połączyć portfela po wylogowaniu';
|
||||||
case 'login.username': return 'Nazwa użytkownika';
|
case 'login.username': return 'Nazwa użytkownika';
|
||||||
case 'login.amber': return 'Zaloguj się za pomocą Amber';
|
case 'login.amber': return 'Zaloguj się za pomocą Amber';
|
||||||
case 'login.key': return 'Logowanie za pomocą klucza';
|
case 'login.key': return 'Logowanie za pomocą klucza';
|
||||||
|
@ -67,6 +67,7 @@ class TranslationsPt extends Translations {
|
|||||||
|
|
||||||
@override late final _TranslationsZapPt zap = _TranslationsZapPt._(_root);
|
@override late final _TranslationsZapPt zap = _TranslationsZapPt._(_root);
|
||||||
@override late final _TranslationsProfilePt profile = _TranslationsProfilePt._(_root);
|
@override late final _TranslationsProfilePt profile = _TranslationsProfilePt._(_root);
|
||||||
|
@override late final _TranslationsSettingsPt settings = _TranslationsSettingsPt._(_root);
|
||||||
@override late final _TranslationsLoginPt login = _TranslationsLoginPt._(_root);
|
@override late final _TranslationsLoginPt login = _TranslationsLoginPt._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -118,6 +119,8 @@ class _TranslationsButtonPt extends TranslationsButtonEn {
|
|||||||
@override String get unmute => 'Desmutar';
|
@override String get unmute => 'Desmutar';
|
||||||
@override String get share => 'Compartilhar';
|
@override String get share => 'Compartilhar';
|
||||||
@override String get save => 'Salvar';
|
@override String get save => 'Salvar';
|
||||||
|
@override String get connect => 'Conectar';
|
||||||
|
@override String get settings => 'Configurações';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: embed
|
// Path: embed
|
||||||
@ -159,6 +162,7 @@ class _TranslationsZapPt extends TranslationsZapEn {
|
|||||||
@override String button_zap_ready({required Object amount}) => 'Enviar Zap de ${amount} sats';
|
@override String button_zap_ready({required Object amount}) => 'Enviar Zap de ${amount} sats';
|
||||||
@override String get button_zap => 'Zap';
|
@override String get button_zap => 'Zap';
|
||||||
@override String get button_open_wallet => 'Abrir na carteira';
|
@override String get button_open_wallet => 'Abrir na carteira';
|
||||||
|
@override String get button_connect_wallet => 'Conectar carteira';
|
||||||
@override String get copy => 'Copiado para a área de transferência';
|
@override String get copy => 'Copiado para a área de transferência';
|
||||||
@override late final _TranslationsZapErrorPt error = _TranslationsZapErrorPt._(_root);
|
@override late final _TranslationsZapErrorPt error = _TranslationsZapErrorPt._(_root);
|
||||||
}
|
}
|
||||||
@ -171,7 +175,19 @@ class _TranslationsProfilePt extends TranslationsProfileEn {
|
|||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
@override String get past_streams => 'Transmissões Passadas';
|
@override String get past_streams => 'Transmissões Passadas';
|
||||||
@override late final _TranslationsProfileEditPt edit = _TranslationsProfileEditPt._(_root);
|
}
|
||||||
|
|
||||||
|
// Path: settings
|
||||||
|
class _TranslationsSettingsPt extends TranslationsSettingsEn {
|
||||||
|
_TranslationsSettingsPt._(TranslationsPt root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsPt _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get button_profile => 'Editar perfil';
|
||||||
|
@override String get button_wallet => 'Configurações da carteira';
|
||||||
|
@override late final _TranslationsSettingsProfilePt profile = _TranslationsSettingsProfilePt._(_root);
|
||||||
|
@override late final _TranslationsSettingsWalletPt wallet = _TranslationsSettingsWalletPt._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login
|
// Path: login
|
||||||
@ -247,18 +263,30 @@ class _TranslationsZapErrorPt extends TranslationsZapErrorEn {
|
|||||||
@override String get no_lud16 => 'Nenhum endereço de raio encontrado';
|
@override String get no_lud16 => 'Nenhum endereço de raio encontrado';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit
|
// Path: settings.profile
|
||||||
class _TranslationsProfileEditPt extends TranslationsProfileEditEn {
|
class _TranslationsSettingsProfilePt extends TranslationsSettingsProfileEn {
|
||||||
_TranslationsProfileEditPt._(TranslationsPt root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfilePt._(TranslationsPt root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsPt _root; // ignore: unused_field
|
final TranslationsPt _root; // ignore: unused_field
|
||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
@override String get display_name => 'Nome de exibição';
|
@override String get display_name => 'Nome de exibição';
|
||||||
@override String get about => 'Sobre';
|
@override String get about => 'Sobre';
|
||||||
@override String get nip05 => 'Endereço do Nostr';
|
@override String get nip05 => 'Endereço Nostr';
|
||||||
@override String get lud16 => 'Endereço Lightning';
|
@override String get lud16 => 'Endereço para relâmpagos';
|
||||||
@override late final _TranslationsProfileEditErrorPt error = _TranslationsProfileEditErrorPt._(_root);
|
@override late final _TranslationsSettingsProfileErrorPt error = _TranslationsSettingsProfileErrorPt._(_root);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet
|
||||||
|
class _TranslationsSettingsWalletPt extends TranslationsSettingsWalletEn {
|
||||||
|
_TranslationsSettingsWalletPt._(TranslationsPt root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsPt _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get connect_wallet => 'Conectar carteira (NWC nwc://)';
|
||||||
|
@override String get disconnect_wallet => 'Desconectar carteira';
|
||||||
|
@override late final _TranslationsSettingsWalletErrorPt error = _TranslationsSettingsWalletErrorPt._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login.error
|
// Path: login.error
|
||||||
@ -319,9 +347,9 @@ class _TranslationsStreamChatRaidPt extends TranslationsStreamChatRaidEn {
|
|||||||
@override String countdown({required Object time}) => 'Incursões em ${time}';
|
@override String countdown({required Object time}) => 'Incursões em ${time}';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit.error
|
// Path: settings.profile.error
|
||||||
class _TranslationsProfileEditErrorPt extends TranslationsProfileEditErrorEn {
|
class _TranslationsSettingsProfileErrorPt extends TranslationsSettingsProfileErrorEn {
|
||||||
_TranslationsProfileEditErrorPt._(TranslationsPt root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileErrorPt._(TranslationsPt root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsPt _root; // ignore: unused_field
|
final TranslationsPt _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -329,6 +357,16 @@ class _TranslationsProfileEditErrorPt extends TranslationsProfileEditErrorEn {
|
|||||||
@override String get logged_out => 'Não é possível editar o perfil quando se está desconectado';
|
@override String get logged_out => 'Não é possível editar o perfil quando se está desconectado';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet.error
|
||||||
|
class _TranslationsSettingsWalletErrorPt extends TranslationsSettingsWalletErrorEn {
|
||||||
|
_TranslationsSettingsWalletErrorPt._(TranslationsPt root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsPt _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get logged_out => 'Não consigo conectar a carteira quando estou desconectado';
|
||||||
|
}
|
||||||
|
|
||||||
/// Flat map(s) containing all translations.
|
/// Flat map(s) containing all translations.
|
||||||
/// Only for edge cases! For simple maps, use the map function of this library.
|
/// Only for edge cases! For simple maps, use the map function of this library.
|
||||||
extension on TranslationsPt {
|
extension on TranslationsPt {
|
||||||
@ -381,6 +419,8 @@ extension on TranslationsPt {
|
|||||||
case 'button.unmute': return 'Desmutar';
|
case 'button.unmute': return 'Desmutar';
|
||||||
case 'button.share': return 'Compartilhar';
|
case 'button.share': return 'Compartilhar';
|
||||||
case 'button.save': return 'Salvar';
|
case 'button.save': return 'Salvar';
|
||||||
|
case 'button.connect': return 'Conectar';
|
||||||
|
case 'button.settings': return 'Configurações';
|
||||||
case 'embed.article_by': return ({required Object name}) => 'Artigo de ${name}';
|
case 'embed.article_by': return ({required Object name}) => 'Artigo de ${name}';
|
||||||
case 'embed.note_by': return ({required Object name}) => 'Nota de ${name}';
|
case 'embed.note_by': return ({required Object name}) => 'Nota de ${name}';
|
||||||
case 'embed.live_stream_by': return ({required Object name}) => 'Transmissão ao vivo pelo site ${name}';
|
case 'embed.live_stream_by': return ({required Object name}) => 'Transmissão ao vivo pelo site ${name}';
|
||||||
@ -395,16 +435,22 @@ extension on TranslationsPt {
|
|||||||
case 'zap.button_zap_ready': return ({required Object amount}) => 'Enviar Zap de ${amount} sats';
|
case 'zap.button_zap_ready': return ({required Object amount}) => 'Enviar Zap de ${amount} sats';
|
||||||
case 'zap.button_zap': return 'Zap';
|
case 'zap.button_zap': return 'Zap';
|
||||||
case 'zap.button_open_wallet': return 'Abrir na carteira';
|
case 'zap.button_open_wallet': return 'Abrir na carteira';
|
||||||
|
case 'zap.button_connect_wallet': return 'Conectar carteira';
|
||||||
case 'zap.copy': return 'Copiado para a área de transferência';
|
case 'zap.copy': return 'Copiado para a área de transferência';
|
||||||
case 'zap.error.invalid_custom_amount': return 'Valor personalizado inválido';
|
case 'zap.error.invalid_custom_amount': return 'Valor personalizado inválido';
|
||||||
case 'zap.error.no_wallet': return 'Nenhuma carteira lightning instalada';
|
case 'zap.error.no_wallet': return 'Nenhuma carteira lightning instalada';
|
||||||
case 'zap.error.no_lud16': return 'Nenhum endereço de raio encontrado';
|
case 'zap.error.no_lud16': return 'Nenhum endereço de raio encontrado';
|
||||||
case 'profile.past_streams': return 'Transmissões Passadas';
|
case 'profile.past_streams': return 'Transmissões Passadas';
|
||||||
case 'profile.edit.display_name': return 'Nome de exibição';
|
case 'settings.button_profile': return 'Editar perfil';
|
||||||
case 'profile.edit.about': return 'Sobre';
|
case 'settings.button_wallet': return 'Configurações da carteira';
|
||||||
case 'profile.edit.nip05': return 'Endereço do Nostr';
|
case 'settings.profile.display_name': return 'Nome de exibição';
|
||||||
case 'profile.edit.lud16': return 'Endereço Lightning';
|
case 'settings.profile.about': return 'Sobre';
|
||||||
case 'profile.edit.error.logged_out': return 'Não é possível editar o perfil quando se está desconectado';
|
case 'settings.profile.nip05': return 'Endereço Nostr';
|
||||||
|
case 'settings.profile.lud16': return 'Endereço para relâmpagos';
|
||||||
|
case 'settings.profile.error.logged_out': return 'Não é possível editar o perfil quando se está desconectado';
|
||||||
|
case 'settings.wallet.connect_wallet': return 'Conectar carteira (NWC nwc://)';
|
||||||
|
case 'settings.wallet.disconnect_wallet': return 'Desconectar carteira';
|
||||||
|
case 'settings.wallet.error.logged_out': return 'Não consigo conectar a carteira quando estou desconectado';
|
||||||
case 'login.username': return 'Nome de usuário';
|
case 'login.username': return 'Nome de usuário';
|
||||||
case 'login.amber': return 'Faça login com o Amber';
|
case 'login.amber': return 'Faça login com o Amber';
|
||||||
case 'login.key': return 'Login com chave';
|
case 'login.key': return 'Login com chave';
|
||||||
|
@ -67,6 +67,7 @@ class TranslationsRo extends Translations {
|
|||||||
|
|
||||||
@override late final _TranslationsZapRo zap = _TranslationsZapRo._(_root);
|
@override late final _TranslationsZapRo zap = _TranslationsZapRo._(_root);
|
||||||
@override late final _TranslationsProfileRo profile = _TranslationsProfileRo._(_root);
|
@override late final _TranslationsProfileRo profile = _TranslationsProfileRo._(_root);
|
||||||
|
@override late final _TranslationsSettingsRo settings = _TranslationsSettingsRo._(_root);
|
||||||
@override late final _TranslationsLoginRo login = _TranslationsLoginRo._(_root);
|
@override late final _TranslationsLoginRo login = _TranslationsLoginRo._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -118,6 +119,8 @@ class _TranslationsButtonRo extends TranslationsButtonEn {
|
|||||||
@override String get unmute => 'Dezactivați';
|
@override String get unmute => 'Dezactivați';
|
||||||
@override String get share => 'Share';
|
@override String get share => 'Share';
|
||||||
@override String get save => 'Salvați';
|
@override String get save => 'Salvați';
|
||||||
|
@override String get connect => 'Conectare';
|
||||||
|
@override String get settings => 'Setări';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: embed
|
// Path: embed
|
||||||
@ -159,6 +162,7 @@ class _TranslationsZapRo extends TranslationsZapEn {
|
|||||||
@override String button_zap_ready({required Object amount}) => 'Zap ${amount} sats';
|
@override String button_zap_ready({required Object amount}) => 'Zap ${amount} sats';
|
||||||
@override String get button_zap => 'Zap';
|
@override String get button_zap => 'Zap';
|
||||||
@override String get button_open_wallet => 'Deschide în portofel';
|
@override String get button_open_wallet => 'Deschide în portofel';
|
||||||
|
@override String get button_connect_wallet => 'Conectați portofelul';
|
||||||
@override String get copy => 'Copiat în clipboard';
|
@override String get copy => 'Copiat în clipboard';
|
||||||
@override late final _TranslationsZapErrorRo error = _TranslationsZapErrorRo._(_root);
|
@override late final _TranslationsZapErrorRo error = _TranslationsZapErrorRo._(_root);
|
||||||
}
|
}
|
||||||
@ -171,7 +175,19 @@ class _TranslationsProfileRo extends TranslationsProfileEn {
|
|||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
@override String get past_streams => 'Fluxuri trecute';
|
@override String get past_streams => 'Fluxuri trecute';
|
||||||
@override late final _TranslationsProfileEditRo edit = _TranslationsProfileEditRo._(_root);
|
}
|
||||||
|
|
||||||
|
// Path: settings
|
||||||
|
class _TranslationsSettingsRo extends TranslationsSettingsEn {
|
||||||
|
_TranslationsSettingsRo._(TranslationsRo root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsRo _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get button_profile => 'Editare profil';
|
||||||
|
@override String get button_wallet => 'Setări portofel';
|
||||||
|
@override late final _TranslationsSettingsProfileRo profile = _TranslationsSettingsProfileRo._(_root);
|
||||||
|
@override late final _TranslationsSettingsWalletRo wallet = _TranslationsSettingsWalletRo._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login
|
// Path: login
|
||||||
@ -247,9 +263,9 @@ class _TranslationsZapErrorRo extends TranslationsZapErrorEn {
|
|||||||
@override String get no_lud16 => 'Nu a fost găsită nicio adresă de fulgere';
|
@override String get no_lud16 => 'Nu a fost găsită nicio adresă de fulgere';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit
|
// Path: settings.profile
|
||||||
class _TranslationsProfileEditRo extends TranslationsProfileEditEn {
|
class _TranslationsSettingsProfileRo extends TranslationsSettingsProfileEn {
|
||||||
_TranslationsProfileEditRo._(TranslationsRo root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileRo._(TranslationsRo root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsRo _root; // ignore: unused_field
|
final TranslationsRo _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -258,7 +274,19 @@ class _TranslationsProfileEditRo extends TranslationsProfileEditEn {
|
|||||||
@override String get about => 'Despre';
|
@override String get about => 'Despre';
|
||||||
@override String get nip05 => 'Adresa Nostr';
|
@override String get nip05 => 'Adresa Nostr';
|
||||||
@override String get lud16 => 'Adresa fulgerului';
|
@override String get lud16 => 'Adresa fulgerului';
|
||||||
@override late final _TranslationsProfileEditErrorRo error = _TranslationsProfileEditErrorRo._(_root);
|
@override late final _TranslationsSettingsProfileErrorRo error = _TranslationsSettingsProfileErrorRo._(_root);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet
|
||||||
|
class _TranslationsSettingsWalletRo extends TranslationsSettingsWalletEn {
|
||||||
|
_TranslationsSettingsWalletRo._(TranslationsRo root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsRo _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get connect_wallet => 'Conectați portofelul (NWC nwc://)';
|
||||||
|
@override String get disconnect_wallet => 'Deconectați portofelul';
|
||||||
|
@override late final _TranslationsSettingsWalletErrorRo error = _TranslationsSettingsWalletErrorRo._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login.error
|
// Path: login.error
|
||||||
@ -319,9 +347,9 @@ class _TranslationsStreamChatRaidRo extends TranslationsStreamChatRaidEn {
|
|||||||
@override String countdown({required Object time}) => 'Raiduri în ${time}';
|
@override String countdown({required Object time}) => 'Raiduri în ${time}';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit.error
|
// Path: settings.profile.error
|
||||||
class _TranslationsProfileEditErrorRo extends TranslationsProfileEditErrorEn {
|
class _TranslationsSettingsProfileErrorRo extends TranslationsSettingsProfileErrorEn {
|
||||||
_TranslationsProfileEditErrorRo._(TranslationsRo root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileErrorRo._(TranslationsRo root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsRo _root; // ignore: unused_field
|
final TranslationsRo _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -329,6 +357,16 @@ class _TranslationsProfileEditErrorRo extends TranslationsProfileEditErrorEn {
|
|||||||
@override String get logged_out => 'Nu pot edita profilul când sunt deconectat';
|
@override String get logged_out => 'Nu pot edita profilul când sunt deconectat';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet.error
|
||||||
|
class _TranslationsSettingsWalletErrorRo extends TranslationsSettingsWalletErrorEn {
|
||||||
|
_TranslationsSettingsWalletErrorRo._(TranslationsRo root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsRo _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get logged_out => 'Nu puteți conecta portofelul atunci când sunteți deconectat';
|
||||||
|
}
|
||||||
|
|
||||||
/// Flat map(s) containing all translations.
|
/// Flat map(s) containing all translations.
|
||||||
/// Only for edge cases! For simple maps, use the map function of this library.
|
/// Only for edge cases! For simple maps, use the map function of this library.
|
||||||
extension on TranslationsRo {
|
extension on TranslationsRo {
|
||||||
@ -381,6 +419,8 @@ extension on TranslationsRo {
|
|||||||
case 'button.unmute': return 'Dezactivați';
|
case 'button.unmute': return 'Dezactivați';
|
||||||
case 'button.share': return 'Share';
|
case 'button.share': return 'Share';
|
||||||
case 'button.save': return 'Salvați';
|
case 'button.save': return 'Salvați';
|
||||||
|
case 'button.connect': return 'Conectare';
|
||||||
|
case 'button.settings': return 'Setări';
|
||||||
case 'embed.article_by': return ({required Object name}) => 'Articol de ${name}';
|
case 'embed.article_by': return ({required Object name}) => 'Articol de ${name}';
|
||||||
case 'embed.note_by': return ({required Object name}) => 'Notă de la ${name}';
|
case 'embed.note_by': return ({required Object name}) => 'Notă de la ${name}';
|
||||||
case 'embed.live_stream_by': return ({required Object name}) => 'Transmisiune live prin ${name}';
|
case 'embed.live_stream_by': return ({required Object name}) => 'Transmisiune live prin ${name}';
|
||||||
@ -395,16 +435,22 @@ extension on TranslationsRo {
|
|||||||
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zap ${amount} sats';
|
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zap ${amount} sats';
|
||||||
case 'zap.button_zap': return 'Zap';
|
case 'zap.button_zap': return 'Zap';
|
||||||
case 'zap.button_open_wallet': return 'Deschide în portofel';
|
case 'zap.button_open_wallet': return 'Deschide în portofel';
|
||||||
|
case 'zap.button_connect_wallet': return 'Conectați portofelul';
|
||||||
case 'zap.copy': return 'Copiat în clipboard';
|
case 'zap.copy': return 'Copiat în clipboard';
|
||||||
case 'zap.error.invalid_custom_amount': return 'Sumă personalizată invalidă';
|
case 'zap.error.invalid_custom_amount': return 'Sumă personalizată invalidă';
|
||||||
case 'zap.error.no_wallet': return 'Nu este instalat niciun portofel Lightning';
|
case 'zap.error.no_wallet': return 'Nu este instalat niciun portofel Lightning';
|
||||||
case 'zap.error.no_lud16': return 'Nu a fost găsită nicio adresă de fulgere';
|
case 'zap.error.no_lud16': return 'Nu a fost găsită nicio adresă de fulgere';
|
||||||
case 'profile.past_streams': return 'Fluxuri trecute';
|
case 'profile.past_streams': return 'Fluxuri trecute';
|
||||||
case 'profile.edit.display_name': return 'Nume afișat';
|
case 'settings.button_profile': return 'Editare profil';
|
||||||
case 'profile.edit.about': return 'Despre';
|
case 'settings.button_wallet': return 'Setări portofel';
|
||||||
case 'profile.edit.nip05': return 'Adresa Nostr';
|
case 'settings.profile.display_name': return 'Nume afișat';
|
||||||
case 'profile.edit.lud16': return 'Adresa fulgerului';
|
case 'settings.profile.about': return 'Despre';
|
||||||
case 'profile.edit.error.logged_out': return 'Nu pot edita profilul când sunt deconectat';
|
case 'settings.profile.nip05': return 'Adresa Nostr';
|
||||||
|
case 'settings.profile.lud16': return 'Adresa fulgerului';
|
||||||
|
case 'settings.profile.error.logged_out': return 'Nu pot edita profilul când sunt deconectat';
|
||||||
|
case 'settings.wallet.connect_wallet': return 'Conectați portofelul (NWC nwc://)';
|
||||||
|
case 'settings.wallet.disconnect_wallet': return 'Deconectați portofelul';
|
||||||
|
case 'settings.wallet.error.logged_out': return 'Nu puteți conecta portofelul atunci când sunteți deconectat';
|
||||||
case 'login.username': return 'Nume utilizator';
|
case 'login.username': return 'Nume utilizator';
|
||||||
case 'login.amber': return 'Conectați-vă cu Amber';
|
case 'login.amber': return 'Conectați-vă cu Amber';
|
||||||
case 'login.key': return 'Autentificare cu cheie';
|
case 'login.key': return 'Autentificare cu cheie';
|
||||||
|
@ -67,6 +67,7 @@ class TranslationsRu extends Translations {
|
|||||||
|
|
||||||
@override late final _TranslationsZapRu zap = _TranslationsZapRu._(_root);
|
@override late final _TranslationsZapRu zap = _TranslationsZapRu._(_root);
|
||||||
@override late final _TranslationsProfileRu profile = _TranslationsProfileRu._(_root);
|
@override late final _TranslationsProfileRu profile = _TranslationsProfileRu._(_root);
|
||||||
|
@override late final _TranslationsSettingsRu settings = _TranslationsSettingsRu._(_root);
|
||||||
@override late final _TranslationsLoginRu login = _TranslationsLoginRu._(_root);
|
@override late final _TranslationsLoginRu login = _TranslationsLoginRu._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -118,6 +119,8 @@ class _TranslationsButtonRu extends TranslationsButtonEn {
|
|||||||
@override String get unmute => 'Включить уведомления';
|
@override String get unmute => 'Включить уведомления';
|
||||||
@override String get share => 'Поделиться';
|
@override String get share => 'Поделиться';
|
||||||
@override String get save => 'Сохранить';
|
@override String get save => 'Сохранить';
|
||||||
|
@override String get connect => 'Подключайтесь';
|
||||||
|
@override String get settings => 'Настройки';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: embed
|
// Path: embed
|
||||||
@ -159,6 +162,7 @@ class _TranslationsZapRu extends TranslationsZapEn {
|
|||||||
@override String button_zap_ready({required Object amount}) => 'Запнуть ${amount} сат';
|
@override String button_zap_ready({required Object amount}) => 'Запнуть ${amount} сат';
|
||||||
@override String get button_zap => 'Зап';
|
@override String get button_zap => 'Зап';
|
||||||
@override String get button_open_wallet => 'Открыть в кошельке';
|
@override String get button_open_wallet => 'Открыть в кошельке';
|
||||||
|
@override String get button_connect_wallet => 'Подключить кошелек';
|
||||||
@override String get copy => 'Скопировано в буфер обмена';
|
@override String get copy => 'Скопировано в буфер обмена';
|
||||||
@override late final _TranslationsZapErrorRu error = _TranslationsZapErrorRu._(_root);
|
@override late final _TranslationsZapErrorRu error = _TranslationsZapErrorRu._(_root);
|
||||||
}
|
}
|
||||||
@ -171,7 +175,19 @@ class _TranslationsProfileRu extends TranslationsProfileEn {
|
|||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
@override String get past_streams => 'Предыдущие трансляции';
|
@override String get past_streams => 'Предыдущие трансляции';
|
||||||
@override late final _TranslationsProfileEditRu edit = _TranslationsProfileEditRu._(_root);
|
}
|
||||||
|
|
||||||
|
// Path: settings
|
||||||
|
class _TranslationsSettingsRu extends TranslationsSettingsEn {
|
||||||
|
_TranslationsSettingsRu._(TranslationsRu root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsRu _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get button_profile => 'Редактировать профиль';
|
||||||
|
@override String get button_wallet => 'Настройки кошелька';
|
||||||
|
@override late final _TranslationsSettingsProfileRu profile = _TranslationsSettingsProfileRu._(_root);
|
||||||
|
@override late final _TranslationsSettingsWalletRu wallet = _TranslationsSettingsWalletRu._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login
|
// Path: login
|
||||||
@ -247,18 +263,30 @@ class _TranslationsZapErrorRu extends TranslationsZapErrorEn {
|
|||||||
@override String get no_lud16 => 'Адрес молнии не найден';
|
@override String get no_lud16 => 'Адрес молнии не найден';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit
|
// Path: settings.profile
|
||||||
class _TranslationsProfileEditRu extends TranslationsProfileEditEn {
|
class _TranslationsSettingsProfileRu extends TranslationsSettingsProfileEn {
|
||||||
_TranslationsProfileEditRu._(TranslationsRu root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileRu._(TranslationsRu root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsRu _root; // ignore: unused_field
|
final TranslationsRu _root; // ignore: unused_field
|
||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
@override String get display_name => 'Отображаемое имя';
|
@override String get display_name => 'Отображаемое имя';
|
||||||
@override String get about => 'О себе';
|
@override String get about => 'О сайте';
|
||||||
@override String get nip05 => 'Nostr адрес';
|
@override String get nip05 => 'Адрес Ностр';
|
||||||
@override String get lud16 => 'Lightning Адрес';
|
@override String get lud16 => 'Адрес молнии';
|
||||||
@override late final _TranslationsProfileEditErrorRu error = _TranslationsProfileEditErrorRu._(_root);
|
@override late final _TranslationsSettingsProfileErrorRu error = _TranslationsSettingsProfileErrorRu._(_root);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet
|
||||||
|
class _TranslationsSettingsWalletRu extends TranslationsSettingsWalletEn {
|
||||||
|
_TranslationsSettingsWalletRu._(TranslationsRu root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsRu _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get connect_wallet => 'Подключите кошелек (NWC nwc://)';
|
||||||
|
@override String get disconnect_wallet => 'Отключить кошелек';
|
||||||
|
@override late final _TranslationsSettingsWalletErrorRu error = _TranslationsSettingsWalletErrorRu._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login.error
|
// Path: login.error
|
||||||
@ -319,9 +347,9 @@ class _TranslationsStreamChatRaidRu extends TranslationsStreamChatRaidEn {
|
|||||||
@override String countdown({required Object time}) => 'Рейды в ${time}';
|
@override String countdown({required Object time}) => 'Рейды в ${time}';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit.error
|
// Path: settings.profile.error
|
||||||
class _TranslationsProfileEditErrorRu extends TranslationsProfileEditErrorEn {
|
class _TranslationsSettingsProfileErrorRu extends TranslationsSettingsProfileErrorEn {
|
||||||
_TranslationsProfileEditErrorRu._(TranslationsRu root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileErrorRu._(TranslationsRu root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsRu _root; // ignore: unused_field
|
final TranslationsRu _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -329,6 +357,16 @@ class _TranslationsProfileEditErrorRu extends TranslationsProfileEditErrorEn {
|
|||||||
@override String get logged_out => 'Невозможно редактировать профиль при выходе из системы';
|
@override String get logged_out => 'Невозможно редактировать профиль при выходе из системы';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet.error
|
||||||
|
class _TranslationsSettingsWalletErrorRu extends TranslationsSettingsWalletErrorEn {
|
||||||
|
_TranslationsSettingsWalletErrorRu._(TranslationsRu root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsRu _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get logged_out => 'Невозможно подключить кошелек при выходе из системы';
|
||||||
|
}
|
||||||
|
|
||||||
/// Flat map(s) containing all translations.
|
/// Flat map(s) containing all translations.
|
||||||
/// Only for edge cases! For simple maps, use the map function of this library.
|
/// Only for edge cases! For simple maps, use the map function of this library.
|
||||||
extension on TranslationsRu {
|
extension on TranslationsRu {
|
||||||
@ -381,6 +419,8 @@ extension on TranslationsRu {
|
|||||||
case 'button.unmute': return 'Включить уведомления';
|
case 'button.unmute': return 'Включить уведомления';
|
||||||
case 'button.share': return 'Поделиться';
|
case 'button.share': return 'Поделиться';
|
||||||
case 'button.save': return 'Сохранить';
|
case 'button.save': return 'Сохранить';
|
||||||
|
case 'button.connect': return 'Подключайтесь';
|
||||||
|
case 'button.settings': return 'Настройки';
|
||||||
case 'embed.article_by': return ({required Object name}) => 'Статья ${name}';
|
case 'embed.article_by': return ({required Object name}) => 'Статья ${name}';
|
||||||
case 'embed.note_by': return ({required Object name}) => 'Заметка на сайте ${name}';
|
case 'embed.note_by': return ({required Object name}) => 'Заметка на сайте ${name}';
|
||||||
case 'embed.live_stream_by': return ({required Object name}) => 'Прямая трансляция: ${name}';
|
case 'embed.live_stream_by': return ({required Object name}) => 'Прямая трансляция: ${name}';
|
||||||
@ -395,16 +435,22 @@ extension on TranslationsRu {
|
|||||||
case 'zap.button_zap_ready': return ({required Object amount}) => 'Запнуть ${amount} сат';
|
case 'zap.button_zap_ready': return ({required Object amount}) => 'Запнуть ${amount} сат';
|
||||||
case 'zap.button_zap': return 'Зап';
|
case 'zap.button_zap': return 'Зап';
|
||||||
case 'zap.button_open_wallet': return 'Открыть в кошельке';
|
case 'zap.button_open_wallet': return 'Открыть в кошельке';
|
||||||
|
case 'zap.button_connect_wallet': return 'Подключить кошелек';
|
||||||
case 'zap.copy': return 'Скопировано в буфер обмена';
|
case 'zap.copy': return 'Скопировано в буфер обмена';
|
||||||
case 'zap.error.invalid_custom_amount': return 'Недопустимая пользовательская сумма';
|
case 'zap.error.invalid_custom_amount': return 'Недопустимая пользовательская сумма';
|
||||||
case 'zap.error.no_wallet': return 'Кошелек молнии не установлен';
|
case 'zap.error.no_wallet': return 'Кошелек молнии не установлен';
|
||||||
case 'zap.error.no_lud16': return 'Адрес молнии не найден';
|
case 'zap.error.no_lud16': return 'Адрес молнии не найден';
|
||||||
case 'profile.past_streams': return 'Предыдущие трансляции';
|
case 'profile.past_streams': return 'Предыдущие трансляции';
|
||||||
case 'profile.edit.display_name': return 'Отображаемое имя';
|
case 'settings.button_profile': return 'Редактировать профиль';
|
||||||
case 'profile.edit.about': return 'О себе';
|
case 'settings.button_wallet': return 'Настройки кошелька';
|
||||||
case 'profile.edit.nip05': return 'Nostr адрес';
|
case 'settings.profile.display_name': return 'Отображаемое имя';
|
||||||
case 'profile.edit.lud16': return 'Lightning Адрес';
|
case 'settings.profile.about': return 'О сайте';
|
||||||
case 'profile.edit.error.logged_out': return 'Невозможно редактировать профиль при выходе из системы';
|
case 'settings.profile.nip05': return 'Адрес Ностр';
|
||||||
|
case 'settings.profile.lud16': return 'Адрес молнии';
|
||||||
|
case 'settings.profile.error.logged_out': return 'Невозможно редактировать профиль при выходе из системы';
|
||||||
|
case 'settings.wallet.connect_wallet': return 'Подключите кошелек (NWC nwc://)';
|
||||||
|
case 'settings.wallet.disconnect_wallet': return 'Отключить кошелек';
|
||||||
|
case 'settings.wallet.error.logged_out': return 'Невозможно подключить кошелек при выходе из системы';
|
||||||
case 'login.username': return 'Имя пользователя';
|
case 'login.username': return 'Имя пользователя';
|
||||||
case 'login.amber': return 'Войти с помощью Amber';
|
case 'login.amber': return 'Войти с помощью Amber';
|
||||||
case 'login.key': return 'Вход в систему с помощью ключа';
|
case 'login.key': return 'Вход в систему с помощью ключа';
|
||||||
|
@ -67,6 +67,7 @@ class TranslationsSr extends Translations {
|
|||||||
|
|
||||||
@override late final _TranslationsZapSr zap = _TranslationsZapSr._(_root);
|
@override late final _TranslationsZapSr zap = _TranslationsZapSr._(_root);
|
||||||
@override late final _TranslationsProfileSr profile = _TranslationsProfileSr._(_root);
|
@override late final _TranslationsProfileSr profile = _TranslationsProfileSr._(_root);
|
||||||
|
@override late final _TranslationsSettingsSr settings = _TranslationsSettingsSr._(_root);
|
||||||
@override late final _TranslationsLoginSr login = _TranslationsLoginSr._(_root);
|
@override late final _TranslationsLoginSr login = _TranslationsLoginSr._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -118,6 +119,8 @@ class _TranslationsButtonSr extends TranslationsButtonEn {
|
|||||||
@override String get unmute => 'Unmute';
|
@override String get unmute => 'Unmute';
|
||||||
@override String get share => 'Share';
|
@override String get share => 'Share';
|
||||||
@override String get save => 'Save';
|
@override String get save => 'Save';
|
||||||
|
@override String get connect => 'Connect';
|
||||||
|
@override String get settings => 'Settings';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: embed
|
// Path: embed
|
||||||
@ -159,6 +162,7 @@ class _TranslationsZapSr extends TranslationsZapEn {
|
|||||||
@override String button_zap_ready({required Object amount}) => 'Zap ${amount} sats';
|
@override String button_zap_ready({required Object amount}) => 'Zap ${amount} sats';
|
||||||
@override String get button_zap => 'Zap';
|
@override String get button_zap => 'Zap';
|
||||||
@override String get button_open_wallet => 'Open in Wallet';
|
@override String get button_open_wallet => 'Open in Wallet';
|
||||||
|
@override String get button_connect_wallet => 'Connect Wallet';
|
||||||
@override String get copy => 'Copied to clipboard';
|
@override String get copy => 'Copied to clipboard';
|
||||||
@override late final _TranslationsZapErrorSr error = _TranslationsZapErrorSr._(_root);
|
@override late final _TranslationsZapErrorSr error = _TranslationsZapErrorSr._(_root);
|
||||||
}
|
}
|
||||||
@ -171,7 +175,19 @@ class _TranslationsProfileSr extends TranslationsProfileEn {
|
|||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
@override String get past_streams => 'Past Streams';
|
@override String get past_streams => 'Past Streams';
|
||||||
@override late final _TranslationsProfileEditSr edit = _TranslationsProfileEditSr._(_root);
|
}
|
||||||
|
|
||||||
|
// Path: settings
|
||||||
|
class _TranslationsSettingsSr extends TranslationsSettingsEn {
|
||||||
|
_TranslationsSettingsSr._(TranslationsSr root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsSr _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get button_profile => 'Edit Profile';
|
||||||
|
@override String get button_wallet => 'Wallet Settings';
|
||||||
|
@override late final _TranslationsSettingsProfileSr profile = _TranslationsSettingsProfileSr._(_root);
|
||||||
|
@override late final _TranslationsSettingsWalletSr wallet = _TranslationsSettingsWalletSr._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login
|
// Path: login
|
||||||
@ -247,9 +263,9 @@ class _TranslationsZapErrorSr extends TranslationsZapErrorEn {
|
|||||||
@override String get no_lud16 => 'No lightning address found';
|
@override String get no_lud16 => 'No lightning address found';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit
|
// Path: settings.profile
|
||||||
class _TranslationsProfileEditSr extends TranslationsProfileEditEn {
|
class _TranslationsSettingsProfileSr extends TranslationsSettingsProfileEn {
|
||||||
_TranslationsProfileEditSr._(TranslationsSr root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileSr._(TranslationsSr root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsSr _root; // ignore: unused_field
|
final TranslationsSr _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -258,7 +274,19 @@ class _TranslationsProfileEditSr extends TranslationsProfileEditEn {
|
|||||||
@override String get about => 'About';
|
@override String get about => 'About';
|
||||||
@override String get nip05 => 'Nostr Address';
|
@override String get nip05 => 'Nostr Address';
|
||||||
@override String get lud16 => 'Lightning Address';
|
@override String get lud16 => 'Lightning Address';
|
||||||
@override late final _TranslationsProfileEditErrorSr error = _TranslationsProfileEditErrorSr._(_root);
|
@override late final _TranslationsSettingsProfileErrorSr error = _TranslationsSettingsProfileErrorSr._(_root);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet
|
||||||
|
class _TranslationsSettingsWalletSr extends TranslationsSettingsWalletEn {
|
||||||
|
_TranslationsSettingsWalletSr._(TranslationsSr root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsSr _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get connect_wallet => 'Connect Wallet (NWC nwc://)';
|
||||||
|
@override String get disconnect_wallet => 'Disconnect Wallet';
|
||||||
|
@override late final _TranslationsSettingsWalletErrorSr error = _TranslationsSettingsWalletErrorSr._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login.error
|
// Path: login.error
|
||||||
@ -319,9 +347,9 @@ class _TranslationsStreamChatRaidSr extends TranslationsStreamChatRaidEn {
|
|||||||
@override String countdown({required Object time}) => 'Raiding in ${time}';
|
@override String countdown({required Object time}) => 'Raiding in ${time}';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit.error
|
// Path: settings.profile.error
|
||||||
class _TranslationsProfileEditErrorSr extends TranslationsProfileEditErrorEn {
|
class _TranslationsSettingsProfileErrorSr extends TranslationsSettingsProfileErrorEn {
|
||||||
_TranslationsProfileEditErrorSr._(TranslationsSr root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileErrorSr._(TranslationsSr root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsSr _root; // ignore: unused_field
|
final TranslationsSr _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -329,6 +357,16 @@ class _TranslationsProfileEditErrorSr extends TranslationsProfileEditErrorEn {
|
|||||||
@override String get logged_out => 'Cant edit profile when logged out';
|
@override String get logged_out => 'Cant edit profile when logged out';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet.error
|
||||||
|
class _TranslationsSettingsWalletErrorSr extends TranslationsSettingsWalletErrorEn {
|
||||||
|
_TranslationsSettingsWalletErrorSr._(TranslationsSr root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsSr _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get logged_out => 'Cant connect wallet when logged out';
|
||||||
|
}
|
||||||
|
|
||||||
/// Flat map(s) containing all translations.
|
/// Flat map(s) containing all translations.
|
||||||
/// Only for edge cases! For simple maps, use the map function of this library.
|
/// Only for edge cases! For simple maps, use the map function of this library.
|
||||||
extension on TranslationsSr {
|
extension on TranslationsSr {
|
||||||
@ -381,6 +419,8 @@ extension on TranslationsSr {
|
|||||||
case 'button.unmute': return 'Unmute';
|
case 'button.unmute': return 'Unmute';
|
||||||
case 'button.share': return 'Share';
|
case 'button.share': return 'Share';
|
||||||
case 'button.save': return 'Save';
|
case 'button.save': return 'Save';
|
||||||
|
case 'button.connect': return 'Connect';
|
||||||
|
case 'button.settings': return 'Settings';
|
||||||
case 'embed.article_by': return ({required Object name}) => 'Article by ${name}';
|
case 'embed.article_by': return ({required Object name}) => 'Article by ${name}';
|
||||||
case 'embed.note_by': return ({required Object name}) => 'Note by ${name}';
|
case 'embed.note_by': return ({required Object name}) => 'Note by ${name}';
|
||||||
case 'embed.live_stream_by': return ({required Object name}) => 'Live stream by ${name}';
|
case 'embed.live_stream_by': return ({required Object name}) => 'Live stream by ${name}';
|
||||||
@ -395,16 +435,22 @@ extension on TranslationsSr {
|
|||||||
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zap ${amount} sats';
|
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zap ${amount} sats';
|
||||||
case 'zap.button_zap': return 'Zap';
|
case 'zap.button_zap': return 'Zap';
|
||||||
case 'zap.button_open_wallet': return 'Open in Wallet';
|
case 'zap.button_open_wallet': return 'Open in Wallet';
|
||||||
|
case 'zap.button_connect_wallet': return 'Connect Wallet';
|
||||||
case 'zap.copy': return 'Copied to clipboard';
|
case 'zap.copy': return 'Copied to clipboard';
|
||||||
case 'zap.error.invalid_custom_amount': return 'Invalid custom amount';
|
case 'zap.error.invalid_custom_amount': return 'Invalid custom amount';
|
||||||
case 'zap.error.no_wallet': return 'No lightning wallet installed';
|
case 'zap.error.no_wallet': return 'No lightning wallet installed';
|
||||||
case 'zap.error.no_lud16': return 'No lightning address found';
|
case 'zap.error.no_lud16': return 'No lightning address found';
|
||||||
case 'profile.past_streams': return 'Past Streams';
|
case 'profile.past_streams': return 'Past Streams';
|
||||||
case 'profile.edit.display_name': return 'Display Name';
|
case 'settings.button_profile': return 'Edit Profile';
|
||||||
case 'profile.edit.about': return 'About';
|
case 'settings.button_wallet': return 'Wallet Settings';
|
||||||
case 'profile.edit.nip05': return 'Nostr Address';
|
case 'settings.profile.display_name': return 'Display Name';
|
||||||
case 'profile.edit.lud16': return 'Lightning Address';
|
case 'settings.profile.about': return 'About';
|
||||||
case 'profile.edit.error.logged_out': return 'Cant edit profile when logged out';
|
case 'settings.profile.nip05': return 'Nostr Address';
|
||||||
|
case 'settings.profile.lud16': return 'Lightning Address';
|
||||||
|
case 'settings.profile.error.logged_out': return 'Cant edit profile when logged out';
|
||||||
|
case 'settings.wallet.connect_wallet': return 'Connect Wallet (NWC nwc://)';
|
||||||
|
case 'settings.wallet.disconnect_wallet': return 'Disconnect Wallet';
|
||||||
|
case 'settings.wallet.error.logged_out': return 'Cant connect wallet when logged out';
|
||||||
case 'login.username': return 'Username';
|
case 'login.username': return 'Username';
|
||||||
case 'login.amber': return 'Login with Amber';
|
case 'login.amber': return 'Login with Amber';
|
||||||
case 'login.key': return 'Login with Key';
|
case 'login.key': return 'Login with Key';
|
||||||
|
@ -67,6 +67,7 @@ class TranslationsSv extends Translations {
|
|||||||
|
|
||||||
@override late final _TranslationsZapSv zap = _TranslationsZapSv._(_root);
|
@override late final _TranslationsZapSv zap = _TranslationsZapSv._(_root);
|
||||||
@override late final _TranslationsProfileSv profile = _TranslationsProfileSv._(_root);
|
@override late final _TranslationsProfileSv profile = _TranslationsProfileSv._(_root);
|
||||||
|
@override late final _TranslationsSettingsSv settings = _TranslationsSettingsSv._(_root);
|
||||||
@override late final _TranslationsLoginSv login = _TranslationsLoginSv._(_root);
|
@override late final _TranslationsLoginSv login = _TranslationsLoginSv._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -118,6 +119,8 @@ class _TranslationsButtonSv extends TranslationsButtonEn {
|
|||||||
@override String get unmute => 'Avtysta';
|
@override String get unmute => 'Avtysta';
|
||||||
@override String get share => 'Dela';
|
@override String get share => 'Dela';
|
||||||
@override String get save => 'Spara';
|
@override String get save => 'Spara';
|
||||||
|
@override String get connect => 'Anslut';
|
||||||
|
@override String get settings => 'Inställningar';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: embed
|
// Path: embed
|
||||||
@ -159,6 +162,7 @@ class _TranslationsZapSv extends TranslationsZapEn {
|
|||||||
@override String button_zap_ready({required Object amount}) => 'Zap ${amount} sats';
|
@override String button_zap_ready({required Object amount}) => 'Zap ${amount} sats';
|
||||||
@override String get button_zap => 'Zap';
|
@override String get button_zap => 'Zap';
|
||||||
@override String get button_open_wallet => 'Öppna i plånboken';
|
@override String get button_open_wallet => 'Öppna i plånboken';
|
||||||
|
@override String get button_connect_wallet => 'Anslut plånbok';
|
||||||
@override String get copy => 'Kopieras till urklipp';
|
@override String get copy => 'Kopieras till urklipp';
|
||||||
@override late final _TranslationsZapErrorSv error = _TranslationsZapErrorSv._(_root);
|
@override late final _TranslationsZapErrorSv error = _TranslationsZapErrorSv._(_root);
|
||||||
}
|
}
|
||||||
@ -171,7 +175,19 @@ class _TranslationsProfileSv extends TranslationsProfileEn {
|
|||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
@override String get past_streams => 'Tidigare streamar';
|
@override String get past_streams => 'Tidigare streamar';
|
||||||
@override late final _TranslationsProfileEditSv edit = _TranslationsProfileEditSv._(_root);
|
}
|
||||||
|
|
||||||
|
// Path: settings
|
||||||
|
class _TranslationsSettingsSv extends TranslationsSettingsEn {
|
||||||
|
_TranslationsSettingsSv._(TranslationsSv root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsSv _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get button_profile => 'Redigera profil';
|
||||||
|
@override String get button_wallet => 'Inställningar för plånbok';
|
||||||
|
@override late final _TranslationsSettingsProfileSv profile = _TranslationsSettingsProfileSv._(_root);
|
||||||
|
@override late final _TranslationsSettingsWalletSv wallet = _TranslationsSettingsWalletSv._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login
|
// Path: login
|
||||||
@ -247,9 +263,9 @@ class _TranslationsZapErrorSv extends TranslationsZapErrorEn {
|
|||||||
@override String get no_lud16 => 'Ingen blixtadress hittades';
|
@override String get no_lud16 => 'Ingen blixtadress hittades';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit
|
// Path: settings.profile
|
||||||
class _TranslationsProfileEditSv extends TranslationsProfileEditEn {
|
class _TranslationsSettingsProfileSv extends TranslationsSettingsProfileEn {
|
||||||
_TranslationsProfileEditSv._(TranslationsSv root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileSv._(TranslationsSv root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsSv _root; // ignore: unused_field
|
final TranslationsSv _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -257,8 +273,20 @@ class _TranslationsProfileEditSv extends TranslationsProfileEditEn {
|
|||||||
@override String get display_name => 'Visa namn';
|
@override String get display_name => 'Visa namn';
|
||||||
@override String get about => 'Om';
|
@override String get about => 'Om';
|
||||||
@override String get nip05 => 'Nostr Adress';
|
@override String get nip05 => 'Nostr Adress';
|
||||||
@override String get lud16 => 'Lightning-adress';
|
@override String get lud16 => 'Adress för blixtnedslag';
|
||||||
@override late final _TranslationsProfileEditErrorSv error = _TranslationsProfileEditErrorSv._(_root);
|
@override late final _TranslationsSettingsProfileErrorSv error = _TranslationsSettingsProfileErrorSv._(_root);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet
|
||||||
|
class _TranslationsSettingsWalletSv extends TranslationsSettingsWalletEn {
|
||||||
|
_TranslationsSettingsWalletSv._(TranslationsSv root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsSv _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get connect_wallet => 'Anslut plånbok (NWC nwc://)';
|
||||||
|
@override String get disconnect_wallet => 'Koppla bort plånboken';
|
||||||
|
@override late final _TranslationsSettingsWalletErrorSv error = _TranslationsSettingsWalletErrorSv._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login.error
|
// Path: login.error
|
||||||
@ -319,9 +347,9 @@ class _TranslationsStreamChatRaidSv extends TranslationsStreamChatRaidEn {
|
|||||||
@override String countdown({required Object time}) => 'Raiding på ${time}';
|
@override String countdown({required Object time}) => 'Raiding på ${time}';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit.error
|
// Path: settings.profile.error
|
||||||
class _TranslationsProfileEditErrorSv extends TranslationsProfileEditErrorEn {
|
class _TranslationsSettingsProfileErrorSv extends TranslationsSettingsProfileErrorEn {
|
||||||
_TranslationsProfileEditErrorSv._(TranslationsSv root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileErrorSv._(TranslationsSv root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsSv _root; // ignore: unused_field
|
final TranslationsSv _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -329,6 +357,16 @@ class _TranslationsProfileEditErrorSv extends TranslationsProfileEditErrorEn {
|
|||||||
@override String get logged_out => 'Kan inte redigera profil när jag är utloggad';
|
@override String get logged_out => 'Kan inte redigera profil när jag är utloggad';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet.error
|
||||||
|
class _TranslationsSettingsWalletErrorSv extends TranslationsSettingsWalletErrorEn {
|
||||||
|
_TranslationsSettingsWalletErrorSv._(TranslationsSv root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsSv _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get logged_out => 'Kan inte ansluta plånbok när du är inloggad';
|
||||||
|
}
|
||||||
|
|
||||||
/// Flat map(s) containing all translations.
|
/// Flat map(s) containing all translations.
|
||||||
/// Only for edge cases! For simple maps, use the map function of this library.
|
/// Only for edge cases! For simple maps, use the map function of this library.
|
||||||
extension on TranslationsSv {
|
extension on TranslationsSv {
|
||||||
@ -381,6 +419,8 @@ extension on TranslationsSv {
|
|||||||
case 'button.unmute': return 'Avtysta';
|
case 'button.unmute': return 'Avtysta';
|
||||||
case 'button.share': return 'Dela';
|
case 'button.share': return 'Dela';
|
||||||
case 'button.save': return 'Spara';
|
case 'button.save': return 'Spara';
|
||||||
|
case 'button.connect': return 'Anslut';
|
||||||
|
case 'button.settings': return 'Inställningar';
|
||||||
case 'embed.article_by': return ({required Object name}) => 'Artikel av ${name}';
|
case 'embed.article_by': return ({required Object name}) => 'Artikel av ${name}';
|
||||||
case 'embed.note_by': return ({required Object name}) => 'Anteckning av ${name}';
|
case 'embed.note_by': return ({required Object name}) => 'Anteckning av ${name}';
|
||||||
case 'embed.live_stream_by': return ({required Object name}) => 'Direktsändning via ${name}';
|
case 'embed.live_stream_by': return ({required Object name}) => 'Direktsändning via ${name}';
|
||||||
@ -395,16 +435,22 @@ extension on TranslationsSv {
|
|||||||
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zap ${amount} sats';
|
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zap ${amount} sats';
|
||||||
case 'zap.button_zap': return 'Zap';
|
case 'zap.button_zap': return 'Zap';
|
||||||
case 'zap.button_open_wallet': return 'Öppna i plånboken';
|
case 'zap.button_open_wallet': return 'Öppna i plånboken';
|
||||||
|
case 'zap.button_connect_wallet': return 'Anslut plånbok';
|
||||||
case 'zap.copy': return 'Kopieras till urklipp';
|
case 'zap.copy': return 'Kopieras till urklipp';
|
||||||
case 'zap.error.invalid_custom_amount': return 'Ogiltigt anpassat belopp';
|
case 'zap.error.invalid_custom_amount': return 'Ogiltigt anpassat belopp';
|
||||||
case 'zap.error.no_wallet': return 'Ingen blixtplånbok installerad';
|
case 'zap.error.no_wallet': return 'Ingen blixtplånbok installerad';
|
||||||
case 'zap.error.no_lud16': return 'Ingen blixtadress hittades';
|
case 'zap.error.no_lud16': return 'Ingen blixtadress hittades';
|
||||||
case 'profile.past_streams': return 'Tidigare streamar';
|
case 'profile.past_streams': return 'Tidigare streamar';
|
||||||
case 'profile.edit.display_name': return 'Visa namn';
|
case 'settings.button_profile': return 'Redigera profil';
|
||||||
case 'profile.edit.about': return 'Om';
|
case 'settings.button_wallet': return 'Inställningar för plånbok';
|
||||||
case 'profile.edit.nip05': return 'Nostr Adress';
|
case 'settings.profile.display_name': return 'Visa namn';
|
||||||
case 'profile.edit.lud16': return 'Lightning-adress';
|
case 'settings.profile.about': return 'Om';
|
||||||
case 'profile.edit.error.logged_out': return 'Kan inte redigera profil när jag är utloggad';
|
case 'settings.profile.nip05': return 'Nostr Adress';
|
||||||
|
case 'settings.profile.lud16': return 'Adress för blixtnedslag';
|
||||||
|
case 'settings.profile.error.logged_out': return 'Kan inte redigera profil när jag är utloggad';
|
||||||
|
case 'settings.wallet.connect_wallet': return 'Anslut plånbok (NWC nwc://)';
|
||||||
|
case 'settings.wallet.disconnect_wallet': return 'Koppla bort plånboken';
|
||||||
|
case 'settings.wallet.error.logged_out': return 'Kan inte ansluta plånbok när du är inloggad';
|
||||||
case 'login.username': return 'Användarnamn';
|
case 'login.username': return 'Användarnamn';
|
||||||
case 'login.amber': return 'Logga in med Amber';
|
case 'login.amber': return 'Logga in med Amber';
|
||||||
case 'login.key': return 'Logga in med nyckel';
|
case 'login.key': return 'Logga in med nyckel';
|
||||||
|
@ -67,6 +67,7 @@ class TranslationsTr extends Translations {
|
|||||||
|
|
||||||
@override late final _TranslationsZapTr zap = _TranslationsZapTr._(_root);
|
@override late final _TranslationsZapTr zap = _TranslationsZapTr._(_root);
|
||||||
@override late final _TranslationsProfileTr profile = _TranslationsProfileTr._(_root);
|
@override late final _TranslationsProfileTr profile = _TranslationsProfileTr._(_root);
|
||||||
|
@override late final _TranslationsSettingsTr settings = _TranslationsSettingsTr._(_root);
|
||||||
@override late final _TranslationsLoginTr login = _TranslationsLoginTr._(_root);
|
@override late final _TranslationsLoginTr login = _TranslationsLoginTr._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -118,6 +119,8 @@ class _TranslationsButtonTr extends TranslationsButtonEn {
|
|||||||
@override String get unmute => 'Sesi aç';
|
@override String get unmute => 'Sesi aç';
|
||||||
@override String get share => 'Paylaş';
|
@override String get share => 'Paylaş';
|
||||||
@override String get save => 'Kaydet';
|
@override String get save => 'Kaydet';
|
||||||
|
@override String get connect => 'Bağlan';
|
||||||
|
@override String get settings => 'Ayarlar';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: embed
|
// Path: embed
|
||||||
@ -159,6 +162,7 @@ class _TranslationsZapTr extends TranslationsZapEn {
|
|||||||
@override String button_zap_ready({required Object amount}) => 'Zap ${amount} sats';
|
@override String button_zap_ready({required Object amount}) => 'Zap ${amount} sats';
|
||||||
@override String get button_zap => 'Zap';
|
@override String get button_zap => 'Zap';
|
||||||
@override String get button_open_wallet => 'Cüzdanda Aç';
|
@override String get button_open_wallet => 'Cüzdanda Aç';
|
||||||
|
@override String get button_connect_wallet => 'Cüzdan Bağlayın';
|
||||||
@override String get copy => 'Panoya kopyalandı';
|
@override String get copy => 'Panoya kopyalandı';
|
||||||
@override late final _TranslationsZapErrorTr error = _TranslationsZapErrorTr._(_root);
|
@override late final _TranslationsZapErrorTr error = _TranslationsZapErrorTr._(_root);
|
||||||
}
|
}
|
||||||
@ -171,7 +175,19 @@ class _TranslationsProfileTr extends TranslationsProfileEn {
|
|||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
@override String get past_streams => 'Geçmiş Akışlar';
|
@override String get past_streams => 'Geçmiş Akışlar';
|
||||||
@override late final _TranslationsProfileEditTr edit = _TranslationsProfileEditTr._(_root);
|
}
|
||||||
|
|
||||||
|
// Path: settings
|
||||||
|
class _TranslationsSettingsTr extends TranslationsSettingsEn {
|
||||||
|
_TranslationsSettingsTr._(TranslationsTr root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsTr _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get button_profile => 'Profil Düzenle';
|
||||||
|
@override String get button_wallet => 'Cüzdan Ayarları';
|
||||||
|
@override late final _TranslationsSettingsProfileTr profile = _TranslationsSettingsProfileTr._(_root);
|
||||||
|
@override late final _TranslationsSettingsWalletTr wallet = _TranslationsSettingsWalletTr._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login
|
// Path: login
|
||||||
@ -247,9 +263,9 @@ class _TranslationsZapErrorTr extends TranslationsZapErrorEn {
|
|||||||
@override String get no_lud16 => 'Yıldırım adresi bulunamadı';
|
@override String get no_lud16 => 'Yıldırım adresi bulunamadı';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit
|
// Path: settings.profile
|
||||||
class _TranslationsProfileEditTr extends TranslationsProfileEditEn {
|
class _TranslationsSettingsProfileTr extends TranslationsSettingsProfileEn {
|
||||||
_TranslationsProfileEditTr._(TranslationsTr root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileTr._(TranslationsTr root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsTr _root; // ignore: unused_field
|
final TranslationsTr _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -258,7 +274,19 @@ class _TranslationsProfileEditTr extends TranslationsProfileEditEn {
|
|||||||
@override String get about => 'Hakkında';
|
@override String get about => 'Hakkında';
|
||||||
@override String get nip05 => 'Nostr Adres';
|
@override String get nip05 => 'Nostr Adres';
|
||||||
@override String get lud16 => 'Yıldırım Adres';
|
@override String get lud16 => 'Yıldırım Adres';
|
||||||
@override late final _TranslationsProfileEditErrorTr error = _TranslationsProfileEditErrorTr._(_root);
|
@override late final _TranslationsSettingsProfileErrorTr error = _TranslationsSettingsProfileErrorTr._(_root);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet
|
||||||
|
class _TranslationsSettingsWalletTr extends TranslationsSettingsWalletEn {
|
||||||
|
_TranslationsSettingsWalletTr._(TranslationsTr root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsTr _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get connect_wallet => 'Cüzdanı Bağlayın (NWC nwc://)';
|
||||||
|
@override String get disconnect_wallet => 'Cüzdan Bağlantısını Kes';
|
||||||
|
@override late final _TranslationsSettingsWalletErrorTr error = _TranslationsSettingsWalletErrorTr._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login.error
|
// Path: login.error
|
||||||
@ -310,18 +338,18 @@ class _TranslationsStreamChatRaidTr extends TranslationsStreamChatRaidEn {
|
|||||||
// Translations
|
// Translations
|
||||||
|
|
||||||
/// Başka bir akışa sohbet baskını mesajı
|
/// Başka bir akışa sohbet baskını mesajı
|
||||||
@override String to({required Object name}) => 'RAIDING ${name}S';
|
@override String to({required Object name}) => 'RAIDING ${name}';
|
||||||
|
|
||||||
/// Başka bir akıştan sohbet baskını mesajı
|
/// Başka bir akıştan sohbet baskını mesajı
|
||||||
@override String from({required Object name}) => '${name} ADRESINDEN RAID';
|
@override String from({required Object name}) => '${name}ADRESINDEN RAID';
|
||||||
|
|
||||||
/// Otomatik sürüş için geri sayım sayacı
|
/// Otomatik sürüş için geri sayım sayacı
|
||||||
@override String countdown({required Object time}) => '${time} adresinde baskın';
|
@override String countdown({required Object time}) => '${time}adresinde baskın';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit.error
|
// Path: settings.profile.error
|
||||||
class _TranslationsProfileEditErrorTr extends TranslationsProfileEditErrorEn {
|
class _TranslationsSettingsProfileErrorTr extends TranslationsSettingsProfileErrorEn {
|
||||||
_TranslationsProfileEditErrorTr._(TranslationsTr root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileErrorTr._(TranslationsTr root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsTr _root; // ignore: unused_field
|
final TranslationsTr _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -329,6 +357,16 @@ class _TranslationsProfileEditErrorTr extends TranslationsProfileEditErrorEn {
|
|||||||
@override String get logged_out => 'Çıkış yapıldığında profil düzenlenemiyor';
|
@override String get logged_out => 'Çıkış yapıldığında profil düzenlenemiyor';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet.error
|
||||||
|
class _TranslationsSettingsWalletErrorTr extends TranslationsSettingsWalletErrorEn {
|
||||||
|
_TranslationsSettingsWalletErrorTr._(TranslationsTr root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsTr _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get logged_out => 'Oturumu kapattığımda cüzdana bağlanamıyorum';
|
||||||
|
}
|
||||||
|
|
||||||
/// Flat map(s) containing all translations.
|
/// Flat map(s) containing all translations.
|
||||||
/// Only for edge cases! For simple maps, use the map function of this library.
|
/// Only for edge cases! For simple maps, use the map function of this library.
|
||||||
extension on TranslationsTr {
|
extension on TranslationsTr {
|
||||||
@ -366,9 +404,9 @@ extension on TranslationsTr {
|
|||||||
case 'stream.chat.write.no_signer': return 'Npub girişi ile mesaj yazılamıyor';
|
case 'stream.chat.write.no_signer': return 'Npub girişi ile mesaj yazılamıyor';
|
||||||
case 'stream.chat.write.login': return 'Mesaj göndermek için lütfen giriş yapın';
|
case 'stream.chat.write.login': return 'Mesaj göndermek için lütfen giriş yapın';
|
||||||
case 'stream.chat.badge.awarded_to': return 'Ödüllendirildi:';
|
case 'stream.chat.badge.awarded_to': return 'Ödüllendirildi:';
|
||||||
case 'stream.chat.raid.to': return ({required Object name}) => 'RAIDING ${name}S';
|
case 'stream.chat.raid.to': return ({required Object name}) => 'RAIDING ${name}';
|
||||||
case 'stream.chat.raid.from': return ({required Object name}) => '${name} ADRESINDEN RAID';
|
case 'stream.chat.raid.from': return ({required Object name}) => '${name}ADRESINDEN RAID';
|
||||||
case 'stream.chat.raid.countdown': return ({required Object time}) => '${time} adresinde baskın';
|
case 'stream.chat.raid.countdown': return ({required Object time}) => '${time}adresinde baskın';
|
||||||
case 'goal.title': return ({required Object amount}) => 'Hedef: ${amount}';
|
case 'goal.title': return ({required Object amount}) => 'Hedef: ${amount}';
|
||||||
case 'goal.remaining': return ({required Object amount}) => 'Kalan: ${amount}';
|
case 'goal.remaining': return ({required Object amount}) => 'Kalan: ${amount}';
|
||||||
case 'goal.complete': return 'TAMAMLANDI';
|
case 'goal.complete': return 'TAMAMLANDI';
|
||||||
@ -381,6 +419,8 @@ extension on TranslationsTr {
|
|||||||
case 'button.unmute': return 'Sesi aç';
|
case 'button.unmute': return 'Sesi aç';
|
||||||
case 'button.share': return 'Paylaş';
|
case 'button.share': return 'Paylaş';
|
||||||
case 'button.save': return 'Kaydet';
|
case 'button.save': return 'Kaydet';
|
||||||
|
case 'button.connect': return 'Bağlan';
|
||||||
|
case 'button.settings': return 'Ayarlar';
|
||||||
case 'embed.article_by': return ({required Object name}) => 'Makale ${name}';
|
case 'embed.article_by': return ({required Object name}) => 'Makale ${name}';
|
||||||
case 'embed.note_by': return ({required Object name}) => 'Not: ${name}';
|
case 'embed.note_by': return ({required Object name}) => 'Not: ${name}';
|
||||||
case 'embed.live_stream_by': return ({required Object name}) => 'Canlı yayın: ${name}';
|
case 'embed.live_stream_by': return ({required Object name}) => 'Canlı yayın: ${name}';
|
||||||
@ -395,16 +435,22 @@ extension on TranslationsTr {
|
|||||||
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zap ${amount} sats';
|
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zap ${amount} sats';
|
||||||
case 'zap.button_zap': return 'Zap';
|
case 'zap.button_zap': return 'Zap';
|
||||||
case 'zap.button_open_wallet': return 'Cüzdanda Aç';
|
case 'zap.button_open_wallet': return 'Cüzdanda Aç';
|
||||||
|
case 'zap.button_connect_wallet': return 'Cüzdan Bağlayın';
|
||||||
case 'zap.copy': return 'Panoya kopyalandı';
|
case 'zap.copy': return 'Panoya kopyalandı';
|
||||||
case 'zap.error.invalid_custom_amount': return 'Geçersiz özel tutar';
|
case 'zap.error.invalid_custom_amount': return 'Geçersiz özel tutar';
|
||||||
case 'zap.error.no_wallet': return 'Lightning cüzdan yüklü değil';
|
case 'zap.error.no_wallet': return 'Lightning cüzdan yüklü değil';
|
||||||
case 'zap.error.no_lud16': return 'Yıldırım adresi bulunamadı';
|
case 'zap.error.no_lud16': return 'Yıldırım adresi bulunamadı';
|
||||||
case 'profile.past_streams': return 'Geçmiş Akışlar';
|
case 'profile.past_streams': return 'Geçmiş Akışlar';
|
||||||
case 'profile.edit.display_name': return 'Ekran Adı';
|
case 'settings.button_profile': return 'Profil Düzenle';
|
||||||
case 'profile.edit.about': return 'Hakkında';
|
case 'settings.button_wallet': return 'Cüzdan Ayarları';
|
||||||
case 'profile.edit.nip05': return 'Nostr Adres';
|
case 'settings.profile.display_name': return 'Ekran Adı';
|
||||||
case 'profile.edit.lud16': return 'Yıldırım Adres';
|
case 'settings.profile.about': return 'Hakkında';
|
||||||
case 'profile.edit.error.logged_out': return 'Çıkış yapıldığında profil düzenlenemiyor';
|
case 'settings.profile.nip05': return 'Nostr Adres';
|
||||||
|
case 'settings.profile.lud16': return 'Yıldırım Adres';
|
||||||
|
case 'settings.profile.error.logged_out': return 'Çıkış yapıldığında profil düzenlenemiyor';
|
||||||
|
case 'settings.wallet.connect_wallet': return 'Cüzdanı Bağlayın (NWC nwc://)';
|
||||||
|
case 'settings.wallet.disconnect_wallet': return 'Cüzdan Bağlantısını Kes';
|
||||||
|
case 'settings.wallet.error.logged_out': return 'Oturumu kapattığımda cüzdana bağlanamıyorum';
|
||||||
case 'login.username': return 'Kullanıcı Adı';
|
case 'login.username': return 'Kullanıcı Adı';
|
||||||
case 'login.amber': return 'Amber ile Giriş Yapın';
|
case 'login.amber': return 'Amber ile Giriş Yapın';
|
||||||
case 'login.key': return 'Anahtar ile Giriş Yapın';
|
case 'login.key': return 'Anahtar ile Giriş Yapın';
|
||||||
|
@ -67,6 +67,7 @@ class TranslationsUk extends Translations {
|
|||||||
|
|
||||||
@override late final _TranslationsZapUk zap = _TranslationsZapUk._(_root);
|
@override late final _TranslationsZapUk zap = _TranslationsZapUk._(_root);
|
||||||
@override late final _TranslationsProfileUk profile = _TranslationsProfileUk._(_root);
|
@override late final _TranslationsProfileUk profile = _TranslationsProfileUk._(_root);
|
||||||
|
@override late final _TranslationsSettingsUk settings = _TranslationsSettingsUk._(_root);
|
||||||
@override late final _TranslationsLoginUk login = _TranslationsLoginUk._(_root);
|
@override late final _TranslationsLoginUk login = _TranslationsLoginUk._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -118,6 +119,8 @@ class _TranslationsButtonUk extends TranslationsButtonEn {
|
|||||||
@override String get unmute => 'Увімкнути звук.';
|
@override String get unmute => 'Увімкнути звук.';
|
||||||
@override String get share => 'Поділіться';
|
@override String get share => 'Поділіться';
|
||||||
@override String get save => 'Зберегти';
|
@override String get save => 'Зберегти';
|
||||||
|
@override String get connect => 'Підключіться';
|
||||||
|
@override String get settings => 'Налаштування';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: embed
|
// Path: embed
|
||||||
@ -159,6 +162,7 @@ class _TranslationsZapUk extends TranslationsZapEn {
|
|||||||
@override String button_zap_ready({required Object amount}) => 'Zap ${amount} sats';
|
@override String button_zap_ready({required Object amount}) => 'Zap ${amount} sats';
|
||||||
@override String get button_zap => 'Zap!';
|
@override String get button_zap => 'Zap!';
|
||||||
@override String get button_open_wallet => 'Відкрити в Гаманці';
|
@override String get button_open_wallet => 'Відкрити в Гаманці';
|
||||||
|
@override String get button_connect_wallet => 'Підключити гаманець';
|
||||||
@override String get copy => 'Скопійовано в буфер обміну';
|
@override String get copy => 'Скопійовано в буфер обміну';
|
||||||
@override late final _TranslationsZapErrorUk error = _TranslationsZapErrorUk._(_root);
|
@override late final _TranslationsZapErrorUk error = _TranslationsZapErrorUk._(_root);
|
||||||
}
|
}
|
||||||
@ -171,7 +175,19 @@ class _TranslationsProfileUk extends TranslationsProfileEn {
|
|||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
@override String get past_streams => 'Минулі потоки';
|
@override String get past_streams => 'Минулі потоки';
|
||||||
@override late final _TranslationsProfileEditUk edit = _TranslationsProfileEditUk._(_root);
|
}
|
||||||
|
|
||||||
|
// Path: settings
|
||||||
|
class _TranslationsSettingsUk extends TranslationsSettingsEn {
|
||||||
|
_TranslationsSettingsUk._(TranslationsUk root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsUk _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get button_profile => 'Редагувати профіль';
|
||||||
|
@override String get button_wallet => 'Налаштування гаманця';
|
||||||
|
@override late final _TranslationsSettingsProfileUk profile = _TranslationsSettingsProfileUk._(_root);
|
||||||
|
@override late final _TranslationsSettingsWalletUk wallet = _TranslationsSettingsWalletUk._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login
|
// Path: login
|
||||||
@ -247,9 +263,9 @@ class _TranslationsZapErrorUk extends TranslationsZapErrorEn {
|
|||||||
@override String get no_lud16 => 'Адреса блискавки не знайдена';
|
@override String get no_lud16 => 'Адреса блискавки не знайдена';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit
|
// Path: settings.profile
|
||||||
class _TranslationsProfileEditUk extends TranslationsProfileEditEn {
|
class _TranslationsSettingsProfileUk extends TranslationsSettingsProfileEn {
|
||||||
_TranslationsProfileEditUk._(TranslationsUk root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileUk._(TranslationsUk root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsUk _root; // ignore: unused_field
|
final TranslationsUk _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -258,7 +274,19 @@ class _TranslationsProfileEditUk extends TranslationsProfileEditEn {
|
|||||||
@override String get about => 'Про';
|
@override String get about => 'Про';
|
||||||
@override String get nip05 => 'Nostr Адреса';
|
@override String get nip05 => 'Nostr Адреса';
|
||||||
@override String get lud16 => 'Блискавична адреса';
|
@override String get lud16 => 'Блискавична адреса';
|
||||||
@override late final _TranslationsProfileEditErrorUk error = _TranslationsProfileEditErrorUk._(_root);
|
@override late final _TranslationsSettingsProfileErrorUk error = _TranslationsSettingsProfileErrorUk._(_root);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet
|
||||||
|
class _TranslationsSettingsWalletUk extends TranslationsSettingsWalletEn {
|
||||||
|
_TranslationsSettingsWalletUk._(TranslationsUk root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsUk _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get connect_wallet => 'Підключити гаманець (NWC nwc://)';
|
||||||
|
@override String get disconnect_wallet => 'Відключити гаманець';
|
||||||
|
@override late final _TranslationsSettingsWalletErrorUk error = _TranslationsSettingsWalletErrorUk._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login.error
|
// Path: login.error
|
||||||
@ -319,9 +347,9 @@ class _TranslationsStreamChatRaidUk extends TranslationsStreamChatRaidEn {
|
|||||||
@override String countdown({required Object time}) => 'Рейд у ${time}';
|
@override String countdown({required Object time}) => 'Рейд у ${time}';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit.error
|
// Path: settings.profile.error
|
||||||
class _TranslationsProfileEditErrorUk extends TranslationsProfileEditErrorEn {
|
class _TranslationsSettingsProfileErrorUk extends TranslationsSettingsProfileErrorEn {
|
||||||
_TranslationsProfileEditErrorUk._(TranslationsUk root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileErrorUk._(TranslationsUk root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsUk _root; // ignore: unused_field
|
final TranslationsUk _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -329,6 +357,16 @@ class _TranslationsProfileEditErrorUk extends TranslationsProfileEditErrorEn {
|
|||||||
@override String get logged_out => 'Неможливо редагувати профіль, коли ви вийшли з системи';
|
@override String get logged_out => 'Неможливо редагувати профіль, коли ви вийшли з системи';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet.error
|
||||||
|
class _TranslationsSettingsWalletErrorUk extends TranslationsSettingsWalletErrorEn {
|
||||||
|
_TranslationsSettingsWalletErrorUk._(TranslationsUk root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsUk _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get logged_out => 'Не вдається підключити гаманець, коли ви вийшли з системи';
|
||||||
|
}
|
||||||
|
|
||||||
/// Flat map(s) containing all translations.
|
/// Flat map(s) containing all translations.
|
||||||
/// Only for edge cases! For simple maps, use the map function of this library.
|
/// Only for edge cases! For simple maps, use the map function of this library.
|
||||||
extension on TranslationsUk {
|
extension on TranslationsUk {
|
||||||
@ -381,6 +419,8 @@ extension on TranslationsUk {
|
|||||||
case 'button.unmute': return 'Увімкнути звук.';
|
case 'button.unmute': return 'Увімкнути звук.';
|
||||||
case 'button.share': return 'Поділіться';
|
case 'button.share': return 'Поділіться';
|
||||||
case 'button.save': return 'Зберегти';
|
case 'button.save': return 'Зберегти';
|
||||||
|
case 'button.connect': return 'Підключіться';
|
||||||
|
case 'button.settings': return 'Налаштування';
|
||||||
case 'embed.article_by': return ({required Object name}) => 'Стаття за посиланням ${name}';
|
case 'embed.article_by': return ({required Object name}) => 'Стаття за посиланням ${name}';
|
||||||
case 'embed.note_by': return ({required Object name}) => 'Примітка ${name}';
|
case 'embed.note_by': return ({required Object name}) => 'Примітка ${name}';
|
||||||
case 'embed.live_stream_by': return ({required Object name}) => 'Пряма трансляція на ${name}';
|
case 'embed.live_stream_by': return ({required Object name}) => 'Пряма трансляція на ${name}';
|
||||||
@ -395,16 +435,22 @@ extension on TranslationsUk {
|
|||||||
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zap ${amount} sats';
|
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zap ${amount} sats';
|
||||||
case 'zap.button_zap': return 'Zap!';
|
case 'zap.button_zap': return 'Zap!';
|
||||||
case 'zap.button_open_wallet': return 'Відкрити в Гаманці';
|
case 'zap.button_open_wallet': return 'Відкрити в Гаманці';
|
||||||
|
case 'zap.button_connect_wallet': return 'Підключити гаманець';
|
||||||
case 'zap.copy': return 'Скопійовано в буфер обміну';
|
case 'zap.copy': return 'Скопійовано в буфер обміну';
|
||||||
case 'zap.error.invalid_custom_amount': return 'Неправильна сума замовлення';
|
case 'zap.error.invalid_custom_amount': return 'Неправильна сума замовлення';
|
||||||
case 'zap.error.no_wallet': return 'Не встановлено гаманець-блискавку';
|
case 'zap.error.no_wallet': return 'Не встановлено гаманець-блискавку';
|
||||||
case 'zap.error.no_lud16': return 'Адреса блискавки не знайдена';
|
case 'zap.error.no_lud16': return 'Адреса блискавки не знайдена';
|
||||||
case 'profile.past_streams': return 'Минулі потоки';
|
case 'profile.past_streams': return 'Минулі потоки';
|
||||||
case 'profile.edit.display_name': return 'Ім\'я користувача';
|
case 'settings.button_profile': return 'Редагувати профіль';
|
||||||
case 'profile.edit.about': return 'Про';
|
case 'settings.button_wallet': return 'Налаштування гаманця';
|
||||||
case 'profile.edit.nip05': return 'Nostr Адреса';
|
case 'settings.profile.display_name': return 'Ім\'я користувача';
|
||||||
case 'profile.edit.lud16': return 'Блискавична адреса';
|
case 'settings.profile.about': return 'Про';
|
||||||
case 'profile.edit.error.logged_out': return 'Неможливо редагувати профіль, коли ви вийшли з системи';
|
case 'settings.profile.nip05': return 'Nostr Адреса';
|
||||||
|
case 'settings.profile.lud16': return 'Блискавична адреса';
|
||||||
|
case 'settings.profile.error.logged_out': return 'Неможливо редагувати профіль, коли ви вийшли з системи';
|
||||||
|
case 'settings.wallet.connect_wallet': return 'Підключити гаманець (NWC nwc://)';
|
||||||
|
case 'settings.wallet.disconnect_wallet': return 'Відключити гаманець';
|
||||||
|
case 'settings.wallet.error.logged_out': return 'Не вдається підключити гаманець, коли ви вийшли з системи';
|
||||||
case 'login.username': return 'Ім\'я користувача';
|
case 'login.username': return 'Ім\'я користувача';
|
||||||
case 'login.amber': return 'Увійдіть за допомогою Amber';
|
case 'login.amber': return 'Увійдіть за допомогою Amber';
|
||||||
case 'login.key': return 'Увійдіть за допомогою ключа';
|
case 'login.key': return 'Увійдіть за допомогою ключа';
|
||||||
|
@ -67,6 +67,7 @@ class TranslationsVi extends Translations {
|
|||||||
|
|
||||||
@override late final _TranslationsZapVi zap = _TranslationsZapVi._(_root);
|
@override late final _TranslationsZapVi zap = _TranslationsZapVi._(_root);
|
||||||
@override late final _TranslationsProfileVi profile = _TranslationsProfileVi._(_root);
|
@override late final _TranslationsProfileVi profile = _TranslationsProfileVi._(_root);
|
||||||
|
@override late final _TranslationsSettingsVi settings = _TranslationsSettingsVi._(_root);
|
||||||
@override late final _TranslationsLoginVi login = _TranslationsLoginVi._(_root);
|
@override late final _TranslationsLoginVi login = _TranslationsLoginVi._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -118,6 +119,8 @@ class _TranslationsButtonVi extends TranslationsButtonEn {
|
|||||||
@override String get unmute => 'Unmute';
|
@override String get unmute => 'Unmute';
|
||||||
@override String get share => 'Share';
|
@override String get share => 'Share';
|
||||||
@override String get save => 'Save';
|
@override String get save => 'Save';
|
||||||
|
@override String get connect => 'Connect';
|
||||||
|
@override String get settings => 'Settings';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: embed
|
// Path: embed
|
||||||
@ -159,6 +162,7 @@ class _TranslationsZapVi extends TranslationsZapEn {
|
|||||||
@override String button_zap_ready({required Object amount}) => 'Zap ${amount} sats';
|
@override String button_zap_ready({required Object amount}) => 'Zap ${amount} sats';
|
||||||
@override String get button_zap => 'Zap';
|
@override String get button_zap => 'Zap';
|
||||||
@override String get button_open_wallet => 'Open in Wallet';
|
@override String get button_open_wallet => 'Open in Wallet';
|
||||||
|
@override String get button_connect_wallet => 'Connect Wallet';
|
||||||
@override String get copy => 'Copied to clipboard';
|
@override String get copy => 'Copied to clipboard';
|
||||||
@override late final _TranslationsZapErrorVi error = _TranslationsZapErrorVi._(_root);
|
@override late final _TranslationsZapErrorVi error = _TranslationsZapErrorVi._(_root);
|
||||||
}
|
}
|
||||||
@ -171,7 +175,19 @@ class _TranslationsProfileVi extends TranslationsProfileEn {
|
|||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
@override String get past_streams => 'Past Streams';
|
@override String get past_streams => 'Past Streams';
|
||||||
@override late final _TranslationsProfileEditVi edit = _TranslationsProfileEditVi._(_root);
|
}
|
||||||
|
|
||||||
|
// Path: settings
|
||||||
|
class _TranslationsSettingsVi extends TranslationsSettingsEn {
|
||||||
|
_TranslationsSettingsVi._(TranslationsVi root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsVi _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get button_profile => 'Edit Profile';
|
||||||
|
@override String get button_wallet => 'Wallet Settings';
|
||||||
|
@override late final _TranslationsSettingsProfileVi profile = _TranslationsSettingsProfileVi._(_root);
|
||||||
|
@override late final _TranslationsSettingsWalletVi wallet = _TranslationsSettingsWalletVi._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login
|
// Path: login
|
||||||
@ -247,9 +263,9 @@ class _TranslationsZapErrorVi extends TranslationsZapErrorEn {
|
|||||||
@override String get no_lud16 => 'No lightning address found';
|
@override String get no_lud16 => 'No lightning address found';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit
|
// Path: settings.profile
|
||||||
class _TranslationsProfileEditVi extends TranslationsProfileEditEn {
|
class _TranslationsSettingsProfileVi extends TranslationsSettingsProfileEn {
|
||||||
_TranslationsProfileEditVi._(TranslationsVi root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileVi._(TranslationsVi root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsVi _root; // ignore: unused_field
|
final TranslationsVi _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -258,7 +274,19 @@ class _TranslationsProfileEditVi extends TranslationsProfileEditEn {
|
|||||||
@override String get about => 'About';
|
@override String get about => 'About';
|
||||||
@override String get nip05 => 'Nostr Address';
|
@override String get nip05 => 'Nostr Address';
|
||||||
@override String get lud16 => 'Lightning Address';
|
@override String get lud16 => 'Lightning Address';
|
||||||
@override late final _TranslationsProfileEditErrorVi error = _TranslationsProfileEditErrorVi._(_root);
|
@override late final _TranslationsSettingsProfileErrorVi error = _TranslationsSettingsProfileErrorVi._(_root);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet
|
||||||
|
class _TranslationsSettingsWalletVi extends TranslationsSettingsWalletEn {
|
||||||
|
_TranslationsSettingsWalletVi._(TranslationsVi root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsVi _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get connect_wallet => 'Connect Wallet (NWC nwc://)';
|
||||||
|
@override String get disconnect_wallet => 'Disconnect Wallet';
|
||||||
|
@override late final _TranslationsSettingsWalletErrorVi error = _TranslationsSettingsWalletErrorVi._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login.error
|
// Path: login.error
|
||||||
@ -319,9 +347,9 @@ class _TranslationsStreamChatRaidVi extends TranslationsStreamChatRaidEn {
|
|||||||
@override String countdown({required Object time}) => 'Raiding in ${time}';
|
@override String countdown({required Object time}) => 'Raiding in ${time}';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit.error
|
// Path: settings.profile.error
|
||||||
class _TranslationsProfileEditErrorVi extends TranslationsProfileEditErrorEn {
|
class _TranslationsSettingsProfileErrorVi extends TranslationsSettingsProfileErrorEn {
|
||||||
_TranslationsProfileEditErrorVi._(TranslationsVi root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileErrorVi._(TranslationsVi root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsVi _root; // ignore: unused_field
|
final TranslationsVi _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -329,6 +357,16 @@ class _TranslationsProfileEditErrorVi extends TranslationsProfileEditErrorEn {
|
|||||||
@override String get logged_out => 'Cant edit profile when logged out';
|
@override String get logged_out => 'Cant edit profile when logged out';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet.error
|
||||||
|
class _TranslationsSettingsWalletErrorVi extends TranslationsSettingsWalletErrorEn {
|
||||||
|
_TranslationsSettingsWalletErrorVi._(TranslationsVi root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsVi _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get logged_out => 'Cant connect wallet when logged out';
|
||||||
|
}
|
||||||
|
|
||||||
/// Flat map(s) containing all translations.
|
/// Flat map(s) containing all translations.
|
||||||
/// Only for edge cases! For simple maps, use the map function of this library.
|
/// Only for edge cases! For simple maps, use the map function of this library.
|
||||||
extension on TranslationsVi {
|
extension on TranslationsVi {
|
||||||
@ -381,6 +419,8 @@ extension on TranslationsVi {
|
|||||||
case 'button.unmute': return 'Unmute';
|
case 'button.unmute': return 'Unmute';
|
||||||
case 'button.share': return 'Share';
|
case 'button.share': return 'Share';
|
||||||
case 'button.save': return 'Save';
|
case 'button.save': return 'Save';
|
||||||
|
case 'button.connect': return 'Connect';
|
||||||
|
case 'button.settings': return 'Settings';
|
||||||
case 'embed.article_by': return ({required Object name}) => 'Article by ${name}';
|
case 'embed.article_by': return ({required Object name}) => 'Article by ${name}';
|
||||||
case 'embed.note_by': return ({required Object name}) => 'Note by ${name}';
|
case 'embed.note_by': return ({required Object name}) => 'Note by ${name}';
|
||||||
case 'embed.live_stream_by': return ({required Object name}) => 'Live stream by ${name}';
|
case 'embed.live_stream_by': return ({required Object name}) => 'Live stream by ${name}';
|
||||||
@ -395,16 +435,22 @@ extension on TranslationsVi {
|
|||||||
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zap ${amount} sats';
|
case 'zap.button_zap_ready': return ({required Object amount}) => 'Zap ${amount} sats';
|
||||||
case 'zap.button_zap': return 'Zap';
|
case 'zap.button_zap': return 'Zap';
|
||||||
case 'zap.button_open_wallet': return 'Open in Wallet';
|
case 'zap.button_open_wallet': return 'Open in Wallet';
|
||||||
|
case 'zap.button_connect_wallet': return 'Connect Wallet';
|
||||||
case 'zap.copy': return 'Copied to clipboard';
|
case 'zap.copy': return 'Copied to clipboard';
|
||||||
case 'zap.error.invalid_custom_amount': return 'Invalid custom amount';
|
case 'zap.error.invalid_custom_amount': return 'Invalid custom amount';
|
||||||
case 'zap.error.no_wallet': return 'No lightning wallet installed';
|
case 'zap.error.no_wallet': return 'No lightning wallet installed';
|
||||||
case 'zap.error.no_lud16': return 'No lightning address found';
|
case 'zap.error.no_lud16': return 'No lightning address found';
|
||||||
case 'profile.past_streams': return 'Past Streams';
|
case 'profile.past_streams': return 'Past Streams';
|
||||||
case 'profile.edit.display_name': return 'Display Name';
|
case 'settings.button_profile': return 'Edit Profile';
|
||||||
case 'profile.edit.about': return 'About';
|
case 'settings.button_wallet': return 'Wallet Settings';
|
||||||
case 'profile.edit.nip05': return 'Nostr Address';
|
case 'settings.profile.display_name': return 'Display Name';
|
||||||
case 'profile.edit.lud16': return 'Lightning Address';
|
case 'settings.profile.about': return 'About';
|
||||||
case 'profile.edit.error.logged_out': return 'Cant edit profile when logged out';
|
case 'settings.profile.nip05': return 'Nostr Address';
|
||||||
|
case 'settings.profile.lud16': return 'Lightning Address';
|
||||||
|
case 'settings.profile.error.logged_out': return 'Cant edit profile when logged out';
|
||||||
|
case 'settings.wallet.connect_wallet': return 'Connect Wallet (NWC nwc://)';
|
||||||
|
case 'settings.wallet.disconnect_wallet': return 'Disconnect Wallet';
|
||||||
|
case 'settings.wallet.error.logged_out': return 'Cant connect wallet when logged out';
|
||||||
case 'login.username': return 'Username';
|
case 'login.username': return 'Username';
|
||||||
case 'login.amber': return 'Login with Amber';
|
case 'login.amber': return 'Login with Amber';
|
||||||
case 'login.key': return 'Login with Key';
|
case 'login.key': return 'Login with Key';
|
||||||
|
@ -67,6 +67,7 @@ class TranslationsZh extends Translations {
|
|||||||
|
|
||||||
@override late final _TranslationsZapZh zap = _TranslationsZapZh._(_root);
|
@override late final _TranslationsZapZh zap = _TranslationsZapZh._(_root);
|
||||||
@override late final _TranslationsProfileZh profile = _TranslationsProfileZh._(_root);
|
@override late final _TranslationsProfileZh profile = _TranslationsProfileZh._(_root);
|
||||||
|
@override late final _TranslationsSettingsZh settings = _TranslationsSettingsZh._(_root);
|
||||||
@override late final _TranslationsLoginZh login = _TranslationsLoginZh._(_root);
|
@override late final _TranslationsLoginZh login = _TranslationsLoginZh._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -118,6 +119,8 @@ class _TranslationsButtonZh extends TranslationsButtonEn {
|
|||||||
@override String get unmute => '解除静音';
|
@override String get unmute => '解除静音';
|
||||||
@override String get share => '分享';
|
@override String get share => '分享';
|
||||||
@override String get save => '保存';
|
@override String get save => '保存';
|
||||||
|
@override String get connect => '連接';
|
||||||
|
@override String get settings => '設定';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: embed
|
// Path: embed
|
||||||
@ -159,6 +162,7 @@ class _TranslationsZapZh extends TranslationsZapEn {
|
|||||||
@override String button_zap_ready({required Object amount}) => '打閃 ${amount} 聰';
|
@override String button_zap_ready({required Object amount}) => '打閃 ${amount} 聰';
|
||||||
@override String get button_zap => '打閃';
|
@override String get button_zap => '打閃';
|
||||||
@override String get button_open_wallet => '在錢包中開啟';
|
@override String get button_open_wallet => '在錢包中開啟';
|
||||||
|
@override String get button_connect_wallet => '連接錢包';
|
||||||
@override String get copy => '複製到剪貼簿';
|
@override String get copy => '複製到剪貼簿';
|
||||||
@override late final _TranslationsZapErrorZh error = _TranslationsZapErrorZh._(_root);
|
@override late final _TranslationsZapErrorZh error = _TranslationsZapErrorZh._(_root);
|
||||||
}
|
}
|
||||||
@ -171,7 +175,19 @@ class _TranslationsProfileZh extends TranslationsProfileEn {
|
|||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
@override String get past_streams => '過去的直播';
|
@override String get past_streams => '過去的直播';
|
||||||
@override late final _TranslationsProfileEditZh edit = _TranslationsProfileEditZh._(_root);
|
}
|
||||||
|
|
||||||
|
// Path: settings
|
||||||
|
class _TranslationsSettingsZh extends TranslationsSettingsEn {
|
||||||
|
_TranslationsSettingsZh._(TranslationsZh root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsZh _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get button_profile => '編輯個人資料';
|
||||||
|
@override String get button_wallet => '錢包設定';
|
||||||
|
@override late final _TranslationsSettingsProfileZh profile = _TranslationsSettingsProfileZh._(_root);
|
||||||
|
@override late final _TranslationsSettingsWalletZh wallet = _TranslationsSettingsWalletZh._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login
|
// Path: login
|
||||||
@ -247,18 +263,30 @@ class _TranslationsZapErrorZh extends TranslationsZapErrorEn {
|
|||||||
@override String get no_lud16 => '未找到閃電地址';
|
@override String get no_lud16 => '未找到閃電地址';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit
|
// Path: settings.profile
|
||||||
class _TranslationsProfileEditZh extends TranslationsProfileEditEn {
|
class _TranslationsSettingsProfileZh extends TranslationsSettingsProfileEn {
|
||||||
_TranslationsProfileEditZh._(TranslationsZh root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileZh._(TranslationsZh root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsZh _root; // ignore: unused_field
|
final TranslationsZh _root; // ignore: unused_field
|
||||||
|
|
||||||
// Translations
|
// Translations
|
||||||
@override String get display_name => '顯示名稱';
|
@override String get display_name => '顯示名稱';
|
||||||
@override String get about => '關於';
|
@override String get about => '關於';
|
||||||
@override String get nip05 => 'Nostr 地址';
|
@override String get nip05 => '地址';
|
||||||
@override String get lud16 => '閃電地址';
|
@override String get lud16 => '閃電地址';
|
||||||
@override late final _TranslationsProfileEditErrorZh error = _TranslationsProfileEditErrorZh._(_root);
|
@override late final _TranslationsSettingsProfileErrorZh error = _TranslationsSettingsProfileErrorZh._(_root);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet
|
||||||
|
class _TranslationsSettingsWalletZh extends TranslationsSettingsWalletEn {
|
||||||
|
_TranslationsSettingsWalletZh._(TranslationsZh root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsZh _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get connect_wallet => '連接錢包 (NWC nwc://)';
|
||||||
|
@override String get disconnect_wallet => '斷開錢包';
|
||||||
|
@override late final _TranslationsSettingsWalletErrorZh error = _TranslationsSettingsWalletErrorZh._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: login.error
|
// Path: login.error
|
||||||
@ -319,9 +347,9 @@ class _TranslationsStreamChatRaidZh extends TranslationsStreamChatRaidEn {
|
|||||||
@override String countdown({required Object time}) => '突襲 ${time}';
|
@override String countdown({required Object time}) => '突襲 ${time}';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: profile.edit.error
|
// Path: settings.profile.error
|
||||||
class _TranslationsProfileEditErrorZh extends TranslationsProfileEditErrorEn {
|
class _TranslationsSettingsProfileErrorZh extends TranslationsSettingsProfileErrorEn {
|
||||||
_TranslationsProfileEditErrorZh._(TranslationsZh root) : this._root = root, super.internal(root);
|
_TranslationsSettingsProfileErrorZh._(TranslationsZh root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
final TranslationsZh _root; // ignore: unused_field
|
final TranslationsZh _root; // ignore: unused_field
|
||||||
|
|
||||||
@ -329,6 +357,16 @@ class _TranslationsProfileEditErrorZh extends TranslationsProfileEditErrorEn {
|
|||||||
@override String get logged_out => '登出時無法編輯個人資料';
|
@override String get logged_out => '登出時無法編輯個人資料';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Path: settings.wallet.error
|
||||||
|
class _TranslationsSettingsWalletErrorZh extends TranslationsSettingsWalletErrorEn {
|
||||||
|
_TranslationsSettingsWalletErrorZh._(TranslationsZh root) : this._root = root, super.internal(root);
|
||||||
|
|
||||||
|
final TranslationsZh _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get logged_out => '登出時無法連接錢包';
|
||||||
|
}
|
||||||
|
|
||||||
/// Flat map(s) containing all translations.
|
/// Flat map(s) containing all translations.
|
||||||
/// Only for edge cases! For simple maps, use the map function of this library.
|
/// Only for edge cases! For simple maps, use the map function of this library.
|
||||||
extension on TranslationsZh {
|
extension on TranslationsZh {
|
||||||
@ -381,6 +419,8 @@ extension on TranslationsZh {
|
|||||||
case 'button.unmute': return '解除静音';
|
case 'button.unmute': return '解除静音';
|
||||||
case 'button.share': return '分享';
|
case 'button.share': return '分享';
|
||||||
case 'button.save': return '保存';
|
case 'button.save': return '保存';
|
||||||
|
case 'button.connect': return '連接';
|
||||||
|
case 'button.settings': return '設定';
|
||||||
case 'embed.article_by': return ({required Object name}) => '文章來源: ${name}';
|
case 'embed.article_by': return ({required Object name}) => '文章來源: ${name}';
|
||||||
case 'embed.note_by': return ({required Object name}) => '${name} 的筆記';
|
case 'embed.note_by': return ({required Object name}) => '${name} 的筆記';
|
||||||
case 'embed.live_stream_by': return ({required Object name}) => 'Live stream by ${name}';
|
case 'embed.live_stream_by': return ({required Object name}) => 'Live stream by ${name}';
|
||||||
@ -395,16 +435,22 @@ extension on TranslationsZh {
|
|||||||
case 'zap.button_zap_ready': return ({required Object amount}) => '打閃 ${amount} 聰';
|
case 'zap.button_zap_ready': return ({required Object amount}) => '打閃 ${amount} 聰';
|
||||||
case 'zap.button_zap': return '打閃';
|
case 'zap.button_zap': return '打閃';
|
||||||
case 'zap.button_open_wallet': return '在錢包中開啟';
|
case 'zap.button_open_wallet': return '在錢包中開啟';
|
||||||
|
case 'zap.button_connect_wallet': return '連接錢包';
|
||||||
case 'zap.copy': return '複製到剪貼簿';
|
case 'zap.copy': return '複製到剪貼簿';
|
||||||
case 'zap.error.invalid_custom_amount': return '無效自訂金額';
|
case 'zap.error.invalid_custom_amount': return '無效自訂金額';
|
||||||
case 'zap.error.no_wallet': return '未安裝閃電錢夾';
|
case 'zap.error.no_wallet': return '未安裝閃電錢夾';
|
||||||
case 'zap.error.no_lud16': return '未找到閃電地址';
|
case 'zap.error.no_lud16': return '未找到閃電地址';
|
||||||
case 'profile.past_streams': return '過去的直播';
|
case 'profile.past_streams': return '過去的直播';
|
||||||
case 'profile.edit.display_name': return '顯示名稱';
|
case 'settings.button_profile': return '編輯個人資料';
|
||||||
case 'profile.edit.about': return '關於';
|
case 'settings.button_wallet': return '錢包設定';
|
||||||
case 'profile.edit.nip05': return 'Nostr 地址';
|
case 'settings.profile.display_name': return '顯示名稱';
|
||||||
case 'profile.edit.lud16': return '閃電地址';
|
case 'settings.profile.about': return '關於';
|
||||||
case 'profile.edit.error.logged_out': return '登出時無法編輯個人資料';
|
case 'settings.profile.nip05': return '地址';
|
||||||
|
case 'settings.profile.lud16': return '閃電地址';
|
||||||
|
case 'settings.profile.error.logged_out': return '登出時無法編輯個人資料';
|
||||||
|
case 'settings.wallet.connect_wallet': return '連接錢包 (NWC nwc://)';
|
||||||
|
case 'settings.wallet.disconnect_wallet': return '斷開錢包';
|
||||||
|
case 'settings.wallet.error.logged_out': return '登出時無法連接錢包';
|
||||||
case 'login.username': return '用戶名';
|
case 'login.username': return '用戶名';
|
||||||
case 'login.amber': return '使用 Amber 登入';
|
case 'login.amber': return '使用 Amber 登入';
|
||||||
case 'login.key': return '使用鑰匙登入';
|
case 'login.key': return '使用鑰匙登入';
|
||||||
|
@ -51,13 +51,13 @@ stream:
|
|||||||
"@awarded_to":
|
"@awarded_to":
|
||||||
description: Heading over list of users who are awarded a badge
|
description: Heading over list of users who are awarded a badge
|
||||||
raid:
|
raid:
|
||||||
to: RAIDING $name
|
to: RAIDING ${name}
|
||||||
"@to":
|
"@to":
|
||||||
description: Chat raid message to another stream
|
description: Chat raid message to another stream
|
||||||
from: RAID FROM $name
|
from: RAID FROM ${name}
|
||||||
"@from":
|
"@from":
|
||||||
description: Chat raid message from another stream
|
description: Chat raid message from another stream
|
||||||
countdown: Raiding in $time
|
countdown: Raiding in ${time}
|
||||||
"@countdown":
|
"@countdown":
|
||||||
description: Countdown timer for auto-raiding
|
description: Countdown timer for auto-raiding
|
||||||
goal:
|
goal:
|
||||||
@ -80,10 +80,12 @@ button:
|
|||||||
unmute: Unmute
|
unmute: Unmute
|
||||||
share: Share
|
share: Share
|
||||||
save: Save
|
save: Save
|
||||||
|
connect: Connect
|
||||||
|
settings: Settings
|
||||||
embed:
|
embed:
|
||||||
article_by: Article by $name
|
article_by: Article by ${name}
|
||||||
note_by: Note by $name
|
note_by: Note by $name
|
||||||
live_stream_by: Live stream by $name
|
live_stream_by: Live stream by ${name}
|
||||||
stream_list:
|
stream_list:
|
||||||
following: Following
|
following: Following
|
||||||
live: Live
|
live: Live
|
||||||
@ -99,6 +101,7 @@ zap:
|
|||||||
button_zap_ready: Zap $amount sats
|
button_zap_ready: Zap $amount sats
|
||||||
button_zap: Zap
|
button_zap: Zap
|
||||||
button_open_wallet: Open in Wallet
|
button_open_wallet: Open in Wallet
|
||||||
|
button_connect_wallet: Connect Wallet
|
||||||
copy: Copied to clipboard
|
copy: Copied to clipboard
|
||||||
error:
|
error:
|
||||||
invalid_custom_amount: Invalid custom amount
|
invalid_custom_amount: Invalid custom amount
|
||||||
@ -106,13 +109,21 @@ zap:
|
|||||||
no_lud16: No lightning address found
|
no_lud16: No lightning address found
|
||||||
profile:
|
profile:
|
||||||
past_streams: Past Streams
|
past_streams: Past Streams
|
||||||
edit:
|
settings:
|
||||||
|
button_profile: Edit Profile
|
||||||
|
button_wallet: Wallet Settings
|
||||||
|
profile:
|
||||||
display_name: Display Name
|
display_name: Display Name
|
||||||
about: About
|
about: About
|
||||||
nip05: Nostr Address
|
nip05: Nostr Address
|
||||||
lud16: Lightning Address
|
lud16: Lightning Address
|
||||||
error:
|
error:
|
||||||
logged_out: Cant edit profile when logged out
|
logged_out: Cant edit profile when logged out
|
||||||
|
wallet:
|
||||||
|
connect_wallet: Connect Wallet (NWC nwc://)
|
||||||
|
disconnect_wallet: Disconnect Wallet
|
||||||
|
error:
|
||||||
|
logged_out: Cant connect wallet when logged out
|
||||||
login:
|
login:
|
||||||
username: Username
|
username: Username
|
||||||
amber: Login with Amber
|
amber: Login with Amber
|
||||||
|
@ -42,7 +42,8 @@ stream:
|
|||||||
description: التسمية على مربع إدخال رسالة الدردشة
|
description: التسمية على مربع إدخال رسالة الدردشة
|
||||||
no_signer: لا يمكن كتابة الرسائل باستخدام تسجيل الدخول إلى npub
|
no_signer: لا يمكن كتابة الرسائل باستخدام تسجيل الدخول إلى npub
|
||||||
"@no_signer":
|
"@no_signer":
|
||||||
description: تظهر رسالة إدخال الدردشة عندما يقوم المستخدم بتسجيل الدخول باستخدام مفتاح الحانة فقط
|
description: تظهر رسالة إدخال الدردشة عندما يقوم المستخدم بتسجيل الدخول باستخدام
|
||||||
|
مفتاح الحانة فقط
|
||||||
login: الرجاء تسجيل الدخول لإرسال الرسائل
|
login: الرجاء تسجيل الدخول لإرسال الرسائل
|
||||||
"@login":
|
"@login":
|
||||||
description: تظهر رسالة إدخال الدردشة عند تسجيل خروج المستخدم من المحادثة
|
description: تظهر رسالة إدخال الدردشة عند تسجيل خروج المستخدم من المحادثة
|
||||||
@ -80,6 +81,8 @@ button:
|
|||||||
unmute: رفع الكتم
|
unmute: رفع الكتم
|
||||||
share: مشاركة
|
share: مشاركة
|
||||||
save: حفظ
|
save: حفظ
|
||||||
|
connect: الاتصال
|
||||||
|
settings: الإعدادات
|
||||||
embed:
|
embed:
|
||||||
article_by: مقال بقلم $name
|
article_by: مقال بقلم $name
|
||||||
note_by: ملاحظة من $name
|
note_by: ملاحظة من $name
|
||||||
@ -99,6 +102,7 @@ zap:
|
|||||||
button_zap_ready: أومض $amount ساتوشي
|
button_zap_ready: أومض $amount ساتوشي
|
||||||
button_zap: زاب
|
button_zap: زاب
|
||||||
button_open_wallet: فتح في المحفظة
|
button_open_wallet: فتح في المحفظة
|
||||||
|
button_connect_wallet: توصيل المحفظة
|
||||||
copy: نسخ إلى الحافظة
|
copy: نسخ إلى الحافظة
|
||||||
error:
|
error:
|
||||||
invalid_custom_amount: مبلغ مخصص غير صالح
|
invalid_custom_amount: مبلغ مخصص غير صالح
|
||||||
@ -106,13 +110,21 @@ zap:
|
|||||||
no_lud16: لم يتم العثور على عنوان البرق
|
no_lud16: لم يتم العثور على عنوان البرق
|
||||||
profile:
|
profile:
|
||||||
past_streams: التدفقات السابقة
|
past_streams: التدفقات السابقة
|
||||||
edit:
|
settings:
|
||||||
|
button_profile: تعديل الملف الشخصي
|
||||||
|
button_wallet: إعدادات المحفظة
|
||||||
|
profile:
|
||||||
display_name: اسم العرض
|
display_name: اسم العرض
|
||||||
about: نبذة
|
about: نبذة عن
|
||||||
nip05: عنوان نوستر
|
nip05: عنوان نوستر
|
||||||
lud16: عنوان البرق
|
lud16: عنوان البرق
|
||||||
error:
|
error:
|
||||||
logged_out: لا يمكن تحرير ملف التعريف عند تسجيل الخروج
|
logged_out: لا يمكن تحرير ملف التعريف عند تسجيل الخروج
|
||||||
|
wallet:
|
||||||
|
connect_wallet: توصيل المحفظة (NWC nwc://)
|
||||||
|
disconnect_wallet: محفظة قطع الاتصال
|
||||||
|
error:
|
||||||
|
logged_out: لا يمكن الاتصال بالمحفظة عند تسجيل الخروج
|
||||||
login:
|
login:
|
||||||
username: اسم المستخدم
|
username: اسم المستخدم
|
||||||
amber: تسجيل الدخول مع آمبر
|
amber: تسجيل الدخول مع آمبر
|
||||||
|
@ -51,13 +51,13 @@ stream:
|
|||||||
"@awarded_to":
|
"@awarded_to":
|
||||||
description: Heading over list of users who are awarded a badge
|
description: Heading over list of users who are awarded a badge
|
||||||
raid:
|
raid:
|
||||||
to: RAIDING $name
|
to: RAIDING ${name}
|
||||||
"@to":
|
"@to":
|
||||||
description: Chat raid message to another stream
|
description: Chat raid message to another stream
|
||||||
from: RAID FROM $name
|
from: RAID FROM ${name}
|
||||||
"@from":
|
"@from":
|
||||||
description: Chat raid message from another stream
|
description: Chat raid message from another stream
|
||||||
countdown: Raiding in $time
|
countdown: Raiding in ${time}
|
||||||
"@countdown":
|
"@countdown":
|
||||||
description: Countdown timer for auto-raiding
|
description: Countdown timer for auto-raiding
|
||||||
goal:
|
goal:
|
||||||
@ -80,10 +80,12 @@ button:
|
|||||||
unmute: Unmute
|
unmute: Unmute
|
||||||
share: Share
|
share: Share
|
||||||
save: Save
|
save: Save
|
||||||
|
connect: Connect
|
||||||
|
settings: Settings
|
||||||
embed:
|
embed:
|
||||||
article_by: Article by $name
|
article_by: Article by ${name}
|
||||||
note_by: Note by $name
|
note_by: Note by $name
|
||||||
live_stream_by: Live stream by $name
|
live_stream_by: Live stream by ${name}
|
||||||
stream_list:
|
stream_list:
|
||||||
following: Following
|
following: Following
|
||||||
live: Live
|
live: Live
|
||||||
@ -99,6 +101,7 @@ zap:
|
|||||||
button_zap_ready: Zap $amount sats
|
button_zap_ready: Zap $amount sats
|
||||||
button_zap: Zap
|
button_zap: Zap
|
||||||
button_open_wallet: Open in Wallet
|
button_open_wallet: Open in Wallet
|
||||||
|
button_connect_wallet: Connect Wallet
|
||||||
copy: Copied to clipboard
|
copy: Copied to clipboard
|
||||||
error:
|
error:
|
||||||
invalid_custom_amount: Invalid custom amount
|
invalid_custom_amount: Invalid custom amount
|
||||||
@ -106,13 +109,21 @@ zap:
|
|||||||
no_lud16: No lightning address found
|
no_lud16: No lightning address found
|
||||||
profile:
|
profile:
|
||||||
past_streams: Past Streams
|
past_streams: Past Streams
|
||||||
edit:
|
settings:
|
||||||
|
button_profile: Edit Profile
|
||||||
|
button_wallet: Wallet Settings
|
||||||
|
profile:
|
||||||
display_name: Display Name
|
display_name: Display Name
|
||||||
about: About
|
about: About
|
||||||
nip05: Nostr Address
|
nip05: Nostr Address
|
||||||
lud16: Lightning Address
|
lud16: Lightning Address
|
||||||
error:
|
error:
|
||||||
logged_out: Cant edit profile when logged out
|
logged_out: Cant edit profile when logged out
|
||||||
|
wallet:
|
||||||
|
connect_wallet: Connect Wallet (NWC nwc://)
|
||||||
|
disconnect_wallet: Disconnect Wallet
|
||||||
|
error:
|
||||||
|
logged_out: Cant connect wallet when logged out
|
||||||
login:
|
login:
|
||||||
username: Username
|
username: Username
|
||||||
amber: Login with Amber
|
amber: Login with Amber
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
upload_avatar: Nahrát avatar
|
upload_avatar: Nahrát avatar
|
||||||
"@upload_avatar":
|
"@upload_avatar":
|
||||||
description: Text vyzývající uživatele, aby stiskl zástupný symbol avatara pro zahájení nahrávání
|
description: Text vyzývající uživatele, aby stiskl zástupný symbol avatara pro
|
||||||
|
zahájení nahrávání
|
||||||
most_zapped_streamers: Nejvíce zapnutých streamerů
|
most_zapped_streamers: Nejvíce zapnutých streamerů
|
||||||
"@most_zapped_streamers":
|
"@most_zapped_streamers":
|
||||||
description: Směřování přes uvedené horní streamery podle zaps
|
description: Směřování přes uvedené horní streamery podle zaps
|
||||||
@ -42,7 +43,8 @@ stream:
|
|||||||
description: Popisek na vstupním poli zprávy chatu
|
description: Popisek na vstupním poli zprávy chatu
|
||||||
no_signer: Nelze psát zprávy s přihlášením npub
|
no_signer: Nelze psát zprávy s přihlášením npub
|
||||||
"@no_signer":
|
"@no_signer":
|
||||||
description: Vstupní zpráva chatu se zobrazí, když je uživatel přihlášen pouze pomocí pubkey
|
description: Vstupní zpráva chatu se zobrazí, když je uživatel přihlášen pouze
|
||||||
|
pomocí pubkey
|
||||||
login: Pro odesílání zpráv se prosím přihlaste
|
login: Pro odesílání zpráv se prosím přihlaste
|
||||||
"@login":
|
"@login":
|
||||||
description: Vstupní zpráva chatu zobrazená při odhlášení uživatele
|
description: Vstupní zpráva chatu zobrazená při odhlášení uživatele
|
||||||
@ -80,6 +82,8 @@ button:
|
|||||||
unmute: Zrušit ztlumení
|
unmute: Zrušit ztlumení
|
||||||
share: Sdílet
|
share: Sdílet
|
||||||
save: Uložit
|
save: Uložit
|
||||||
|
connect: Připojení
|
||||||
|
settings: Nastavení
|
||||||
embed:
|
embed:
|
||||||
article_by: Článek na $name
|
article_by: Článek na $name
|
||||||
note_by: Poznámka $name
|
note_by: Poznámka $name
|
||||||
@ -99,6 +103,7 @@ zap:
|
|||||||
button_zap_ready: Zap $amount sats
|
button_zap_ready: Zap $amount sats
|
||||||
button_zap: Zap
|
button_zap: Zap
|
||||||
button_open_wallet: Otevřít v peněžence
|
button_open_wallet: Otevřít v peněžence
|
||||||
|
button_connect_wallet: Připojení peněženky
|
||||||
copy: Zkopírováno do schránky
|
copy: Zkopírováno do schránky
|
||||||
error:
|
error:
|
||||||
invalid_custom_amount: Neplatná vlastní částka
|
invalid_custom_amount: Neplatná vlastní částka
|
||||||
@ -106,13 +111,21 @@ zap:
|
|||||||
no_lud16: Nebyla nalezena žádná adresa blesku
|
no_lud16: Nebyla nalezena žádná adresa blesku
|
||||||
profile:
|
profile:
|
||||||
past_streams: Minulé proudy
|
past_streams: Minulé proudy
|
||||||
edit:
|
settings:
|
||||||
|
button_profile: Upravit profil
|
||||||
|
button_wallet: Nastavení peněženky
|
||||||
|
profile:
|
||||||
display_name: Zobrazení názvu
|
display_name: Zobrazení názvu
|
||||||
about: O stránkách
|
about: O stránkách
|
||||||
nip05: Adresa Nostr
|
nip05: Adresa Nostr
|
||||||
lud16: Adresa blesku
|
lud16: Adresa blesku
|
||||||
error:
|
error:
|
||||||
logged_out: Nelze upravit profil, když je odhlášený
|
logged_out: Nelze upravit profil, když je odhlášený
|
||||||
|
wallet:
|
||||||
|
connect_wallet: Připojení peněženky (NWC nwc://)
|
||||||
|
disconnect_wallet: Odpojení peněženky
|
||||||
|
error:
|
||||||
|
logged_out: Nelze se připojit k peněžence, když jste odhlášeni
|
||||||
login:
|
login:
|
||||||
username: Uživatelské jméno
|
username: Uživatelské jméno
|
||||||
amber: Přihlášení pomocí Amber
|
amber: Přihlášení pomocí Amber
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
upload_avatar: Upload avatar
|
upload_avatar: Upload avatar
|
||||||
"@upload_avatar":
|
"@upload_avatar":
|
||||||
description: Tekst, der beder brugeren om at trykke på avatar-pladsholderen for at begynde at uploade
|
description: Tekst, der beder brugeren om at trykke på avatar-pladsholderen for
|
||||||
|
at begynde at uploade
|
||||||
most_zapped_streamers: De fleste zappede streamere
|
most_zapped_streamers: De fleste zappede streamere
|
||||||
"@most_zapped_streamers":
|
"@most_zapped_streamers":
|
||||||
description: På vej over listede topstreamere af zaps
|
description: På vej over listede topstreamere af zaps
|
||||||
@ -80,6 +81,8 @@ button:
|
|||||||
unmute: Slå lyden fra
|
unmute: Slå lyden fra
|
||||||
share: Del
|
share: Del
|
||||||
save: Gemme
|
save: Gemme
|
||||||
|
connect: Opret forbindelse
|
||||||
|
settings: Indstillinger
|
||||||
embed:
|
embed:
|
||||||
article_by: Artikel af $name
|
article_by: Artikel af $name
|
||||||
note_by: Note fra $name
|
note_by: Note fra $name
|
||||||
@ -90,7 +93,8 @@ stream_list:
|
|||||||
planned: Planlagt
|
planned: Planlagt
|
||||||
ended: Afsluttet
|
ended: Afsluttet
|
||||||
"@stream_list":
|
"@stream_list":
|
||||||
description: Overskrifter på streaminglister efter streamingtype live/afsluttet/planlagt osv.
|
description: Overskrifter på streaminglister efter streamingtype
|
||||||
|
live/afsluttet/planlagt osv.
|
||||||
zap:
|
zap:
|
||||||
title: Zap $name
|
title: Zap $name
|
||||||
custom_amount: Brugerdefineret beløb
|
custom_amount: Brugerdefineret beløb
|
||||||
@ -99,6 +103,7 @@ zap:
|
|||||||
button_zap_ready: Zap $amount sats
|
button_zap_ready: Zap $amount sats
|
||||||
button_zap: Zap
|
button_zap: Zap
|
||||||
button_open_wallet: Åbn i tegnebogen
|
button_open_wallet: Åbn i tegnebogen
|
||||||
|
button_connect_wallet: Forbind tegnebog
|
||||||
copy: Kopieret til udklipsholder
|
copy: Kopieret til udklipsholder
|
||||||
error:
|
error:
|
||||||
invalid_custom_amount: Ugyldigt brugerdefineret beløb
|
invalid_custom_amount: Ugyldigt brugerdefineret beløb
|
||||||
@ -106,13 +111,21 @@ zap:
|
|||||||
no_lud16: Ingen lyn-adresse fundet
|
no_lud16: Ingen lyn-adresse fundet
|
||||||
profile:
|
profile:
|
||||||
past_streams: Tidligere strømme
|
past_streams: Tidligere strømme
|
||||||
edit:
|
settings:
|
||||||
|
button_profile: Rediger profil
|
||||||
|
button_wallet: Indstillinger for tegnebog
|
||||||
|
profile:
|
||||||
display_name: Vis navn
|
display_name: Vis navn
|
||||||
about: Omkring
|
about: Omkring
|
||||||
nip05: Nostr-adresse
|
nip05: Nostr-adresse
|
||||||
lud16: Adresse for lynnedslag
|
lud16: Adresse for lynnedslag
|
||||||
error:
|
error:
|
||||||
logged_out: Kan ikke redigere profil, når jeg er logget ud
|
logged_out: Kan ikke redigere profil, når jeg er logget ud
|
||||||
|
wallet:
|
||||||
|
connect_wallet: Connect Wallet (NWC nwc://)
|
||||||
|
disconnect_wallet: Afbryd forbindelsen til tegnebogen
|
||||||
|
error:
|
||||||
|
logged_out: Kan ikke oprette forbindelse til wallet, når jeg er logget ud
|
||||||
login:
|
login:
|
||||||
username: Brugernavn
|
username: Brugernavn
|
||||||
amber: Log ind med Amber
|
amber: Log ind med Amber
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
upload_avatar: Avatar hochladen
|
upload_avatar: Avatar hochladen
|
||||||
"@upload_avatar":
|
"@upload_avatar":
|
||||||
description: Text, der den Benutzer auffordert, auf den Avatar-Platzhalter zu klicken, um den Upload zu starten
|
description: Text, der den Benutzer auffordert, auf den Avatar-Platzhalter zu
|
||||||
|
klicken, um den Upload zu starten
|
||||||
most_zapped_streamers: Meistgezappte Streamer
|
most_zapped_streamers: Meistgezappte Streamer
|
||||||
"@most_zapped_streamers":
|
"@most_zapped_streamers":
|
||||||
description: Überschrift über gelistete Top-Streamer von zaps
|
description: Überschrift über gelistete Top-Streamer von zaps
|
||||||
@ -42,14 +43,16 @@ stream:
|
|||||||
description: Beschriftung des Eingabefeldes für Chatnachrichten
|
description: Beschriftung des Eingabefeldes für Chatnachrichten
|
||||||
no_signer: Mit npub-Login können keine Nachrichten geschrieben werden
|
no_signer: Mit npub-Login können keine Nachrichten geschrieben werden
|
||||||
"@no_signer":
|
"@no_signer":
|
||||||
description: Chat-Eingabemeldung wird angezeigt, wenn der Benutzer nur mit Pubkey eingeloggt ist
|
description: Chat-Eingabemeldung wird angezeigt, wenn der Benutzer nur mit
|
||||||
|
Pubkey eingeloggt ist
|
||||||
login: Bitte anmelden, um Nachrichten zu senden
|
login: Bitte anmelden, um Nachrichten zu senden
|
||||||
"@login":
|
"@login":
|
||||||
description: Chat-Eingabemeldung wird angezeigt, wenn der Benutzer abgemeldet ist
|
description: Chat-Eingabemeldung wird angezeigt, wenn der Benutzer abgemeldet ist
|
||||||
badge:
|
badge:
|
||||||
awarded_to: "Verliehen an:"
|
awarded_to: "Verliehen an:"
|
||||||
"@awarded_to":
|
"@awarded_to":
|
||||||
description: Überschrift über der Liste der Benutzer, die ein Abzeichen erhalten haben
|
description: Überschrift über der Liste der Benutzer, die ein Abzeichen erhalten
|
||||||
|
haben
|
||||||
raid:
|
raid:
|
||||||
to: RAIDING $name
|
to: RAIDING $name
|
||||||
"@to":
|
"@to":
|
||||||
@ -80,6 +83,8 @@ button:
|
|||||||
unmute: Entstummen
|
unmute: Entstummen
|
||||||
share: Teilen
|
share: Teilen
|
||||||
save: Speichern
|
save: Speichern
|
||||||
|
connect: Verbinden Sie
|
||||||
|
settings: Einstellungen
|
||||||
embed:
|
embed:
|
||||||
article_by: Artikel von $name
|
article_by: Artikel von $name
|
||||||
note_by: Note von $name
|
note_by: Note von $name
|
||||||
@ -99,6 +104,7 @@ zap:
|
|||||||
button_zap_ready: $amount sats zappen
|
button_zap_ready: $amount sats zappen
|
||||||
button_zap: Zap
|
button_zap: Zap
|
||||||
button_open_wallet: In Brieftasche öffnen
|
button_open_wallet: In Brieftasche öffnen
|
||||||
|
button_connect_wallet: Brieftasche verbinden
|
||||||
copy: In die Zwischenablage kopiert
|
copy: In die Zwischenablage kopiert
|
||||||
error:
|
error:
|
||||||
invalid_custom_amount: Ungültiger benutzerdefinierter Betrag
|
invalid_custom_amount: Ungültiger benutzerdefinierter Betrag
|
||||||
@ -106,13 +112,21 @@ zap:
|
|||||||
no_lud16: Keine Blitzadresse gefunden
|
no_lud16: Keine Blitzadresse gefunden
|
||||||
profile:
|
profile:
|
||||||
past_streams: Vergangene Streams
|
past_streams: Vergangene Streams
|
||||||
edit:
|
settings:
|
||||||
|
button_profile: Profil bearbeiten
|
||||||
|
button_wallet: Wallet-Einstellungen
|
||||||
|
profile:
|
||||||
display_name: Name anzeigen
|
display_name: Name anzeigen
|
||||||
about: Über
|
about: Über
|
||||||
nip05: Nostr-Adresse
|
nip05: Nostr-Adresse
|
||||||
lud16: Lightning-Adresse
|
lud16: Blitz-Adresse
|
||||||
error:
|
error:
|
||||||
logged_out: Profil kann nicht bearbeitet werden, wenn es abgemeldet ist
|
logged_out: Profil kann nicht bearbeitet werden, wenn es abgemeldet ist
|
||||||
|
wallet:
|
||||||
|
connect_wallet: Brieftasche verbinden (NWC nwc://)
|
||||||
|
disconnect_wallet: Brieftasche abtrennen
|
||||||
|
error:
|
||||||
|
logged_out: Kann keine Verbindung zur Brieftasche herstellen, wenn ich abgemeldet bin
|
||||||
login:
|
login:
|
||||||
username: Benutzername
|
username: Benutzername
|
||||||
amber: Anmeldung mit Amber
|
amber: Anmeldung mit Amber
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
upload_avatar: Ανέβασμα Avatar
|
upload_avatar: Ανέβασμα Avatar
|
||||||
"@upload_avatar":
|
"@upload_avatar":
|
||||||
description: Κείμενο που προτρέπει τον χρήστη να πατήσει το εικονίδιο avatar για να ξεκινήσει το ανέβασμα
|
description: Κείμενο που προτρέπει τον χρήστη να πατήσει το εικονίδιο avatar για
|
||||||
|
να ξεκινήσει το ανέβασμα
|
||||||
most_zapped_streamers: Τα περισσότερα Zapped Streamers
|
most_zapped_streamers: Τα περισσότερα Zapped Streamers
|
||||||
"@most_zapped_streamers":
|
"@most_zapped_streamers":
|
||||||
description: Επικεφαλής πάνω από τα αναφερόμενα κορυφαία streamers από zaps
|
description: Επικεφαλής πάνω από τα αναφερόμενα κορυφαία streamers από zaps
|
||||||
@ -42,14 +43,17 @@ stream:
|
|||||||
description: Ετικέτα στο πλαίσιο εισαγωγής μηνύματος συνομιλίας
|
description: Ετικέτα στο πλαίσιο εισαγωγής μηνύματος συνομιλίας
|
||||||
no_signer: Δεν μπορείτε να γράψετε μηνύματα με σύνδεση στο npub
|
no_signer: Δεν μπορείτε να γράψετε μηνύματα με σύνδεση στο npub
|
||||||
"@no_signer":
|
"@no_signer":
|
||||||
description: Μήνυμα εισόδου συνομιλίας που εμφανίζεται όταν ο χρήστης είναι συνδεδεμένος μόνο με το κλειδί pubkey
|
description: Μήνυμα εισόδου συνομιλίας που εμφανίζεται όταν ο χρήστης είναι
|
||||||
|
συνδεδεμένος μόνο με το κλειδί pubkey
|
||||||
login: Παρακαλώ συνδεθείτε για να στείλετε μηνύματα
|
login: Παρακαλώ συνδεθείτε για να στείλετε μηνύματα
|
||||||
"@login":
|
"@login":
|
||||||
description: Μήνυμα εισόδου συνομιλίας που εμφανίζεται όταν ο χρήστης έχει αποσυνδεθεί
|
description: Μήνυμα εισόδου συνομιλίας που εμφανίζεται όταν ο χρήστης έχει
|
||||||
|
αποσυνδεθεί
|
||||||
badge:
|
badge:
|
||||||
awarded_to: "Απονέμεται σε:"
|
awarded_to: "Απονέμεται σε:"
|
||||||
"@awarded_to":
|
"@awarded_to":
|
||||||
description: Επικεφαλίδα πάνω από τη λίστα των χρηστών στους οποίους έχει απονεμηθεί ένα σήμα
|
description: Επικεφαλίδα πάνω από τη λίστα των χρηστών στους οποίους έχει
|
||||||
|
απονεμηθεί ένα σήμα
|
||||||
raid:
|
raid:
|
||||||
to: RAIDING $name
|
to: RAIDING $name
|
||||||
"@to":
|
"@to":
|
||||||
@ -80,6 +84,8 @@ button:
|
|||||||
unmute: Αποσυνδέστε τη φωνή σας από το
|
unmute: Αποσυνδέστε τη φωνή σας από το
|
||||||
share: Μοιραστείτε το
|
share: Μοιραστείτε το
|
||||||
save: Αποθήκευση
|
save: Αποθήκευση
|
||||||
|
connect: Συνδέστε το
|
||||||
|
settings: Ρυθμίσεις
|
||||||
embed:
|
embed:
|
||||||
article_by: Άρθρο από $name
|
article_by: Άρθρο από $name
|
||||||
note_by: Σημείωση του $name
|
note_by: Σημείωση του $name
|
||||||
@ -90,7 +96,8 @@ stream_list:
|
|||||||
planned: Προγραμματισμένο
|
planned: Προγραμματισμένο
|
||||||
ended: Τελείωσε
|
ended: Τελείωσε
|
||||||
"@stream_list":
|
"@stream_list":
|
||||||
description: Επικεφαλίδες στις λίστες ροής ανά τύπο ροής ζωντανή/τελειωμένη/προγραμματισμένη κ.λπ.
|
description: Επικεφαλίδες στις λίστες ροής ανά τύπο ροής
|
||||||
|
ζωντανή/τελειωμένη/προγραμματισμένη κ.λπ.
|
||||||
zap:
|
zap:
|
||||||
title: Zap $name
|
title: Zap $name
|
||||||
custom_amount: Προσαρμοσμένο ποσό
|
custom_amount: Προσαρμοσμένο ποσό
|
||||||
@ -99,6 +106,7 @@ zap:
|
|||||||
button_zap_ready: Zap $amount sats
|
button_zap_ready: Zap $amount sats
|
||||||
button_zap: Zap
|
button_zap: Zap
|
||||||
button_open_wallet: Άνοιγμα στο πορτοφόλι
|
button_open_wallet: Άνοιγμα στο πορτοφόλι
|
||||||
|
button_connect_wallet: Connect Wallet
|
||||||
copy: Αντιγραφή στο πρόχειρο
|
copy: Αντιγραφή στο πρόχειρο
|
||||||
error:
|
error:
|
||||||
invalid_custom_amount: Μη έγκυρο προσαρμοσμένο ποσό
|
invalid_custom_amount: Μη έγκυρο προσαρμοσμένο ποσό
|
||||||
@ -106,13 +114,21 @@ zap:
|
|||||||
no_lud16: Δεν βρέθηκε διεύθυνση κεραυνού
|
no_lud16: Δεν βρέθηκε διεύθυνση κεραυνού
|
||||||
profile:
|
profile:
|
||||||
past_streams: Προηγούμενα ρεύματα
|
past_streams: Προηγούμενα ρεύματα
|
||||||
edit:
|
settings:
|
||||||
|
button_profile: Επεξεργασία προφίλ
|
||||||
|
button_wallet: Ρυθμίσεις πορτοφολιού
|
||||||
|
profile:
|
||||||
display_name: Όνομα οθόνης
|
display_name: Όνομα οθόνης
|
||||||
about: Σχετικά με το
|
about: Σχετικά με το
|
||||||
nip05: Διεύθυνση Nostr
|
nip05: Διεύθυνση Nostr
|
||||||
lud16: Διεύθυνση Lightning
|
lud16: Διεύθυνση Lightning
|
||||||
error:
|
error:
|
||||||
logged_out: Δεν μπορείτε να επεξεργαστείτε το προφίλ όταν έχετε αποσυνδεθεί
|
logged_out: Δεν μπορείτε να επεξεργαστείτε το προφίλ όταν έχετε αποσυνδεθεί
|
||||||
|
wallet:
|
||||||
|
connect_wallet: Σύνδεση πορτοφολιού (NWC nwc://)
|
||||||
|
disconnect_wallet: Αποσύνδεση πορτοφολιού
|
||||||
|
error:
|
||||||
|
logged_out: Δεν μπορώ να συνδεθώ με πορτοφόλι όταν έχω αποσυνδεθεί
|
||||||
login:
|
login:
|
||||||
username: Όνομα χρήστη
|
username: Όνομα χρήστη
|
||||||
amber: Σύνδεση με Amber
|
amber: Σύνδεση με Amber
|
||||||
|
@ -51,13 +51,13 @@ stream:
|
|||||||
"@awarded_to":
|
"@awarded_to":
|
||||||
description: Heading over list of users who are awarded a badge
|
description: Heading over list of users who are awarded a badge
|
||||||
raid:
|
raid:
|
||||||
to: RAIDING $name
|
to: RAIDING ${name}
|
||||||
"@to":
|
"@to":
|
||||||
description: Chat raid message to another stream
|
description: Chat raid message to another stream
|
||||||
from: RAID FROM $name
|
from: RAID FROM ${name}
|
||||||
"@from":
|
"@from":
|
||||||
description: Chat raid message from another stream
|
description: Chat raid message from another stream
|
||||||
countdown: Raiding in $time
|
countdown: Raiding in ${time}
|
||||||
"@countdown":
|
"@countdown":
|
||||||
description: Countdown timer for auto-raiding
|
description: Countdown timer for auto-raiding
|
||||||
goal:
|
goal:
|
||||||
@ -81,10 +81,11 @@ button:
|
|||||||
share: Share
|
share: Share
|
||||||
save: Save
|
save: Save
|
||||||
connect: Connect
|
connect: Connect
|
||||||
|
settings: Settings
|
||||||
embed:
|
embed:
|
||||||
article_by: Article by $name
|
article_by: Article by ${name}
|
||||||
note_by: Note by $name
|
note_by: Note by $name
|
||||||
live_stream_by: Live stream by $name
|
live_stream_by: Live stream by ${name}
|
||||||
stream_list:
|
stream_list:
|
||||||
following: Following
|
following: Following
|
||||||
live: Live
|
live: Live
|
||||||
@ -108,15 +109,19 @@ zap:
|
|||||||
no_lud16: No lightning address found
|
no_lud16: No lightning address found
|
||||||
profile:
|
profile:
|
||||||
past_streams: Past Streams
|
past_streams: Past Streams
|
||||||
edit:
|
settings:
|
||||||
|
button_profile: Edit Profile
|
||||||
|
button_wallet: Wallet Settings
|
||||||
|
profile:
|
||||||
display_name: Display Name
|
display_name: Display Name
|
||||||
about: About
|
about: About
|
||||||
nip05: Nostr Address
|
nip05: Nostr Address
|
||||||
lud16: Lightning Address
|
lud16: Lightning Address
|
||||||
error:
|
error:
|
||||||
logged_out: Cant edit profile when logged out
|
logged_out: Cant edit profile when logged out
|
||||||
wallet:
|
wallet:
|
||||||
connect_wallet: Connect Wallet (NWC nwc://)
|
connect_wallet: Connect Wallet (NWC nwc://)
|
||||||
|
disconnect_wallet: Disconnect Wallet
|
||||||
error:
|
error:
|
||||||
logged_out: Cant connect wallet when logged out
|
logged_out: Cant connect wallet when logged out
|
||||||
login:
|
login:
|
@ -1,6 +1,7 @@
|
|||||||
upload_avatar: Subir avatar
|
upload_avatar: Subir avatar
|
||||||
"@upload_avatar":
|
"@upload_avatar":
|
||||||
description: Texto que indica al usuario que pulse el marcador de avatar para iniciar la carga
|
description: Texto que indica al usuario que pulse el marcador de avatar para
|
||||||
|
iniciar la carga
|
||||||
most_zapped_streamers: Serpentinas más derribadas
|
most_zapped_streamers: Serpentinas más derribadas
|
||||||
"@most_zapped_streamers":
|
"@most_zapped_streamers":
|
||||||
description: Encabezando streamers superiores listados por zaps
|
description: Encabezando streamers superiores listados por zaps
|
||||||
@ -42,14 +43,17 @@ stream:
|
|||||||
description: Etiqueta del cuadro de entrada de mensajes de chat
|
description: Etiqueta del cuadro de entrada de mensajes de chat
|
||||||
no_signer: No se pueden escribir mensajes con el login npub
|
no_signer: No se pueden escribir mensajes con el login npub
|
||||||
"@no_signer":
|
"@no_signer":
|
||||||
description: Mensaje de entrada en el chat que se muestra cuando el usuario está conectado sólo con pubkey
|
description: Mensaje de entrada en el chat que se muestra cuando el usuario está
|
||||||
|
conectado sólo con pubkey
|
||||||
login: Inicie sesión para enviar mensajes
|
login: Inicie sesión para enviar mensajes
|
||||||
"@login":
|
"@login":
|
||||||
description: Mensaje de entrada al chat que se muestra cuando el usuario cierra la sesión
|
description: Mensaje de entrada al chat que se muestra cuando el usuario cierra
|
||||||
|
la sesión
|
||||||
badge:
|
badge:
|
||||||
awarded_to: "Concedido a:"
|
awarded_to: "Concedido a:"
|
||||||
"@awarded_to":
|
"@awarded_to":
|
||||||
description: Encabezamiento de la lista de usuarios a los que se ha concedido una insignia
|
description: Encabezamiento de la lista de usuarios a los que se ha concedido
|
||||||
|
una insignia
|
||||||
raid:
|
raid:
|
||||||
to: RAIDING $name
|
to: RAIDING $name
|
||||||
"@to":
|
"@to":
|
||||||
@ -80,6 +84,8 @@ button:
|
|||||||
unmute: Dejar de silenciar
|
unmute: Dejar de silenciar
|
||||||
share: Compartir
|
share: Compartir
|
||||||
save: Guardar
|
save: Guardar
|
||||||
|
connect: Conectar
|
||||||
|
settings: Ajustes
|
||||||
embed:
|
embed:
|
||||||
article_by: Artículo de $name
|
article_by: Artículo de $name
|
||||||
note_by: Nota de $name
|
note_by: Nota de $name
|
||||||
@ -90,7 +96,8 @@ stream_list:
|
|||||||
planned: Planificado
|
planned: Planificado
|
||||||
ended: Finalizado
|
ended: Finalizado
|
||||||
"@stream_list":
|
"@stream_list":
|
||||||
description: Encabezamientos en las listas de flujos por tipo de flujo en directo/finalizado/planificado, etc.
|
description: Encabezamientos en las listas de flujos por tipo de flujo en
|
||||||
|
directo/finalizado/planificado, etc.
|
||||||
zap:
|
zap:
|
||||||
title: Zap $name
|
title: Zap $name
|
||||||
custom_amount: Importe personalizado
|
custom_amount: Importe personalizado
|
||||||
@ -99,6 +106,7 @@ zap:
|
|||||||
button_zap_ready: Zapear $amount sats
|
button_zap_ready: Zapear $amount sats
|
||||||
button_zap: Zap
|
button_zap: Zap
|
||||||
button_open_wallet: Abrir en cartera
|
button_open_wallet: Abrir en cartera
|
||||||
|
button_connect_wallet: Billetera Connect
|
||||||
copy: Copiado al portapapeles
|
copy: Copiado al portapapeles
|
||||||
error:
|
error:
|
||||||
invalid_custom_amount: Importe personalizado no válido
|
invalid_custom_amount: Importe personalizado no válido
|
||||||
@ -106,13 +114,21 @@ zap:
|
|||||||
no_lud16: No se ha encontrado ninguna dirección de rayos
|
no_lud16: No se ha encontrado ninguna dirección de rayos
|
||||||
profile:
|
profile:
|
||||||
past_streams: Transmisiones anteriores
|
past_streams: Transmisiones anteriores
|
||||||
edit:
|
settings:
|
||||||
|
button_profile: Editar perfil
|
||||||
|
button_wallet: Configuración de la cartera
|
||||||
|
profile:
|
||||||
display_name: Mostrar nombre
|
display_name: Mostrar nombre
|
||||||
about: Sobre ti
|
about: Acerca de
|
||||||
nip05: Dirección Nostr
|
nip05: Dirección Nostr
|
||||||
lud16: Dirección del rayo
|
lud16: Dirección del rayo
|
||||||
error:
|
error:
|
||||||
logged_out: No se puede editar el perfil cuando se cierra la sesión
|
logged_out: No se puede editar el perfil cuando se cierra la sesión
|
||||||
|
wallet:
|
||||||
|
connect_wallet: Cartera Connect (NWC nwc://)
|
||||||
|
disconnect_wallet: Desconectar Cartera
|
||||||
|
error:
|
||||||
|
logged_out: No se puede conectar el monedero al cerrar la sesión
|
||||||
login:
|
login:
|
||||||
username: Usuario
|
username: Usuario
|
||||||
amber: Iniciar sesión con Amber
|
amber: Iniciar sesión con Amber
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
upload_avatar: Lataa avatar
|
upload_avatar: Lataa avatar
|
||||||
"@upload_avatar":
|
"@upload_avatar":
|
||||||
description: Teksti, joka kehottaa käyttäjää painamaan avatar-merkkiä aloittaakseen lataamisen.
|
description: Teksti, joka kehottaa käyttäjää painamaan avatar-merkkiä
|
||||||
|
aloittaakseen lataamisen.
|
||||||
most_zapped_streamers: Eniten Zapped Streamers
|
most_zapped_streamers: Eniten Zapped Streamers
|
||||||
"@most_zapped_streamers":
|
"@most_zapped_streamers":
|
||||||
description: Päällekkäin lueteltujen alkuun streamers by zaps
|
description: Päällekkäin lueteltujen alkuun streamers by zaps
|
||||||
@ -42,7 +43,8 @@ stream:
|
|||||||
description: Chat-viestin syöttöruudun tarra
|
description: Chat-viestin syöttöruudun tarra
|
||||||
no_signer: Ei voi kirjoittaa viestejä npub-kirjautumisella
|
no_signer: Ei voi kirjoittaa viestejä npub-kirjautumisella
|
||||||
"@no_signer":
|
"@no_signer":
|
||||||
description: Chat-syöttöviesti näytetään, kun käyttäjä on kirjautunut sisään vain pubkey-avaimella.
|
description: Chat-syöttöviesti näytetään, kun käyttäjä on kirjautunut sisään
|
||||||
|
vain pubkey-avaimella.
|
||||||
login: Kirjaudu sisään lähettääksesi viestejä
|
login: Kirjaudu sisään lähettääksesi viestejä
|
||||||
"@login":
|
"@login":
|
||||||
description: Chat-syötteen viesti näytetään, kun käyttäjä on kirjautunut ulos.
|
description: Chat-syötteen viesti näytetään, kun käyttäjä on kirjautunut ulos.
|
||||||
@ -80,6 +82,8 @@ button:
|
|||||||
unmute: Poista mykistys
|
unmute: Poista mykistys
|
||||||
share: Jaa
|
share: Jaa
|
||||||
save: Tallenna
|
save: Tallenna
|
||||||
|
connect: Yhdistä
|
||||||
|
settings: Asetukset
|
||||||
embed:
|
embed:
|
||||||
article_by: Artikkeli $name
|
article_by: Artikkeli $name
|
||||||
note_by: Viesti lähettäjältä $name
|
note_by: Viesti lähettäjältä $name
|
||||||
@ -90,7 +94,8 @@ stream_list:
|
|||||||
planned: Suunniteltu
|
planned: Suunniteltu
|
||||||
ended: Päättynyt
|
ended: Päättynyt
|
||||||
"@stream_list":
|
"@stream_list":
|
||||||
description: Stream-luetteloiden otsikot stream-tyypeittäin live/päättynyt/suunniteltu jne.
|
description: Stream-luetteloiden otsikot stream-tyypeittäin
|
||||||
|
live/päättynyt/suunniteltu jne.
|
||||||
zap:
|
zap:
|
||||||
title: Zap $name
|
title: Zap $name
|
||||||
custom_amount: Mukautettu määrä
|
custom_amount: Mukautettu määrä
|
||||||
@ -99,6 +104,7 @@ zap:
|
|||||||
button_zap_ready: Zap $amount satsia
|
button_zap_ready: Zap $amount satsia
|
||||||
button_zap: Zap
|
button_zap: Zap
|
||||||
button_open_wallet: Avaa lompakossa
|
button_open_wallet: Avaa lompakossa
|
||||||
|
button_connect_wallet: Yhdistä lompakko
|
||||||
copy: Kopioitu leikepöydälle
|
copy: Kopioitu leikepöydälle
|
||||||
error:
|
error:
|
||||||
invalid_custom_amount: Virheellinen mukautettu määrä
|
invalid_custom_amount: Virheellinen mukautettu määrä
|
||||||
@ -106,13 +112,21 @@ zap:
|
|||||||
no_lud16: Salamaosoitetta ei löytynyt
|
no_lud16: Salamaosoitetta ei löytynyt
|
||||||
profile:
|
profile:
|
||||||
past_streams: Aikaisemmat lähetykset
|
past_streams: Aikaisemmat lähetykset
|
||||||
edit:
|
settings:
|
||||||
|
button_profile: Muokkaa profiilia
|
||||||
|
button_wallet: Lompakon asetukset
|
||||||
|
profile:
|
||||||
display_name: Näytön nimi
|
display_name: Näytön nimi
|
||||||
about: Tietoja
|
about: Tietoja
|
||||||
nip05: Nostr-osoite
|
nip05: Nostr Osoite
|
||||||
lud16: Lightning-osoite
|
lud16: Salama osoite
|
||||||
error:
|
error:
|
||||||
logged_out: Ei voi muokata profiilia, kun on kirjautunut ulos
|
logged_out: Ei voi muokata profiilia, kun on kirjautunut ulos
|
||||||
|
wallet:
|
||||||
|
connect_wallet: Yhdistä lompakko (NWC nwc://)
|
||||||
|
disconnect_wallet: Irrota lompakko
|
||||||
|
error:
|
||||||
|
logged_out: Ei voi muodostaa yhteyttä lompakkoon, kun on kirjautunut ulos
|
||||||
login:
|
login:
|
||||||
username: Käyttäjätunnus
|
username: Käyttäjätunnus
|
||||||
amber: Kirjaudu sisään Amber kanssa
|
amber: Kirjaudu sisään Amber kanssa
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
upload_avatar: Télécharger l'avatar
|
upload_avatar: Télécharger l'avatar
|
||||||
"@upload_avatar":
|
"@upload_avatar":
|
||||||
description: Texte invitant l'utilisateur à cliquer sur l'espace réservé à l'avatar pour commencer le téléchargement
|
description: Texte invitant l'utilisateur à cliquer sur l'espace réservé à
|
||||||
|
l'avatar pour commencer le téléchargement
|
||||||
most_zapped_streamers: Les Streamers les plus zappés
|
most_zapped_streamers: Les Streamers les plus zappés
|
||||||
"@most_zapped_streamers":
|
"@most_zapped_streamers":
|
||||||
description: Les têtes d'affiche sont listées par zaps.
|
description: Les têtes d'affiche sont listées par zaps.
|
||||||
@ -42,7 +43,8 @@ stream:
|
|||||||
description: Étiquette sur la boîte de saisie du message de chat
|
description: Étiquette sur la boîte de saisie du message de chat
|
||||||
no_signer: Impossible d'écrire des messages avec le login npub
|
no_signer: Impossible d'écrire des messages avec le login npub
|
||||||
"@no_signer":
|
"@no_signer":
|
||||||
description: Message d'entrée du chat affiché lorsque l'utilisateur n'est connecté qu'avec pubkey
|
description: Message d'entrée du chat affiché lorsque l'utilisateur n'est
|
||||||
|
connecté qu'avec pubkey
|
||||||
login: Veuillez vous connecter pour envoyer des messages
|
login: Veuillez vous connecter pour envoyer des messages
|
||||||
"@login":
|
"@login":
|
||||||
description: Message d'entrée du chat affiché lorsque l'utilisateur est déconnecté
|
description: Message d'entrée du chat affiché lorsque l'utilisateur est déconnecté
|
||||||
@ -80,6 +82,8 @@ button:
|
|||||||
unmute: Retirer sourdine
|
unmute: Retirer sourdine
|
||||||
share: Partager
|
share: Partager
|
||||||
save: Sauvegarder
|
save: Sauvegarder
|
||||||
|
connect: Connecter
|
||||||
|
settings: Paramètres
|
||||||
embed:
|
embed:
|
||||||
article_by: Article par $name
|
article_by: Article par $name
|
||||||
note_by: Note par $name
|
note_by: Note par $name
|
||||||
@ -99,6 +103,7 @@ zap:
|
|||||||
button_zap_ready: Zapper $amount sats
|
button_zap_ready: Zapper $amount sats
|
||||||
button_zap: Zap
|
button_zap: Zap
|
||||||
button_open_wallet: Ouvrir dans le portefeuille
|
button_open_wallet: Ouvrir dans le portefeuille
|
||||||
|
button_connect_wallet: Connecter le portefeuille
|
||||||
copy: Copié dans le presse-papiers
|
copy: Copié dans le presse-papiers
|
||||||
error:
|
error:
|
||||||
invalid_custom_amount: Montant personnalisé non valide
|
invalid_custom_amount: Montant personnalisé non valide
|
||||||
@ -106,13 +111,21 @@ zap:
|
|||||||
no_lud16: Pas d'adresse éclair trouvée
|
no_lud16: Pas d'adresse éclair trouvée
|
||||||
profile:
|
profile:
|
||||||
past_streams: Streams passés
|
past_streams: Streams passés
|
||||||
edit:
|
settings:
|
||||||
|
button_profile: Modifier le profil
|
||||||
|
button_wallet: Paramètres du portefeuille
|
||||||
|
profile:
|
||||||
display_name: Nom d'affichage
|
display_name: Nom d'affichage
|
||||||
about: À propos
|
about: A propos de
|
||||||
nip05: Adresse Nostr
|
nip05: Nostr Adresse
|
||||||
lud16: Adresse Lightning
|
lud16: Adresse de la foudre
|
||||||
error:
|
error:
|
||||||
logged_out: Impossible de modifier le profil lorsque l'on est déconnecté
|
logged_out: Impossible de modifier le profil lorsque l'on est déconnecté
|
||||||
|
wallet:
|
||||||
|
connect_wallet: Portefeuille connecté (NWC nwc://)
|
||||||
|
disconnect_wallet: Déconnecter le portefeuille
|
||||||
|
error:
|
||||||
|
logged_out: Impossible de se connecter au portefeuille lorsque l'on est déconnecté
|
||||||
login:
|
login:
|
||||||
username: Nom d’utilisateur
|
username: Nom d’utilisateur
|
||||||
amber: Se connecter avec Amber
|
amber: Se connecter avec Amber
|
||||||
|
@ -51,13 +51,13 @@ stream:
|
|||||||
"@awarded_to":
|
"@awarded_to":
|
||||||
description: Heading over list of users who are awarded a badge
|
description: Heading over list of users who are awarded a badge
|
||||||
raid:
|
raid:
|
||||||
to: RAIDING $name
|
to: RAIDING ${name}
|
||||||
"@to":
|
"@to":
|
||||||
description: Chat raid message to another stream
|
description: Chat raid message to another stream
|
||||||
from: RAID FROM $name
|
from: RAID FROM ${name}
|
||||||
"@from":
|
"@from":
|
||||||
description: Chat raid message from another stream
|
description: Chat raid message from another stream
|
||||||
countdown: Raiding in $time
|
countdown: Raiding in ${time}
|
||||||
"@countdown":
|
"@countdown":
|
||||||
description: Countdown timer for auto-raiding
|
description: Countdown timer for auto-raiding
|
||||||
goal:
|
goal:
|
||||||
@ -80,10 +80,12 @@ button:
|
|||||||
unmute: Unmute
|
unmute: Unmute
|
||||||
share: Share
|
share: Share
|
||||||
save: Save
|
save: Save
|
||||||
|
connect: Connect
|
||||||
|
settings: Settings
|
||||||
embed:
|
embed:
|
||||||
article_by: Article by $name
|
article_by: Article by ${name}
|
||||||
note_by: Note by $name
|
note_by: Note by $name
|
||||||
live_stream_by: Live stream by $name
|
live_stream_by: Live stream by ${name}
|
||||||
stream_list:
|
stream_list:
|
||||||
following: Following
|
following: Following
|
||||||
live: Live
|
live: Live
|
||||||
@ -99,6 +101,7 @@ zap:
|
|||||||
button_zap_ready: Zap $amount sats
|
button_zap_ready: Zap $amount sats
|
||||||
button_zap: Zap
|
button_zap: Zap
|
||||||
button_open_wallet: Open in Wallet
|
button_open_wallet: Open in Wallet
|
||||||
|
button_connect_wallet: Connect Wallet
|
||||||
copy: Copied to clipboard
|
copy: Copied to clipboard
|
||||||
error:
|
error:
|
||||||
invalid_custom_amount: Invalid custom amount
|
invalid_custom_amount: Invalid custom amount
|
||||||
@ -106,13 +109,21 @@ zap:
|
|||||||
no_lud16: No lightning address found
|
no_lud16: No lightning address found
|
||||||
profile:
|
profile:
|
||||||
past_streams: Past Streams
|
past_streams: Past Streams
|
||||||
edit:
|
settings:
|
||||||
|
button_profile: Edit Profile
|
||||||
|
button_wallet: Wallet Settings
|
||||||
|
profile:
|
||||||
display_name: Display Name
|
display_name: Display Name
|
||||||
about: About
|
about: About
|
||||||
nip05: Nostr Address
|
nip05: Nostr Address
|
||||||
lud16: Lightning Address
|
lud16: Lightning Address
|
||||||
error:
|
error:
|
||||||
logged_out: Cant edit profile when logged out
|
logged_out: Cant edit profile when logged out
|
||||||
|
wallet:
|
||||||
|
connect_wallet: Connect Wallet (NWC nwc://)
|
||||||
|
disconnect_wallet: Disconnect Wallet
|
||||||
|
error:
|
||||||
|
logged_out: Cant connect wallet when logged out
|
||||||
login:
|
login:
|
||||||
username: Username
|
username: Username
|
||||||
amber: Login with Amber
|
amber: Login with Amber
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
upload_avatar: Avatár feltöltése
|
upload_avatar: Avatár feltöltése
|
||||||
"@upload_avatar":
|
"@upload_avatar":
|
||||||
description: Szöveg, amely arra kéri a felhasználót, hogy a feltöltés megkezdéséhez nyomja meg az avatar helyőrzőt
|
description: Szöveg, amely arra kéri a felhasználót, hogy a feltöltés
|
||||||
|
megkezdéséhez nyomja meg az avatar helyőrzőt
|
||||||
most_zapped_streamers: A legtöbb Zapped Streamers
|
most_zapped_streamers: A legtöbb Zapped Streamers
|
||||||
"@most_zapped_streamers":
|
"@most_zapped_streamers":
|
||||||
description: Irány a felsorolt top streamerek fölött zaps által
|
description: Irány a felsorolt top streamerek fölött zaps által
|
||||||
@ -27,7 +28,7 @@ stream:
|
|||||||
chat:
|
chat:
|
||||||
disabled: CHAT KIKAPCSOLVA
|
disabled: CHAT KIKAPCSOLVA
|
||||||
disabled_timeout: "Az időkorlát lejár: $time"
|
disabled_timeout: "Az időkorlát lejár: $time"
|
||||||
timeout(rich): $mod időzített $user a $time számára
|
timeout(rich): $mod időzített $user a ${time}számára
|
||||||
"@timeout":
|
"@timeout":
|
||||||
description: Chat üzenet az időkorlátos események megjelenítésével
|
description: Chat üzenet az időkorlátos események megjelenítésével
|
||||||
ended: STREAM MEGSZÜNTETETT
|
ended: STREAM MEGSZÜNTETETT
|
||||||
@ -42,7 +43,8 @@ stream:
|
|||||||
description: Címke a csevegőüzenet beviteli mezőjén
|
description: Címke a csevegőüzenet beviteli mezőjén
|
||||||
no_signer: Nem tud üzeneteket írni az npub bejelentkezéssel
|
no_signer: Nem tud üzeneteket írni az npub bejelentkezéssel
|
||||||
"@no_signer":
|
"@no_signer":
|
||||||
description: A csevegés bemeneti üzenete megjelenik, ha a felhasználó csak pubkey-vel van bejelentkezve
|
description: A csevegés bemeneti üzenete megjelenik, ha a felhasználó csak
|
||||||
|
pubkey-vel van bejelentkezve
|
||||||
login: Kérjük, jelentkezzen be az üzenetek küldéséhez
|
login: Kérjük, jelentkezzen be az üzenetek küldéséhez
|
||||||
"@login":
|
"@login":
|
||||||
description: A felhasználó kijelentkezésekor megjelenő csevegési beviteli üzenet
|
description: A felhasználó kijelentkezésekor megjelenő csevegési beviteli üzenet
|
||||||
@ -51,13 +53,13 @@ stream:
|
|||||||
"@awarded_to":
|
"@awarded_to":
|
||||||
description: Fejléc a jelvényt kapott felhasználók listája fölött
|
description: Fejléc a jelvényt kapott felhasználók listája fölött
|
||||||
raid:
|
raid:
|
||||||
to: RAIDING $name
|
to: RAIDING ${name}
|
||||||
"@to":
|
"@to":
|
||||||
description: Chat raid üzenet egy másik folyamba
|
description: Chat raid üzenet egy másik folyamba
|
||||||
from: RAID FROM $name
|
from: RAID FROM ${name}
|
||||||
"@from":
|
"@from":
|
||||||
description: Chat raid üzenet egy másik folyamból
|
description: Chat raid üzenet egy másik folyamból
|
||||||
countdown: Raiding a $time oldalon
|
countdown: Raiding a ${time} oldalon
|
||||||
"@countdown":
|
"@countdown":
|
||||||
description: Visszaszámláló időzítő az automatikus lovagláshoz
|
description: Visszaszámláló időzítő az automatikus lovagláshoz
|
||||||
goal:
|
goal:
|
||||||
@ -80,10 +82,12 @@ button:
|
|||||||
unmute: Némítás visszavonása
|
unmute: Némítás visszavonása
|
||||||
share: Megosztás
|
share: Megosztás
|
||||||
save: Mentés
|
save: Mentés
|
||||||
|
connect: Csatlakozás
|
||||||
|
settings: Beállítások
|
||||||
embed:
|
embed:
|
||||||
article_by: A $name cikke.
|
article_by: Cikk ${name}
|
||||||
note_by: $name bejegyzése
|
note_by: $name bejegyzése
|
||||||
live_stream_by: Élő közvetítés a $name oldalon
|
live_stream_by: Élő közvetítés a ${name}oldalon
|
||||||
stream_list:
|
stream_list:
|
||||||
following: Követettek bejegyzései
|
following: Követettek bejegyzései
|
||||||
live: Élő
|
live: Élő
|
||||||
@ -99,6 +103,7 @@ zap:
|
|||||||
button_zap_ready: Zap $amount satoshi
|
button_zap_ready: Zap $amount satoshi
|
||||||
button_zap: Zap
|
button_zap: Zap
|
||||||
button_open_wallet: Megnyitás a pénztárcában
|
button_open_wallet: Megnyitás a pénztárcában
|
||||||
|
button_connect_wallet: Connect Wallet
|
||||||
copy: Vágólapra másolva
|
copy: Vágólapra másolva
|
||||||
error:
|
error:
|
||||||
invalid_custom_amount: Érvénytelen egyéni összeg
|
invalid_custom_amount: Érvénytelen egyéni összeg
|
||||||
@ -106,13 +111,21 @@ zap:
|
|||||||
no_lud16: Nem talált villámcím
|
no_lud16: Nem talált villámcím
|
||||||
profile:
|
profile:
|
||||||
past_streams: Múltbeli Streamek
|
past_streams: Múltbeli Streamek
|
||||||
edit:
|
settings:
|
||||||
|
button_profile: Profil szerkesztése
|
||||||
|
button_wallet: Pénztárca beállítások
|
||||||
|
profile:
|
||||||
display_name: Megjelenített név
|
display_name: Megjelenített név
|
||||||
about: Névjegy
|
about: A oldalról
|
||||||
nip05: Nostr-cím
|
nip05: Nostr cím
|
||||||
lud16: Lightning-cím
|
lud16: Villám cím
|
||||||
error:
|
error:
|
||||||
logged_out: Kijelentkezve nem lehet profilt szerkeszteni
|
logged_out: Kijelentkezve nem lehet profilt szerkeszteni
|
||||||
|
wallet:
|
||||||
|
connect_wallet: Connect Wallet (NWC nwc://)
|
||||||
|
disconnect_wallet: Pénztárca lekapcsolása
|
||||||
|
error:
|
||||||
|
logged_out: Kijelentkezve nem lehet csatlakozni a pénztárcához
|
||||||
login:
|
login:
|
||||||
username: Felhasználónév
|
username: Felhasználónév
|
||||||
amber: Bejelentkezés Amber segítségével
|
amber: Bejelentkezés Amber segítségével
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
upload_avatar: Carica Avatar
|
upload_avatar: Carica Avatar
|
||||||
"@upload_avatar":
|
"@upload_avatar":
|
||||||
description: Testo che richiede all'utente di premere il segnaposto dell'avatar per iniziare il caricamento
|
description: Testo che richiede all'utente di premere il segnaposto dell'avatar
|
||||||
|
per iniziare il caricamento
|
||||||
most_zapped_streamers: Il maggior numero di streamer bloccati
|
most_zapped_streamers: Il maggior numero di streamer bloccati
|
||||||
"@most_zapped_streamers":
|
"@most_zapped_streamers":
|
||||||
description: Direzione sopra elencata top streamers da zaps
|
description: Direzione sopra elencata top streamers da zaps
|
||||||
@ -42,7 +43,8 @@ stream:
|
|||||||
description: Etichetta della casella di immissione del messaggio di chat
|
description: Etichetta della casella di immissione del messaggio di chat
|
||||||
no_signer: Impossibile scrivere messaggi con il login npub
|
no_signer: Impossibile scrivere messaggi con il login npub
|
||||||
"@no_signer":
|
"@no_signer":
|
||||||
description: Messaggio di ingresso alla chat mostrato quando l'utente è connesso solo con la pubkey
|
description: Messaggio di ingresso alla chat mostrato quando l'utente è connesso
|
||||||
|
solo con la pubkey
|
||||||
login: Effettuare il login per inviare messaggi
|
login: Effettuare il login per inviare messaggi
|
||||||
"@login":
|
"@login":
|
||||||
description: Messaggio di input della chat mostrato quando l'utente è disconnesso
|
description: Messaggio di input della chat mostrato quando l'utente è disconnesso
|
||||||
@ -80,6 +82,8 @@ button:
|
|||||||
unmute: Riattiva
|
unmute: Riattiva
|
||||||
share: Condividi
|
share: Condividi
|
||||||
save: Salva
|
save: Salva
|
||||||
|
connect: Collegare
|
||||||
|
settings: Impostazioni
|
||||||
embed:
|
embed:
|
||||||
article_by: Articolo di $name
|
article_by: Articolo di $name
|
||||||
note_by: Nota di $name
|
note_by: Nota di $name
|
||||||
@ -90,7 +94,8 @@ stream_list:
|
|||||||
planned: Pianificato
|
planned: Pianificato
|
||||||
ended: Terminato
|
ended: Terminato
|
||||||
"@stream_list":
|
"@stream_list":
|
||||||
description: Titoli sugli elenchi dei flussi per tipo di flusso live/finito/pianificato ecc.
|
description: Titoli sugli elenchi dei flussi per tipo di flusso
|
||||||
|
live/finito/pianificato ecc.
|
||||||
zap:
|
zap:
|
||||||
title: Zap $name
|
title: Zap $name
|
||||||
custom_amount: Importo personalizzato
|
custom_amount: Importo personalizzato
|
||||||
@ -99,6 +104,7 @@ zap:
|
|||||||
button_zap_ready: Zap $amount sats
|
button_zap_ready: Zap $amount sats
|
||||||
button_zap: Zap
|
button_zap: Zap
|
||||||
button_open_wallet: Aprire nel portafoglio
|
button_open_wallet: Aprire nel portafoglio
|
||||||
|
button_connect_wallet: Portafoglio Connect
|
||||||
copy: Copiato negli appunti
|
copy: Copiato negli appunti
|
||||||
error:
|
error:
|
||||||
invalid_custom_amount: Importo personalizzato non valido
|
invalid_custom_amount: Importo personalizzato non valido
|
||||||
@ -106,13 +112,21 @@ zap:
|
|||||||
no_lud16: Nessun indirizzo di fulmine trovato
|
no_lud16: Nessun indirizzo di fulmine trovato
|
||||||
profile:
|
profile:
|
||||||
past_streams: Flussi passati
|
past_streams: Flussi passati
|
||||||
edit:
|
settings:
|
||||||
|
button_profile: Modifica profilo
|
||||||
|
button_wallet: Impostazioni del portafoglio
|
||||||
|
profile:
|
||||||
display_name: Nome visualizzato
|
display_name: Nome visualizzato
|
||||||
about: Info
|
about: Circa
|
||||||
nip05: Indirizzo Nostr
|
nip05: Indirizzo
|
||||||
lud16: Indirizzo del fulmine
|
lud16: Indirizzo del fulmine
|
||||||
error:
|
error:
|
||||||
logged_out: Impossibile modificare il profilo quando si è disconnessi
|
logged_out: Impossibile modificare il profilo quando si è disconnessi
|
||||||
|
wallet:
|
||||||
|
connect_wallet: Portafoglio Connect (NWC nwc://)
|
||||||
|
disconnect_wallet: Disconnettere il portafoglio
|
||||||
|
error:
|
||||||
|
logged_out: Impossibile connettere il portafoglio quando si è disconnessi
|
||||||
login:
|
login:
|
||||||
username: Nome utente
|
username: Nome utente
|
||||||
amber: Accesso con Amber
|
amber: Accesso con Amber
|
||||||
|
@ -80,6 +80,8 @@ button:
|
|||||||
unmute: ミュート解除
|
unmute: ミュート解除
|
||||||
share: 共有
|
share: 共有
|
||||||
save: 保存
|
save: 保存
|
||||||
|
connect: 接続
|
||||||
|
settings: 設定
|
||||||
embed:
|
embed:
|
||||||
article_by: 記事: $name
|
article_by: 記事: $name
|
||||||
note_by: $name の投稿
|
note_by: $name の投稿
|
||||||
@ -99,6 +101,7 @@ zap:
|
|||||||
button_zap_ready: $amount satsをザップする
|
button_zap_ready: $amount satsをザップする
|
||||||
button_zap: ザップ
|
button_zap: ザップ
|
||||||
button_open_wallet: ウォレットで開く
|
button_open_wallet: ウォレットで開く
|
||||||
|
button_connect_wallet: コネクトウォレット
|
||||||
copy: クリップボードにコピー
|
copy: クリップボードにコピー
|
||||||
error:
|
error:
|
||||||
invalid_custom_amount: 無効なカスタム金額
|
invalid_custom_amount: 無効なカスタム金額
|
||||||
@ -106,13 +109,21 @@ zap:
|
|||||||
no_lud16: 雷アドレスが見つかりません
|
no_lud16: 雷アドレスが見つかりません
|
||||||
profile:
|
profile:
|
||||||
past_streams: 過去の配信
|
past_streams: 過去の配信
|
||||||
edit:
|
settings:
|
||||||
|
button_profile: プロフィール編集
|
||||||
|
button_wallet: ウォレットの設定
|
||||||
|
profile:
|
||||||
display_name: 表示名
|
display_name: 表示名
|
||||||
about: 自己紹介
|
about: について
|
||||||
nip05: Nostrアドレス
|
nip05: 住所
|
||||||
lud16: ライトニングアドレス
|
lud16: ライトニングアドレス
|
||||||
error:
|
error:
|
||||||
logged_out: ログアウトするとプロフィールが編集できない
|
logged_out: ログアウトするとプロフィールが編集できない
|
||||||
|
wallet:
|
||||||
|
connect_wallet: コネクトウォレット (NWC nwc://)
|
||||||
|
disconnect_wallet: ウォレットの切断
|
||||||
|
error:
|
||||||
|
logged_out: ログアウト時にウォレットに接続できない
|
||||||
login:
|
login:
|
||||||
username: ユーザー名
|
username: ユーザー名
|
||||||
amber: 琥珀でログイン
|
amber: 琥珀でログイン
|
||||||
|
@ -80,6 +80,8 @@ button:
|
|||||||
unmute: 뮤트 해제
|
unmute: 뮤트 해제
|
||||||
share: 공유
|
share: 공유
|
||||||
save: 저장
|
save: 저장
|
||||||
|
connect: 연결
|
||||||
|
settings: 설정
|
||||||
embed:
|
embed:
|
||||||
article_by: "작성자: $name"
|
article_by: "작성자: $name"
|
||||||
note_by: "노트 작성됨: $name"
|
note_by: "노트 작성됨: $name"
|
||||||
@ -99,6 +101,7 @@ zap:
|
|||||||
button_zap_ready: Zap $amount sats
|
button_zap_ready: Zap $amount sats
|
||||||
button_zap: Zap
|
button_zap: Zap
|
||||||
button_open_wallet: 지갑에서 열기
|
button_open_wallet: 지갑에서 열기
|
||||||
|
button_connect_wallet: 지갑 연결
|
||||||
copy: 클립보드에 복사
|
copy: 클립보드에 복사
|
||||||
error:
|
error:
|
||||||
invalid_custom_amount: 잘못된 사용자 지정 금액
|
invalid_custom_amount: 잘못된 사용자 지정 금액
|
||||||
@ -106,13 +109,21 @@ zap:
|
|||||||
no_lud16: 번개 주소를 찾을 수 없습니다.
|
no_lud16: 번개 주소를 찾을 수 없습니다.
|
||||||
profile:
|
profile:
|
||||||
past_streams: 과거 스트림
|
past_streams: 과거 스트림
|
||||||
edit:
|
settings:
|
||||||
|
button_profile: 프로필 수정
|
||||||
|
button_wallet: 지갑 설정
|
||||||
|
profile:
|
||||||
display_name: 표시 이름
|
display_name: 표시 이름
|
||||||
about: 정보
|
about: 정보
|
||||||
nip05: 노스트르 주소
|
nip05: 노스트르 주소
|
||||||
lud16: 라이트닝 주소
|
lud16: 라이트닝 주소
|
||||||
error:
|
error:
|
||||||
logged_out: 로그아웃 시 프로필 수정 불가
|
logged_out: 로그아웃 시 프로필 수정 불가
|
||||||
|
wallet:
|
||||||
|
connect_wallet: 지갑 연결(NWC nwc://)
|
||||||
|
disconnect_wallet: 지갑 연결 해제
|
||||||
|
error:
|
||||||
|
logged_out: 로그아웃 시 지갑 연결 불가
|
||||||
login:
|
login:
|
||||||
username: 사용자 이름
|
username: 사용자 이름
|
||||||
amber: Amber로 로그인
|
amber: Amber로 로그인
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
upload_avatar: Avatar uploaden
|
upload_avatar: Avatar uploaden
|
||||||
"@upload_avatar":
|
"@upload_avatar":
|
||||||
description: Tekst die de gebruiker vraagt om op de avatar-plaatshouder te klikken om te beginnen met uploaden
|
description: Tekst die de gebruiker vraagt om op de avatar-plaatshouder te
|
||||||
|
klikken om te beginnen met uploaden
|
||||||
most_zapped_streamers: Meeste Zapped Streamers
|
most_zapped_streamers: Meeste Zapped Streamers
|
||||||
"@most_zapped_streamers":
|
"@most_zapped_streamers":
|
||||||
description: Koers over beursgenoteerde topstreamers door zaps
|
description: Koers over beursgenoteerde topstreamers door zaps
|
||||||
@ -42,10 +43,12 @@ stream:
|
|||||||
description: Label op het invoerveld voor chatberichten
|
description: Label op het invoerveld voor chatberichten
|
||||||
no_signer: Kan geen berichten schrijven met npub login
|
no_signer: Kan geen berichten schrijven met npub login
|
||||||
"@no_signer":
|
"@no_signer":
|
||||||
description: Chatinvoerbericht getoond wanneer de gebruiker alleen is ingelogd met pubkey
|
description: Chatinvoerbericht getoond wanneer de gebruiker alleen is ingelogd
|
||||||
|
met pubkey
|
||||||
login: Log in om berichten te verzenden
|
login: Log in om berichten te verzenden
|
||||||
"@login":
|
"@login":
|
||||||
description: Chatinvoerbericht dat wordt weergegeven wanneer de gebruiker is uitgelogd
|
description: Chatinvoerbericht dat wordt weergegeven wanneer de gebruiker is
|
||||||
|
uitgelogd
|
||||||
badge:
|
badge:
|
||||||
awarded_to: "Toegekend aan:"
|
awarded_to: "Toegekend aan:"
|
||||||
"@awarded_to":
|
"@awarded_to":
|
||||||
@ -80,6 +83,8 @@ button:
|
|||||||
unmute: Niet langer negeren
|
unmute: Niet langer negeren
|
||||||
share: Deel
|
share: Deel
|
||||||
save: Opslaan
|
save: Opslaan
|
||||||
|
connect: Maak verbinding met
|
||||||
|
settings: Instellingen
|
||||||
embed:
|
embed:
|
||||||
article_by: Artikel door $name
|
article_by: Artikel door $name
|
||||||
note_by: Opmerking door $name
|
note_by: Opmerking door $name
|
||||||
@ -99,6 +104,7 @@ zap:
|
|||||||
button_zap_ready: Zap $amount sats
|
button_zap_ready: Zap $amount sats
|
||||||
button_zap: Zap
|
button_zap: Zap
|
||||||
button_open_wallet: Openen in portefeuille
|
button_open_wallet: Openen in portefeuille
|
||||||
|
button_connect_wallet: Portemonnee aansluiten
|
||||||
copy: Gekopieerd naar klembord
|
copy: Gekopieerd naar klembord
|
||||||
error:
|
error:
|
||||||
invalid_custom_amount: Ongeldig aangepast bedrag
|
invalid_custom_amount: Ongeldig aangepast bedrag
|
||||||
@ -106,13 +112,21 @@ zap:
|
|||||||
no_lud16: Geen bliksemadres gevonden
|
no_lud16: Geen bliksemadres gevonden
|
||||||
profile:
|
profile:
|
||||||
past_streams: Afgelopen Streams
|
past_streams: Afgelopen Streams
|
||||||
edit:
|
settings:
|
||||||
|
button_profile: Profiel bewerken
|
||||||
|
button_wallet: Portemonnee-instellingen
|
||||||
|
profile:
|
||||||
display_name: Naam weergeven
|
display_name: Naam weergeven
|
||||||
about: Over ons
|
about: Over
|
||||||
nip05: Nostr Adres
|
nip05: Nostr Adres
|
||||||
lud16: Lightning adres
|
lud16: Bliksemadres
|
||||||
error:
|
error:
|
||||||
logged_out: Kan profiel niet bewerken als ik ben uitgelogd
|
logged_out: Kan profiel niet bewerken als ik ben uitgelogd
|
||||||
|
wallet:
|
||||||
|
connect_wallet: Portemonnee verbinden (NWC nwc://)
|
||||||
|
disconnect_wallet: Portefeuille loskoppelen
|
||||||
|
error:
|
||||||
|
logged_out: Kan geen verbinding maken met portemonnee als ik ben uitgelogd
|
||||||
login:
|
login:
|
||||||
username: Gebruikersnaam
|
username: Gebruikersnaam
|
||||||
amber: Inloggen met Amber
|
amber: Inloggen met Amber
|
||||||
|
@ -51,13 +51,13 @@ stream:
|
|||||||
"@awarded_to":
|
"@awarded_to":
|
||||||
description: Heading over list of users who are awarded a badge
|
description: Heading over list of users who are awarded a badge
|
||||||
raid:
|
raid:
|
||||||
to: RAIDING $name
|
to: RAIDING ${name}
|
||||||
"@to":
|
"@to":
|
||||||
description: Chat raid message to another stream
|
description: Chat raid message to another stream
|
||||||
from: RAID FROM $name
|
from: RAID FROM ${name}
|
||||||
"@from":
|
"@from":
|
||||||
description: Chat raid message from another stream
|
description: Chat raid message from another stream
|
||||||
countdown: Raiding in $time
|
countdown: Raiding in ${time}
|
||||||
"@countdown":
|
"@countdown":
|
||||||
description: Countdown timer for auto-raiding
|
description: Countdown timer for auto-raiding
|
||||||
goal:
|
goal:
|
||||||
@ -80,10 +80,12 @@ button:
|
|||||||
unmute: Unmute
|
unmute: Unmute
|
||||||
share: Share
|
share: Share
|
||||||
save: Save
|
save: Save
|
||||||
|
connect: Connect
|
||||||
|
settings: Settings
|
||||||
embed:
|
embed:
|
||||||
article_by: Article by $name
|
article_by: Article by ${name}
|
||||||
note_by: Note by $name
|
note_by: Note by $name
|
||||||
live_stream_by: Live stream by $name
|
live_stream_by: Live stream by ${name}
|
||||||
stream_list:
|
stream_list:
|
||||||
following: Following
|
following: Following
|
||||||
live: Live
|
live: Live
|
||||||
@ -99,6 +101,7 @@ zap:
|
|||||||
button_zap_ready: Zap $amount sats
|
button_zap_ready: Zap $amount sats
|
||||||
button_zap: Zap
|
button_zap: Zap
|
||||||
button_open_wallet: Open in Wallet
|
button_open_wallet: Open in Wallet
|
||||||
|
button_connect_wallet: Connect Wallet
|
||||||
copy: Copied to clipboard
|
copy: Copied to clipboard
|
||||||
error:
|
error:
|
||||||
invalid_custom_amount: Invalid custom amount
|
invalid_custom_amount: Invalid custom amount
|
||||||
@ -106,13 +109,21 @@ zap:
|
|||||||
no_lud16: No lightning address found
|
no_lud16: No lightning address found
|
||||||
profile:
|
profile:
|
||||||
past_streams: Past Streams
|
past_streams: Past Streams
|
||||||
edit:
|
settings:
|
||||||
|
button_profile: Edit Profile
|
||||||
|
button_wallet: Wallet Settings
|
||||||
|
profile:
|
||||||
display_name: Display Name
|
display_name: Display Name
|
||||||
about: About
|
about: About
|
||||||
nip05: Nostr Address
|
nip05: Nostr Address
|
||||||
lud16: Lightning Address
|
lud16: Lightning Address
|
||||||
error:
|
error:
|
||||||
logged_out: Cant edit profile when logged out
|
logged_out: Cant edit profile when logged out
|
||||||
|
wallet:
|
||||||
|
connect_wallet: Connect Wallet (NWC nwc://)
|
||||||
|
disconnect_wallet: Disconnect Wallet
|
||||||
|
error:
|
||||||
|
logged_out: Cant connect wallet when logged out
|
||||||
login:
|
login:
|
||||||
username: Username
|
username: Username
|
||||||
amber: Login with Amber
|
amber: Login with Amber
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
upload_avatar: Prześlij awatar
|
upload_avatar: Prześlij awatar
|
||||||
"@upload_avatar":
|
"@upload_avatar":
|
||||||
description: Tekst zachęcający użytkownika do kliknięcia symbolu zastępczego awatara w celu rozpoczęcia przesyłania.
|
description: Tekst zachęcający użytkownika do kliknięcia symbolu zastępczego
|
||||||
|
awatara w celu rozpoczęcia przesyłania.
|
||||||
most_zapped_streamers: Większość zapped streamerów
|
most_zapped_streamers: Większość zapped streamerów
|
||||||
"@most_zapped_streamers":
|
"@most_zapped_streamers":
|
||||||
description: Przechodzenie nad wymienionymi topowymi streamerami przez zapy
|
description: Przechodzenie nad wymienionymi topowymi streamerami przez zapy
|
||||||
@ -42,7 +43,8 @@ stream:
|
|||||||
description: Etykieta w polu wprowadzania wiadomości czatu
|
description: Etykieta w polu wprowadzania wiadomości czatu
|
||||||
no_signer: Nie można pisać wiadomości z loginem npub
|
no_signer: Nie można pisać wiadomości z loginem npub
|
||||||
"@no_signer":
|
"@no_signer":
|
||||||
description: Komunikat wejściowy czatu wyświetlany, gdy użytkownik jest zalogowany tylko za pomocą klucza pubkey
|
description: Komunikat wejściowy czatu wyświetlany, gdy użytkownik jest
|
||||||
|
zalogowany tylko za pomocą klucza pubkey
|
||||||
login: Zaloguj się, aby wysyłać wiadomości
|
login: Zaloguj się, aby wysyłać wiadomości
|
||||||
"@login":
|
"@login":
|
||||||
description: Komunikat wejściowy czatu wyświetlany, gdy użytkownik jest wylogowany
|
description: Komunikat wejściowy czatu wyświetlany, gdy użytkownik jest wylogowany
|
||||||
@ -80,6 +82,8 @@ button:
|
|||||||
unmute: Wyłącz wyciszenie
|
unmute: Wyłącz wyciszenie
|
||||||
share: Udział
|
share: Udział
|
||||||
save: Zapisz
|
save: Zapisz
|
||||||
|
connect: Połączenie
|
||||||
|
settings: Ustawienia
|
||||||
embed:
|
embed:
|
||||||
article_by: Artykuł autorstwa $name
|
article_by: Artykuł autorstwa $name
|
||||||
note_by: Uwaga $name
|
note_by: Uwaga $name
|
||||||
@ -90,7 +94,8 @@ stream_list:
|
|||||||
planned: Planowane
|
planned: Planowane
|
||||||
ended: Zakończony
|
ended: Zakończony
|
||||||
"@stream_list":
|
"@stream_list":
|
||||||
description: Nagłówki na listach strumieni według typu strumienia na żywo / zakończony / planowany itp.
|
description: Nagłówki na listach strumieni według typu strumienia na żywo /
|
||||||
|
zakończony / planowany itp.
|
||||||
zap:
|
zap:
|
||||||
title: Zap $name
|
title: Zap $name
|
||||||
custom_amount: Kwota niestandardowa
|
custom_amount: Kwota niestandardowa
|
||||||
@ -99,6 +104,7 @@ zap:
|
|||||||
button_zap_ready: Zap $amount sats
|
button_zap_ready: Zap $amount sats
|
||||||
button_zap: Zap
|
button_zap: Zap
|
||||||
button_open_wallet: Otwórz w portfelu
|
button_open_wallet: Otwórz w portfelu
|
||||||
|
button_connect_wallet: Connect Wallet
|
||||||
copy: Skopiowane do schowka
|
copy: Skopiowane do schowka
|
||||||
error:
|
error:
|
||||||
invalid_custom_amount: Nieprawidłowa kwota niestandardowa
|
invalid_custom_amount: Nieprawidłowa kwota niestandardowa
|
||||||
@ -106,13 +112,21 @@ zap:
|
|||||||
no_lud16: Nie znaleziono adresu pioruna
|
no_lud16: Nie znaleziono adresu pioruna
|
||||||
profile:
|
profile:
|
||||||
past_streams: Poprzednie strumienie
|
past_streams: Poprzednie strumienie
|
||||||
edit:
|
settings:
|
||||||
|
button_profile: Edytuj profil
|
||||||
|
button_wallet: Ustawienia portfela
|
||||||
|
profile:
|
||||||
display_name: Wyświetlana nazwa
|
display_name: Wyświetlana nazwa
|
||||||
about: O
|
about: O
|
||||||
nip05: Adres Nostr
|
nip05: Adres Nostr
|
||||||
lud16: Adres błyskawicy
|
lud16: Adres błyskawicy
|
||||||
error:
|
error:
|
||||||
logged_out: Nie można edytować profilu po wylogowaniu
|
logged_out: Nie można edytować profilu po wylogowaniu
|
||||||
|
wallet:
|
||||||
|
connect_wallet: Connect Wallet (NWC nwc://)
|
||||||
|
disconnect_wallet: Odłącz portfel
|
||||||
|
error:
|
||||||
|
logged_out: Nie można połączyć portfela po wylogowaniu
|
||||||
login:
|
login:
|
||||||
username: Nazwa użytkownika
|
username: Nazwa użytkownika
|
||||||
amber: Zaloguj się za pomocą Amber
|
amber: Zaloguj się za pomocą Amber
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
upload_avatar: Carregar Avatar
|
upload_avatar: Carregar Avatar
|
||||||
"@upload_avatar":
|
"@upload_avatar":
|
||||||
description: Texto solicitando que o usuário clique no espaço reservado do avatar para iniciar o upload
|
description: Texto solicitando que o usuário clique no espaço reservado do
|
||||||
|
avatar para iniciar o upload
|
||||||
most_zapped_streamers: Streamers mais afetados
|
most_zapped_streamers: Streamers mais afetados
|
||||||
"@most_zapped_streamers":
|
"@most_zapped_streamers":
|
||||||
description: Dirigindo-se para as principais serpentinas listadas por zaps
|
description: Dirigindo-se para as principais serpentinas listadas por zaps
|
||||||
@ -42,7 +43,8 @@ stream:
|
|||||||
description: Rótulo na caixa de entrada da mensagem de bate-papo
|
description: Rótulo na caixa de entrada da mensagem de bate-papo
|
||||||
no_signer: Não é possível escrever mensagens com o login do npub
|
no_signer: Não é possível escrever mensagens com o login do npub
|
||||||
"@no_signer":
|
"@no_signer":
|
||||||
description: Mensagem de entrada de bate-papo exibida quando o usuário está conectado apenas com a pubkey
|
description: Mensagem de entrada de bate-papo exibida quando o usuário está
|
||||||
|
conectado apenas com a pubkey
|
||||||
login: Faça login para enviar mensagens
|
login: Faça login para enviar mensagens
|
||||||
"@login":
|
"@login":
|
||||||
description: Mensagem de entrada de chat exibida quando o usuário está desconectado
|
description: Mensagem de entrada de chat exibida quando o usuário está desconectado
|
||||||
@ -80,6 +82,8 @@ button:
|
|||||||
unmute: Desmutar
|
unmute: Desmutar
|
||||||
share: Compartilhar
|
share: Compartilhar
|
||||||
save: Salvar
|
save: Salvar
|
||||||
|
connect: Conectar
|
||||||
|
settings: Configurações
|
||||||
embed:
|
embed:
|
||||||
article_by: Artigo de $name
|
article_by: Artigo de $name
|
||||||
note_by: Nota de $name
|
note_by: Nota de $name
|
||||||
@ -90,7 +94,8 @@ stream_list:
|
|||||||
planned: Planejado
|
planned: Planejado
|
||||||
ended: Encerrado
|
ended: Encerrado
|
||||||
"@stream_list":
|
"@stream_list":
|
||||||
description: Cabeçalhos nas listas de transmissões por tipo de transmissão ao vivo/terminada/planejada etc.
|
description: Cabeçalhos nas listas de transmissões por tipo de transmissão ao
|
||||||
|
vivo/terminada/planejada etc.
|
||||||
zap:
|
zap:
|
||||||
title: Zap $name
|
title: Zap $name
|
||||||
custom_amount: Valor personalizado
|
custom_amount: Valor personalizado
|
||||||
@ -99,6 +104,7 @@ zap:
|
|||||||
button_zap_ready: Enviar Zap de $amount sats
|
button_zap_ready: Enviar Zap de $amount sats
|
||||||
button_zap: Zap
|
button_zap: Zap
|
||||||
button_open_wallet: Abrir na carteira
|
button_open_wallet: Abrir na carteira
|
||||||
|
button_connect_wallet: Conectar carteira
|
||||||
copy: Copiado para a área de transferência
|
copy: Copiado para a área de transferência
|
||||||
error:
|
error:
|
||||||
invalid_custom_amount: Valor personalizado inválido
|
invalid_custom_amount: Valor personalizado inválido
|
||||||
@ -106,13 +112,21 @@ zap:
|
|||||||
no_lud16: Nenhum endereço de raio encontrado
|
no_lud16: Nenhum endereço de raio encontrado
|
||||||
profile:
|
profile:
|
||||||
past_streams: Transmissões Passadas
|
past_streams: Transmissões Passadas
|
||||||
edit:
|
settings:
|
||||||
|
button_profile: Editar perfil
|
||||||
|
button_wallet: Configurações da carteira
|
||||||
|
profile:
|
||||||
display_name: Nome de exibição
|
display_name: Nome de exibição
|
||||||
about: Sobre
|
about: Sobre
|
||||||
nip05: Endereço do Nostr
|
nip05: Endereço Nostr
|
||||||
lud16: Endereço Lightning
|
lud16: Endereço para relâmpagos
|
||||||
error:
|
error:
|
||||||
logged_out: Não é possível editar o perfil quando se está desconectado
|
logged_out: Não é possível editar o perfil quando se está desconectado
|
||||||
|
wallet:
|
||||||
|
connect_wallet: Conectar carteira (NWC nwc://)
|
||||||
|
disconnect_wallet: Desconectar carteira
|
||||||
|
error:
|
||||||
|
logged_out: Não consigo conectar a carteira quando estou desconectado
|
||||||
login:
|
login:
|
||||||
username: Nome de usuário
|
username: Nome de usuário
|
||||||
amber: Faça login com o Amber
|
amber: Faça login com o Amber
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
upload_avatar: Încărcați Avatar
|
upload_avatar: Încărcați Avatar
|
||||||
"@upload_avatar":
|
"@upload_avatar":
|
||||||
description: Text care solicită utilizatorului să atingă marcajul avatar pentru a începe încărcarea
|
description: Text care solicită utilizatorului să atingă marcajul avatar pentru
|
||||||
|
a începe încărcarea
|
||||||
most_zapped_streamers: Cele mai multe Streamers Zapped
|
most_zapped_streamers: Cele mai multe Streamers Zapped
|
||||||
"@most_zapped_streamers":
|
"@most_zapped_streamers":
|
||||||
description: Cap peste streamers de top enumerate de zaps
|
description: Cap peste streamers de top enumerate de zaps
|
||||||
@ -42,10 +43,12 @@ stream:
|
|||||||
description: Etichetă pe caseta de introducere a mesajului de chat
|
description: Etichetă pe caseta de introducere a mesajului de chat
|
||||||
no_signer: Nu se pot scrie mesaje cu autentificarea npub
|
no_signer: Nu se pot scrie mesaje cu autentificarea npub
|
||||||
"@no_signer":
|
"@no_signer":
|
||||||
description: Mesajul de intrare în chat afișat atunci când utilizatorul este conectat doar cu pubkey
|
description: Mesajul de intrare în chat afișat atunci când utilizatorul este
|
||||||
|
conectat doar cu pubkey
|
||||||
login: Vă rugăm să vă autentificați pentru a trimite mesaje
|
login: Vă rugăm să vă autentificați pentru a trimite mesaje
|
||||||
"@login":
|
"@login":
|
||||||
description: Mesajul de intrare în chat afișat atunci când utilizatorul este deconectat
|
description: Mesajul de intrare în chat afișat atunci când utilizatorul este
|
||||||
|
deconectat
|
||||||
badge:
|
badge:
|
||||||
awarded_to: "Premiat pentru:"
|
awarded_to: "Premiat pentru:"
|
||||||
"@awarded_to":
|
"@awarded_to":
|
||||||
@ -80,6 +83,8 @@ button:
|
|||||||
unmute: Dezactivați
|
unmute: Dezactivați
|
||||||
share: Share
|
share: Share
|
||||||
save: Salvați
|
save: Salvați
|
||||||
|
connect: Conectare
|
||||||
|
settings: Setări
|
||||||
embed:
|
embed:
|
||||||
article_by: Articol de $name
|
article_by: Articol de $name
|
||||||
note_by: Notă de la $name
|
note_by: Notă de la $name
|
||||||
@ -90,7 +95,8 @@ stream_list:
|
|||||||
planned: Planificate
|
planned: Planificate
|
||||||
ended: Încheiat
|
ended: Încheiat
|
||||||
"@stream_list":
|
"@stream_list":
|
||||||
description: Rubrici pe listele de fluxuri în funcție de tipul fluxului în direct/terminat/planificat etc.
|
description: Rubrici pe listele de fluxuri în funcție de tipul fluxului în
|
||||||
|
direct/terminat/planificat etc.
|
||||||
zap:
|
zap:
|
||||||
title: Zap $name
|
title: Zap $name
|
||||||
custom_amount: Sumă personalizată
|
custom_amount: Sumă personalizată
|
||||||
@ -99,6 +105,7 @@ zap:
|
|||||||
button_zap_ready: Zap $amount sats
|
button_zap_ready: Zap $amount sats
|
||||||
button_zap: Zap
|
button_zap: Zap
|
||||||
button_open_wallet: Deschide în portofel
|
button_open_wallet: Deschide în portofel
|
||||||
|
button_connect_wallet: Conectați portofelul
|
||||||
copy: Copiat în clipboard
|
copy: Copiat în clipboard
|
||||||
error:
|
error:
|
||||||
invalid_custom_amount: Sumă personalizată invalidă
|
invalid_custom_amount: Sumă personalizată invalidă
|
||||||
@ -106,13 +113,21 @@ zap:
|
|||||||
no_lud16: Nu a fost găsită nicio adresă de fulgere
|
no_lud16: Nu a fost găsită nicio adresă de fulgere
|
||||||
profile:
|
profile:
|
||||||
past_streams: Fluxuri trecute
|
past_streams: Fluxuri trecute
|
||||||
edit:
|
settings:
|
||||||
|
button_profile: Editare profil
|
||||||
|
button_wallet: Setări portofel
|
||||||
|
profile:
|
||||||
display_name: Nume afișat
|
display_name: Nume afișat
|
||||||
about: Despre
|
about: Despre
|
||||||
nip05: Adresa Nostr
|
nip05: Adresa Nostr
|
||||||
lud16: Adresa fulgerului
|
lud16: Adresa fulgerului
|
||||||
error:
|
error:
|
||||||
logged_out: Nu pot edita profilul când sunt deconectat
|
logged_out: Nu pot edita profilul când sunt deconectat
|
||||||
|
wallet:
|
||||||
|
connect_wallet: Conectați portofelul (NWC nwc://)
|
||||||
|
disconnect_wallet: Deconectați portofelul
|
||||||
|
error:
|
||||||
|
logged_out: Nu puteți conecta portofelul atunci când sunteți deconectat
|
||||||
login:
|
login:
|
||||||
username: Nume utilizator
|
username: Nume utilizator
|
||||||
amber: Conectați-vă cu Amber
|
amber: Conectați-vă cu Amber
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
upload_avatar: Загрузить аватар
|
upload_avatar: Загрузить аватар
|
||||||
"@upload_avatar":
|
"@upload_avatar":
|
||||||
description: Текст, побуждающий пользователя нажать кнопку с изображением аватара, чтобы начать загрузку
|
description: Текст, побуждающий пользователя нажать кнопку с изображением
|
||||||
|
аватара, чтобы начать загрузку
|
||||||
most_zapped_streamers: Самые прыткие стримеры
|
most_zapped_streamers: Самые прыткие стримеры
|
||||||
"@most_zapped_streamers":
|
"@most_zapped_streamers":
|
||||||
description: Направляясь по перечисленным верхним стримерам с помощью запс
|
description: Направляясь по перечисленным верхним стримерам с помощью запс
|
||||||
@ -42,10 +43,12 @@ stream:
|
|||||||
description: Надпись на поле ввода сообщения чата
|
description: Надпись на поле ввода сообщения чата
|
||||||
no_signer: Невозможно писать сообщения с логином npub
|
no_signer: Невозможно писать сообщения с логином npub
|
||||||
"@no_signer":
|
"@no_signer":
|
||||||
description: Сообщение о входе в чат, отображаемое при входе пользователя только с pubkey
|
description: Сообщение о входе в чат, отображаемое при входе пользователя только
|
||||||
|
с pubkey
|
||||||
login: Пожалуйста, войдите в систему, чтобы отправлять сообщения
|
login: Пожалуйста, войдите в систему, чтобы отправлять сообщения
|
||||||
"@login":
|
"@login":
|
||||||
description: Сообщение о входе в чат, отображаемое при выходе пользователя из системы
|
description: Сообщение о входе в чат, отображаемое при выходе пользователя из
|
||||||
|
системы
|
||||||
badge:
|
badge:
|
||||||
awarded_to: "Награждается:"
|
awarded_to: "Награждается:"
|
||||||
"@awarded_to":
|
"@awarded_to":
|
||||||
@ -80,6 +83,8 @@ button:
|
|||||||
unmute: Включить уведомления
|
unmute: Включить уведомления
|
||||||
share: Поделиться
|
share: Поделиться
|
||||||
save: Сохранить
|
save: Сохранить
|
||||||
|
connect: Подключайтесь
|
||||||
|
settings: Настройки
|
||||||
embed:
|
embed:
|
||||||
article_by: Статья $name
|
article_by: Статья $name
|
||||||
note_by: Заметка на сайте $name
|
note_by: Заметка на сайте $name
|
||||||
@ -90,7 +95,8 @@ stream_list:
|
|||||||
planned: Запланировано
|
planned: Запланировано
|
||||||
ended: Завершено
|
ended: Завершено
|
||||||
"@stream_list":
|
"@stream_list":
|
||||||
description: Заголовки в списках потоков по типу потока - живой/законченный/запланированный и т. д.
|
description: Заголовки в списках потоков по типу потока -
|
||||||
|
живой/законченный/запланированный и т. д.
|
||||||
zap:
|
zap:
|
||||||
title: Запнуть ($name
|
title: Запнуть ($name
|
||||||
custom_amount: Пользовательская сумма
|
custom_amount: Пользовательская сумма
|
||||||
@ -99,6 +105,7 @@ zap:
|
|||||||
button_zap_ready: Запнуть $amount сат
|
button_zap_ready: Запнуть $amount сат
|
||||||
button_zap: Зап
|
button_zap: Зап
|
||||||
button_open_wallet: Открыть в кошельке
|
button_open_wallet: Открыть в кошельке
|
||||||
|
button_connect_wallet: Подключить кошелек
|
||||||
copy: Скопировано в буфер обмена
|
copy: Скопировано в буфер обмена
|
||||||
error:
|
error:
|
||||||
invalid_custom_amount: Недопустимая пользовательская сумма
|
invalid_custom_amount: Недопустимая пользовательская сумма
|
||||||
@ -106,13 +113,21 @@ zap:
|
|||||||
no_lud16: Адрес молнии не найден
|
no_lud16: Адрес молнии не найден
|
||||||
profile:
|
profile:
|
||||||
past_streams: Предыдущие трансляции
|
past_streams: Предыдущие трансляции
|
||||||
edit:
|
settings:
|
||||||
|
button_profile: Редактировать профиль
|
||||||
|
button_wallet: Настройки кошелька
|
||||||
|
profile:
|
||||||
display_name: Отображаемое имя
|
display_name: Отображаемое имя
|
||||||
about: О себе
|
about: О сайте
|
||||||
nip05: Nostr адрес
|
nip05: Адрес Ностр
|
||||||
lud16: Lightning Адрес
|
lud16: Адрес молнии
|
||||||
error:
|
error:
|
||||||
logged_out: Невозможно редактировать профиль при выходе из системы
|
logged_out: Невозможно редактировать профиль при выходе из системы
|
||||||
|
wallet:
|
||||||
|
connect_wallet: Подключите кошелек (NWC nwc://)
|
||||||
|
disconnect_wallet: Отключить кошелек
|
||||||
|
error:
|
||||||
|
logged_out: Невозможно подключить кошелек при выходе из системы
|
||||||
login:
|
login:
|
||||||
username: Имя пользователя
|
username: Имя пользователя
|
||||||
amber: Войти с помощью Amber
|
amber: Войти с помощью Amber
|
||||||
|
@ -51,13 +51,13 @@ stream:
|
|||||||
"@awarded_to":
|
"@awarded_to":
|
||||||
description: Heading over list of users who are awarded a badge
|
description: Heading over list of users who are awarded a badge
|
||||||
raid:
|
raid:
|
||||||
to: RAIDING $name
|
to: RAIDING ${name}
|
||||||
"@to":
|
"@to":
|
||||||
description: Chat raid message to another stream
|
description: Chat raid message to another stream
|
||||||
from: RAID FROM $name
|
from: RAID FROM ${name}
|
||||||
"@from":
|
"@from":
|
||||||
description: Chat raid message from another stream
|
description: Chat raid message from another stream
|
||||||
countdown: Raiding in $time
|
countdown: Raiding in ${time}
|
||||||
"@countdown":
|
"@countdown":
|
||||||
description: Countdown timer for auto-raiding
|
description: Countdown timer for auto-raiding
|
||||||
goal:
|
goal:
|
||||||
@ -80,10 +80,12 @@ button:
|
|||||||
unmute: Unmute
|
unmute: Unmute
|
||||||
share: Share
|
share: Share
|
||||||
save: Save
|
save: Save
|
||||||
|
connect: Connect
|
||||||
|
settings: Settings
|
||||||
embed:
|
embed:
|
||||||
article_by: Article by $name
|
article_by: Article by ${name}
|
||||||
note_by: Note by $name
|
note_by: Note by $name
|
||||||
live_stream_by: Live stream by $name
|
live_stream_by: Live stream by ${name}
|
||||||
stream_list:
|
stream_list:
|
||||||
following: Following
|
following: Following
|
||||||
live: Live
|
live: Live
|
||||||
@ -99,6 +101,7 @@ zap:
|
|||||||
button_zap_ready: Zap $amount sats
|
button_zap_ready: Zap $amount sats
|
||||||
button_zap: Zap
|
button_zap: Zap
|
||||||
button_open_wallet: Open in Wallet
|
button_open_wallet: Open in Wallet
|
||||||
|
button_connect_wallet: Connect Wallet
|
||||||
copy: Copied to clipboard
|
copy: Copied to clipboard
|
||||||
error:
|
error:
|
||||||
invalid_custom_amount: Invalid custom amount
|
invalid_custom_amount: Invalid custom amount
|
||||||
@ -106,13 +109,21 @@ zap:
|
|||||||
no_lud16: No lightning address found
|
no_lud16: No lightning address found
|
||||||
profile:
|
profile:
|
||||||
past_streams: Past Streams
|
past_streams: Past Streams
|
||||||
edit:
|
settings:
|
||||||
|
button_profile: Edit Profile
|
||||||
|
button_wallet: Wallet Settings
|
||||||
|
profile:
|
||||||
display_name: Display Name
|
display_name: Display Name
|
||||||
about: About
|
about: About
|
||||||
nip05: Nostr Address
|
nip05: Nostr Address
|
||||||
lud16: Lightning Address
|
lud16: Lightning Address
|
||||||
error:
|
error:
|
||||||
logged_out: Cant edit profile when logged out
|
logged_out: Cant edit profile when logged out
|
||||||
|
wallet:
|
||||||
|
connect_wallet: Connect Wallet (NWC nwc://)
|
||||||
|
disconnect_wallet: Disconnect Wallet
|
||||||
|
error:
|
||||||
|
logged_out: Cant connect wallet when logged out
|
||||||
login:
|
login:
|
||||||
username: Username
|
username: Username
|
||||||
amber: Login with Amber
|
amber: Login with Amber
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
upload_avatar: Ladda upp avatar
|
upload_avatar: Ladda upp avatar
|
||||||
"@upload_avatar":
|
"@upload_avatar":
|
||||||
description: Text som uppmanar användaren att trycka på avatarplatshållaren för att påbörja uppladdningen
|
description: Text som uppmanar användaren att trycka på avatarplatshållaren för
|
||||||
|
att påbörja uppladdningen
|
||||||
most_zapped_streamers: De flesta zappade streamers
|
most_zapped_streamers: De flesta zappade streamers
|
||||||
"@most_zapped_streamers":
|
"@most_zapped_streamers":
|
||||||
description: Rubrik över listade toppstreamers av zaps
|
description: Rubrik över listade toppstreamers av zaps
|
||||||
@ -42,7 +43,8 @@ stream:
|
|||||||
description: Etikett på inmatningsrutan för chattmeddelanden
|
description: Etikett på inmatningsrutan för chattmeddelanden
|
||||||
no_signer: Det går inte att skriva meddelanden med npub-inloggning
|
no_signer: Det går inte att skriva meddelanden med npub-inloggning
|
||||||
"@no_signer":
|
"@no_signer":
|
||||||
description: Chattinmatningsmeddelande som visas när användaren endast är inloggad med pubkey
|
description: Chattinmatningsmeddelande som visas när användaren endast är
|
||||||
|
inloggad med pubkey
|
||||||
login: Logga in för att skicka meddelanden
|
login: Logga in för att skicka meddelanden
|
||||||
"@login":
|
"@login":
|
||||||
description: Chattinmatningsmeddelande som visas när användaren är utloggad
|
description: Chattinmatningsmeddelande som visas när användaren är utloggad
|
||||||
@ -80,6 +82,8 @@ button:
|
|||||||
unmute: Avtysta
|
unmute: Avtysta
|
||||||
share: Dela
|
share: Dela
|
||||||
save: Spara
|
save: Spara
|
||||||
|
connect: Anslut
|
||||||
|
settings: Inställningar
|
||||||
embed:
|
embed:
|
||||||
article_by: Artikel av $name
|
article_by: Artikel av $name
|
||||||
note_by: Anteckning av $name
|
note_by: Anteckning av $name
|
||||||
@ -99,6 +103,7 @@ zap:
|
|||||||
button_zap_ready: Zap $amount sats
|
button_zap_ready: Zap $amount sats
|
||||||
button_zap: Zap
|
button_zap: Zap
|
||||||
button_open_wallet: Öppna i plånboken
|
button_open_wallet: Öppna i plånboken
|
||||||
|
button_connect_wallet: Anslut plånbok
|
||||||
copy: Kopieras till urklipp
|
copy: Kopieras till urklipp
|
||||||
error:
|
error:
|
||||||
invalid_custom_amount: Ogiltigt anpassat belopp
|
invalid_custom_amount: Ogiltigt anpassat belopp
|
||||||
@ -106,13 +111,21 @@ zap:
|
|||||||
no_lud16: Ingen blixtadress hittades
|
no_lud16: Ingen blixtadress hittades
|
||||||
profile:
|
profile:
|
||||||
past_streams: Tidigare streamar
|
past_streams: Tidigare streamar
|
||||||
edit:
|
settings:
|
||||||
|
button_profile: Redigera profil
|
||||||
|
button_wallet: Inställningar för plånbok
|
||||||
|
profile:
|
||||||
display_name: Visa namn
|
display_name: Visa namn
|
||||||
about: Om
|
about: Om
|
||||||
nip05: Nostr Adress
|
nip05: Nostr Adress
|
||||||
lud16: Lightning-adress
|
lud16: Adress för blixtnedslag
|
||||||
error:
|
error:
|
||||||
logged_out: Kan inte redigera profil när jag är utloggad
|
logged_out: Kan inte redigera profil när jag är utloggad
|
||||||
|
wallet:
|
||||||
|
connect_wallet: Anslut plånbok (NWC nwc://)
|
||||||
|
disconnect_wallet: Koppla bort plånboken
|
||||||
|
error:
|
||||||
|
logged_out: Kan inte ansluta plånbok när du är inloggad
|
||||||
login:
|
login:
|
||||||
username: Användarnamn
|
username: Användarnamn
|
||||||
amber: Logga in med Amber
|
amber: Logga in med Amber
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
upload_avatar: Avatar Yükle
|
upload_avatar: Avatar Yükle
|
||||||
"@upload_avatar":
|
"@upload_avatar":
|
||||||
description: Kullanıcının yüklemeye başlamak için avatar yer tutucusuna basmasını isteyen metin
|
description: Kullanıcının yüklemeye başlamak için avatar yer tutucusuna
|
||||||
|
basmasını isteyen metin
|
||||||
most_zapped_streamers: En Çok Zaplanan Flamalar
|
most_zapped_streamers: En Çok Zaplanan Flamalar
|
||||||
"@most_zapped_streamers":
|
"@most_zapped_streamers":
|
||||||
description: Zaps tarafından listelenen üst flamalar üzerinde ilerliyor
|
description: Zaps tarafından listelenen üst flamalar üzerinde ilerliyor
|
||||||
@ -42,7 +43,8 @@ stream:
|
|||||||
description: Sohbet mesajı giriş kutusundaki etiket
|
description: Sohbet mesajı giriş kutusundaki etiket
|
||||||
no_signer: Npub girişi ile mesaj yazılamıyor
|
no_signer: Npub girişi ile mesaj yazılamıyor
|
||||||
"@no_signer":
|
"@no_signer":
|
||||||
description: Kullanıcı yalnızca pubkey ile oturum açtığında gösterilen sohbet giriş mesajı
|
description: Kullanıcı yalnızca pubkey ile oturum açtığında gösterilen sohbet
|
||||||
|
giriş mesajı
|
||||||
login: Mesaj göndermek için lütfen giriş yapın
|
login: Mesaj göndermek için lütfen giriş yapın
|
||||||
"@login":
|
"@login":
|
||||||
description: Kullanıcı oturumu kapatıldığında gösterilen sohbet giriş mesajı
|
description: Kullanıcı oturumu kapatıldığında gösterilen sohbet giriş mesajı
|
||||||
@ -51,13 +53,13 @@ stream:
|
|||||||
"@awarded_to":
|
"@awarded_to":
|
||||||
description: Rozet verilen kullanıcıların listesi üzerinde başlık
|
description: Rozet verilen kullanıcıların listesi üzerinde başlık
|
||||||
raid:
|
raid:
|
||||||
to: RAIDING ${name}S
|
to: RAIDING $name
|
||||||
"@to":
|
"@to":
|
||||||
description: Başka bir akışa sohbet baskını mesajı
|
description: Başka bir akışa sohbet baskını mesajı
|
||||||
from: $name ADRESINDEN RAID
|
from: ${name}ADRESINDEN RAID
|
||||||
"@from":
|
"@from":
|
||||||
description: Başka bir akıştan sohbet baskını mesajı
|
description: Başka bir akıştan sohbet baskını mesajı
|
||||||
countdown: $time adresinde baskın
|
countdown: ${time}adresinde baskın
|
||||||
"@countdown":
|
"@countdown":
|
||||||
description: Otomatik sürüş için geri sayım sayacı
|
description: Otomatik sürüş için geri sayım sayacı
|
||||||
goal:
|
goal:
|
||||||
@ -80,6 +82,8 @@ button:
|
|||||||
unmute: Sesi aç
|
unmute: Sesi aç
|
||||||
share: Paylaş
|
share: Paylaş
|
||||||
save: Kaydet
|
save: Kaydet
|
||||||
|
connect: Bağlan
|
||||||
|
settings: Ayarlar
|
||||||
embed:
|
embed:
|
||||||
article_by: Makale $name
|
article_by: Makale $name
|
||||||
note_by: "Not: $name"
|
note_by: "Not: $name"
|
||||||
@ -99,6 +103,7 @@ zap:
|
|||||||
button_zap_ready: Zap $amount sats
|
button_zap_ready: Zap $amount sats
|
||||||
button_zap: Zap
|
button_zap: Zap
|
||||||
button_open_wallet: Cüzdanda Aç
|
button_open_wallet: Cüzdanda Aç
|
||||||
|
button_connect_wallet: Cüzdan Bağlayın
|
||||||
copy: Panoya kopyalandı
|
copy: Panoya kopyalandı
|
||||||
error:
|
error:
|
||||||
invalid_custom_amount: Geçersiz özel tutar
|
invalid_custom_amount: Geçersiz özel tutar
|
||||||
@ -106,13 +111,21 @@ zap:
|
|||||||
no_lud16: Yıldırım adresi bulunamadı
|
no_lud16: Yıldırım adresi bulunamadı
|
||||||
profile:
|
profile:
|
||||||
past_streams: Geçmiş Akışlar
|
past_streams: Geçmiş Akışlar
|
||||||
edit:
|
settings:
|
||||||
|
button_profile: Profil Düzenle
|
||||||
|
button_wallet: Cüzdan Ayarları
|
||||||
|
profile:
|
||||||
display_name: Ekran Adı
|
display_name: Ekran Adı
|
||||||
about: Hakkında
|
about: Hakkında
|
||||||
nip05: Nostr Adres
|
nip05: Nostr Adres
|
||||||
lud16: Yıldırım Adres
|
lud16: Yıldırım Adres
|
||||||
error:
|
error:
|
||||||
logged_out: Çıkış yapıldığında profil düzenlenemiyor
|
logged_out: Çıkış yapıldığında profil düzenlenemiyor
|
||||||
|
wallet:
|
||||||
|
connect_wallet: Cüzdanı Bağlayın (NWC nwc://)
|
||||||
|
disconnect_wallet: Cüzdan Bağlantısını Kes
|
||||||
|
error:
|
||||||
|
logged_out: Oturumu kapattığımda cüzdana bağlanamıyorum
|
||||||
login:
|
login:
|
||||||
username: Kullanıcı Adı
|
username: Kullanıcı Adı
|
||||||
amber: Amber ile Giriş Yapın
|
amber: Amber ile Giriş Yapın
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
upload_avatar: Завантажити аватар
|
upload_avatar: Завантажити аватар
|
||||||
"@upload_avatar":
|
"@upload_avatar":
|
||||||
description: Текст, що пропонує користувачеві натиснути на заповнювач аватара, щоб почати завантаження
|
description: Текст, що пропонує користувачеві натиснути на заповнювач аватара,
|
||||||
|
щоб почати завантаження
|
||||||
most_zapped_streamers: Більшість стримерів, які були під напругою
|
most_zapped_streamers: Більшість стримерів, які були під напругою
|
||||||
"@most_zapped_streamers":
|
"@most_zapped_streamers":
|
||||||
description: Перехід до переліку найкращих стрімерів за запитами
|
description: Перехід до переліку найкращих стрімерів за запитами
|
||||||
@ -42,10 +43,12 @@ stream:
|
|||||||
description: Мітка у вікні введення повідомлення чату
|
description: Мітка у вікні введення повідомлення чату
|
||||||
no_signer: Неможливо писати повідомлення з логіном npub
|
no_signer: Неможливо писати повідомлення з логіном npub
|
||||||
"@no_signer":
|
"@no_signer":
|
||||||
description: Повідомлення в чаті, що відображається, коли користувач увійшов до системи лише з ключем pubkey
|
description: Повідомлення в чаті, що відображається, коли користувач увійшов до
|
||||||
|
системи лише з ключем pubkey
|
||||||
login: Будь ласка, авторизуйтесь, щоб надсилати повідомлення
|
login: Будь ласка, авторизуйтесь, щоб надсилати повідомлення
|
||||||
"@login":
|
"@login":
|
||||||
description: Повідомлення для введення в чаті, що відображається, коли користувач вийшов з системи
|
description: Повідомлення для введення в чаті, що відображається, коли
|
||||||
|
користувач вийшов з системи
|
||||||
badge:
|
badge:
|
||||||
awarded_to: "Нагороджується:"
|
awarded_to: "Нагороджується:"
|
||||||
"@awarded_to":
|
"@awarded_to":
|
||||||
@ -80,6 +83,8 @@ button:
|
|||||||
unmute: Увімкнути звук.
|
unmute: Увімкнути звук.
|
||||||
share: Поділіться
|
share: Поділіться
|
||||||
save: Зберегти
|
save: Зберегти
|
||||||
|
connect: Підключіться
|
||||||
|
settings: Налаштування
|
||||||
embed:
|
embed:
|
||||||
article_by: Стаття за посиланням $name
|
article_by: Стаття за посиланням $name
|
||||||
note_by: Примітка $name
|
note_by: Примітка $name
|
||||||
@ -90,7 +95,8 @@ stream_list:
|
|||||||
planned: Заплановано
|
planned: Заплановано
|
||||||
ended: Закінчилося
|
ended: Закінчилося
|
||||||
"@stream_list":
|
"@stream_list":
|
||||||
description: "Заголовки у списках трансляцій за типом трансляції: наживо/закінчилася/запланована тощо."
|
description: "Заголовки у списках трансляцій за типом трансляції:
|
||||||
|
наживо/закінчилася/запланована тощо."
|
||||||
zap:
|
zap:
|
||||||
title: Zap $name
|
title: Zap $name
|
||||||
custom_amount: Нестандартна сума
|
custom_amount: Нестандартна сума
|
||||||
@ -99,6 +105,7 @@ zap:
|
|||||||
button_zap_ready: Zap $amount sats
|
button_zap_ready: Zap $amount sats
|
||||||
button_zap: Zap!
|
button_zap: Zap!
|
||||||
button_open_wallet: Відкрити в Гаманці
|
button_open_wallet: Відкрити в Гаманці
|
||||||
|
button_connect_wallet: Підключити гаманець
|
||||||
copy: Скопійовано в буфер обміну
|
copy: Скопійовано в буфер обміну
|
||||||
error:
|
error:
|
||||||
invalid_custom_amount: Неправильна сума замовлення
|
invalid_custom_amount: Неправильна сума замовлення
|
||||||
@ -106,13 +113,21 @@ zap:
|
|||||||
no_lud16: Адреса блискавки не знайдена
|
no_lud16: Адреса блискавки не знайдена
|
||||||
profile:
|
profile:
|
||||||
past_streams: Минулі потоки
|
past_streams: Минулі потоки
|
||||||
edit:
|
settings:
|
||||||
|
button_profile: Редагувати профіль
|
||||||
|
button_wallet: Налаштування гаманця
|
||||||
|
profile:
|
||||||
display_name: Ім'я користувача
|
display_name: Ім'я користувача
|
||||||
about: Про
|
about: Про
|
||||||
nip05: Nostr Адреса
|
nip05: Nostr Адреса
|
||||||
lud16: Блискавична адреса
|
lud16: Блискавична адреса
|
||||||
error:
|
error:
|
||||||
logged_out: Неможливо редагувати профіль, коли ви вийшли з системи
|
logged_out: Неможливо редагувати профіль, коли ви вийшли з системи
|
||||||
|
wallet:
|
||||||
|
connect_wallet: Підключити гаманець (NWC nwc://)
|
||||||
|
disconnect_wallet: Відключити гаманець
|
||||||
|
error:
|
||||||
|
logged_out: Не вдається підключити гаманець, коли ви вийшли з системи
|
||||||
login:
|
login:
|
||||||
username: Ім'я користувача
|
username: Ім'я користувача
|
||||||
amber: Увійдіть за допомогою Amber
|
amber: Увійдіть за допомогою Amber
|
||||||
|
@ -51,13 +51,13 @@ stream:
|
|||||||
"@awarded_to":
|
"@awarded_to":
|
||||||
description: Heading over list of users who are awarded a badge
|
description: Heading over list of users who are awarded a badge
|
||||||
raid:
|
raid:
|
||||||
to: RAIDING $name
|
to: RAIDING ${name}
|
||||||
"@to":
|
"@to":
|
||||||
description: Chat raid message to another stream
|
description: Chat raid message to another stream
|
||||||
from: RAID FROM $name
|
from: RAID FROM ${name}
|
||||||
"@from":
|
"@from":
|
||||||
description: Chat raid message from another stream
|
description: Chat raid message from another stream
|
||||||
countdown: Raiding in $time
|
countdown: Raiding in ${time}
|
||||||
"@countdown":
|
"@countdown":
|
||||||
description: Countdown timer for auto-raiding
|
description: Countdown timer for auto-raiding
|
||||||
goal:
|
goal:
|
||||||
@ -80,10 +80,12 @@ button:
|
|||||||
unmute: Unmute
|
unmute: Unmute
|
||||||
share: Share
|
share: Share
|
||||||
save: Save
|
save: Save
|
||||||
|
connect: Connect
|
||||||
|
settings: Settings
|
||||||
embed:
|
embed:
|
||||||
article_by: Article by $name
|
article_by: Article by ${name}
|
||||||
note_by: Note by $name
|
note_by: Note by $name
|
||||||
live_stream_by: Live stream by $name
|
live_stream_by: Live stream by ${name}
|
||||||
stream_list:
|
stream_list:
|
||||||
following: Following
|
following: Following
|
||||||
live: Live
|
live: Live
|
||||||
@ -99,6 +101,7 @@ zap:
|
|||||||
button_zap_ready: Zap $amount sats
|
button_zap_ready: Zap $amount sats
|
||||||
button_zap: Zap
|
button_zap: Zap
|
||||||
button_open_wallet: Open in Wallet
|
button_open_wallet: Open in Wallet
|
||||||
|
button_connect_wallet: Connect Wallet
|
||||||
copy: Copied to clipboard
|
copy: Copied to clipboard
|
||||||
error:
|
error:
|
||||||
invalid_custom_amount: Invalid custom amount
|
invalid_custom_amount: Invalid custom amount
|
||||||
@ -106,13 +109,21 @@ zap:
|
|||||||
no_lud16: No lightning address found
|
no_lud16: No lightning address found
|
||||||
profile:
|
profile:
|
||||||
past_streams: Past Streams
|
past_streams: Past Streams
|
||||||
edit:
|
settings:
|
||||||
|
button_profile: Edit Profile
|
||||||
|
button_wallet: Wallet Settings
|
||||||
|
profile:
|
||||||
display_name: Display Name
|
display_name: Display Name
|
||||||
about: About
|
about: About
|
||||||
nip05: Nostr Address
|
nip05: Nostr Address
|
||||||
lud16: Lightning Address
|
lud16: Lightning Address
|
||||||
error:
|
error:
|
||||||
logged_out: Cant edit profile when logged out
|
logged_out: Cant edit profile when logged out
|
||||||
|
wallet:
|
||||||
|
connect_wallet: Connect Wallet (NWC nwc://)
|
||||||
|
disconnect_wallet: Disconnect Wallet
|
||||||
|
error:
|
||||||
|
logged_out: Cant connect wallet when logged out
|
||||||
login:
|
login:
|
||||||
username: Username
|
username: Username
|
||||||
amber: Login with Amber
|
amber: Login with Amber
|
||||||
|
@ -80,6 +80,8 @@ button:
|
|||||||
unmute: 解除静音
|
unmute: 解除静音
|
||||||
share: 分享
|
share: 分享
|
||||||
save: 保存
|
save: 保存
|
||||||
|
connect: 連接
|
||||||
|
settings: 設定
|
||||||
embed:
|
embed:
|
||||||
article_by: 文章來源: $name
|
article_by: 文章來源: $name
|
||||||
note_by: $name 的筆記
|
note_by: $name 的筆記
|
||||||
@ -99,6 +101,7 @@ zap:
|
|||||||
button_zap_ready: 打閃 $amount 聰
|
button_zap_ready: 打閃 $amount 聰
|
||||||
button_zap: 打閃
|
button_zap: 打閃
|
||||||
button_open_wallet: 在錢包中開啟
|
button_open_wallet: 在錢包中開啟
|
||||||
|
button_connect_wallet: 連接錢包
|
||||||
copy: 複製到剪貼簿
|
copy: 複製到剪貼簿
|
||||||
error:
|
error:
|
||||||
invalid_custom_amount: 無效自訂金額
|
invalid_custom_amount: 無效自訂金額
|
||||||
@ -106,13 +109,21 @@ zap:
|
|||||||
no_lud16: 未找到閃電地址
|
no_lud16: 未找到閃電地址
|
||||||
profile:
|
profile:
|
||||||
past_streams: 過去的直播
|
past_streams: 過去的直播
|
||||||
edit:
|
settings:
|
||||||
|
button_profile: 編輯個人資料
|
||||||
|
button_wallet: 錢包設定
|
||||||
|
profile:
|
||||||
display_name: 顯示名稱
|
display_name: 顯示名稱
|
||||||
about: 關於
|
about: 關於
|
||||||
nip05: Nostr 地址
|
nip05: 地址
|
||||||
lud16: 閃電地址
|
lud16: 閃電地址
|
||||||
error:
|
error:
|
||||||
logged_out: 登出時無法編輯個人資料
|
logged_out: 登出時無法編輯個人資料
|
||||||
|
wallet:
|
||||||
|
connect_wallet: 連接錢包 (NWC nwc://)
|
||||||
|
disconnect_wallet: 斷開錢包
|
||||||
|
error:
|
||||||
|
logged_out: 登出時無法連接錢包
|
||||||
login:
|
login:
|
||||||
username: 用戶名
|
username: 用戶名
|
||||||
amber: 使用 Amber 登入
|
amber: 使用 Amber 登入
|
||||||
|
@ -144,7 +144,7 @@ class LoginAccount {
|
|||||||
pubkey: json["pubKey"],
|
pubkey: json["pubKey"],
|
||||||
privateKey: json["privateKey"],
|
privateKey: json["privateKey"],
|
||||||
wallet:
|
wallet:
|
||||||
json.containsKey("wallet")
|
json.containsKey("wallet") && json["wallet"] != null
|
||||||
? WalletConfig.fromJson(json["wallet"])
|
? WalletConfig.fromJson(json["wallet"])
|
||||||
: null,
|
: null,
|
||||||
);
|
);
|
||||||
|
@ -83,9 +83,9 @@ class ProfilePage extends StatelessWidget {
|
|||||||
},
|
},
|
||||||
),
|
),
|
||||||
BasicButton.text(
|
BasicButton.text(
|
||||||
t.button.edit_profile,
|
t.button.settings,
|
||||||
onTap: (context) {
|
onTap: (context) {
|
||||||
context.push("/settings/profile");
|
context.push("/settings");
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
25
lib/pages/settings.dart
Normal file
25
lib/pages/settings.dart
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:go_router/go_router.dart';
|
||||||
|
import 'package:zap_stream_flutter/widgets/button.dart';
|
||||||
|
|
||||||
|
class SettingsPage extends StatelessWidget {
|
||||||
|
const SettingsPage({super.key});
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return Column(
|
||||||
|
spacing: 8,
|
||||||
|
children: [
|
||||||
|
Text("Settings", style: TextStyle(fontSize: 24)),
|
||||||
|
BasicButton.text(
|
||||||
|
"Edit Profile",
|
||||||
|
onTap: (context) => context.push("/settings/profile"),
|
||||||
|
),
|
||||||
|
BasicButton.text(
|
||||||
|
"Wallet Settings",
|
||||||
|
onTap: (context) => context.push("/settings/wallet"),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
@ -20,7 +20,7 @@ class SettingsProfilePage extends StatelessWidget {
|
|||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
final pubkey = ndk.accounts.getPublicKey();
|
final pubkey = ndk.accounts.getPublicKey();
|
||||||
if (pubkey == null) return Text(t.profile.edit.error.logged_out);
|
if (pubkey == null) return Text(t.settings.profile.error.logged_out);
|
||||||
|
|
||||||
return FutureBuilder(
|
return FutureBuilder(
|
||||||
future: ndk.metadata.loadMetadata(pubkey),
|
future: ndk.metadata.loadMetadata(pubkey),
|
||||||
@ -52,7 +52,7 @@ class SettingsProfilePage extends StatelessWidget {
|
|||||||
controller: _name,
|
controller: _name,
|
||||||
readOnly: v,
|
readOnly: v,
|
||||||
decoration: InputDecoration(
|
decoration: InputDecoration(
|
||||||
labelText: t.profile.edit.display_name,
|
labelText: t.settings.profile.display_name,
|
||||||
fillColor: LAYER_1,
|
fillColor: LAYER_1,
|
||||||
filled: true,
|
filled: true,
|
||||||
),
|
),
|
||||||
@ -61,7 +61,7 @@ class SettingsProfilePage extends StatelessWidget {
|
|||||||
controller: _about,
|
controller: _about,
|
||||||
readOnly: v,
|
readOnly: v,
|
||||||
decoration: InputDecoration(
|
decoration: InputDecoration(
|
||||||
labelText: t.profile.edit.about,
|
labelText: t.settings.profile.about,
|
||||||
fillColor: LAYER_1,
|
fillColor: LAYER_1,
|
||||||
filled: true,
|
filled: true,
|
||||||
),
|
),
|
||||||
@ -70,7 +70,7 @@ class SettingsProfilePage extends StatelessWidget {
|
|||||||
controller: _nip5,
|
controller: _nip5,
|
||||||
readOnly: v,
|
readOnly: v,
|
||||||
decoration: InputDecoration(
|
decoration: InputDecoration(
|
||||||
labelText: t.profile.edit.nip05,
|
labelText: t.settings.profile.nip05,
|
||||||
fillColor: LAYER_1,
|
fillColor: LAYER_1,
|
||||||
filled: true,
|
filled: true,
|
||||||
),
|
),
|
||||||
@ -79,7 +79,7 @@ class SettingsProfilePage extends StatelessWidget {
|
|||||||
controller: _lud16,
|
controller: _lud16,
|
||||||
readOnly: v,
|
readOnly: v,
|
||||||
decoration: InputDecoration(
|
decoration: InputDecoration(
|
||||||
labelText: t.profile.edit.lud16,
|
labelText: t.settings.profile.lud16,
|
||||||
fillColor: LAYER_1,
|
fillColor: LAYER_1,
|
||||||
filled: true,
|
filled: true,
|
||||||
),
|
),
|
||||||
|
@ -26,7 +26,7 @@ class _Inner extends State<SettingsWalletPage> {
|
|||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
final pubkey = ndk.accounts.getPublicKey();
|
final pubkey = ndk.accounts.getPublicKey();
|
||||||
if (pubkey == null) return Text(t.wallet.error.logged_out);
|
if (pubkey == null) return Text(t.settings.wallet.error.logged_out);
|
||||||
|
|
||||||
return ValueListenableBuilder(
|
return ValueListenableBuilder(
|
||||||
valueListenable: loginData,
|
valueListenable: loginData,
|
||||||
@ -37,7 +37,7 @@ class _Inner extends State<SettingsWalletPage> {
|
|||||||
children: [
|
children: [
|
||||||
TextField(
|
TextField(
|
||||||
controller: _uri,
|
controller: _uri,
|
||||||
decoration: InputDecoration(labelText: t.wallet.connect_wallet),
|
decoration: InputDecoration(labelText: t.settings.wallet.connect_wallet),
|
||||||
),
|
),
|
||||||
BasicButton.text(
|
BasicButton.text(
|
||||||
t.button.connect,
|
t.button.connect,
|
||||||
@ -69,8 +69,23 @@ class _Inner extends State<SettingsWalletPage> {
|
|||||||
Text(_error!, style: TextStyle(color: WARNING)),
|
Text(_error!, style: TextStyle(color: WARNING)),
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
|
} else {
|
||||||
|
return BasicButton.text(
|
||||||
|
t.settings.wallet.disconnect_wallet,
|
||||||
|
onTap: (context) {
|
||||||
|
loginData.value = LoginAccount(
|
||||||
|
type: loginData.value!.type,
|
||||||
|
pubkey: loginData.value!.pubkey,
|
||||||
|
privateKey: loginData.value!.privateKey,
|
||||||
|
signerRelays: loginData.value!.signerRelays,
|
||||||
|
wallet: null,
|
||||||
|
);
|
||||||
|
if (context.mounted) {
|
||||||
|
context.pop();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
);
|
||||||
}
|
}
|
||||||
return SizedBox.shrink();
|
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user