Compare commits
1 Commits
2025-07-22
...
crowdin-ac
| Author | SHA1 | Date | |
|---|---|---|---|
|
f866f0ca26
|
33
.github/workflows/crowdin-download.yml
vendored
Normal file
33
.github/workflows/crowdin-download.yml
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
name: Crowdin Download Translations
|
||||
|
||||
on:
|
||||
repository_dispatch:
|
||||
types: [ crowdin-translation-complete ]
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
pull-requests: write
|
||||
|
||||
jobs:
|
||||
crowdin-download:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Crowdin download translations
|
||||
uses: crowdin/github-action@v2
|
||||
with:
|
||||
upload_sources: false
|
||||
upload_translations: false
|
||||
download_translations: true
|
||||
localization_branch_name: crowdin-translations
|
||||
create_pull_request: true
|
||||
pull_request_title: 'Crowdin Translations'
|
||||
pull_request_body: 'Crowdin translations by [Crowdin GH Action](https://github.com/crowdin/github-action)'
|
||||
pull_request_base_branch_name: 'master'
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }}
|
||||
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}
|
||||
67
.github/workflows/crowdin-upload.yml
vendored
Normal file
67
.github/workflows/crowdin-upload.yml
vendored
Normal file
@@ -0,0 +1,67 @@
|
||||
name: Crowdin Upload & Sync
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
pull-requests: write
|
||||
|
||||
jobs:
|
||||
crowdin-upload:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Fetch crowdin-translations branch
|
||||
run: |
|
||||
git fetch origin crowdin-translations:crowdin-translations || true
|
||||
|
||||
- name: Checkout crowdin-translations branch
|
||||
run: git checkout crowdin-translations || git checkout -b crowdin-translations
|
||||
|
||||
- name: Rebase master onto crowdin-translations
|
||||
run: git rebase master
|
||||
|
||||
- name: Fail if rebase conflicts occurred
|
||||
run: |
|
||||
if [ -d .git/rebase-merge ] || [ -d .git/rebase-apply ]; then
|
||||
echo "❌ Rebase conflict detected! Please resolve conflicts in the crowdin-translations branch manually."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: '3.x'
|
||||
|
||||
- name: Run export_source_strings.py
|
||||
run: python3 scripts/export_source_strings.py
|
||||
|
||||
- name: Check for changes in main.ftl
|
||||
id: check_diff
|
||||
run: |
|
||||
git diff --quiet assets/translations/en-US/main.ftl assets/translations/en-XA/main.ftl || echo "changed=true" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Commit changes to crowdin-translations
|
||||
if: steps.check_diff.outputs.changed == 'true'
|
||||
run: |
|
||||
git add assets/translations/en-US/main.ftl assets/translations/en-XA/main.ftl
|
||||
git commit -m "Update source strings from export_source_strings.py" || true
|
||||
git push --force origin crowdin-translations
|
||||
|
||||
- name: Crowdin upload sources
|
||||
uses: crowdin/github-action@v2
|
||||
with:
|
||||
upload_sources: true
|
||||
upload_translations: false
|
||||
download_translations: false
|
||||
localization_branch_name: crowdin-translations
|
||||
create_pull_request: true
|
||||
pull_request_title: 'Crowdin Translations'
|
||||
pull_request_body: 'Crowdin translations by [Crowdin GH Action](https://github.com/crowdin/github-action)'
|
||||
pull_request_base_branch_name: 'master'
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }}
|
||||
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}
|
||||
@@ -7,6 +7,8 @@
|
||||
|
||||
# Profile about/bio field label
|
||||
About_00c0 = Über
|
||||
# Display name for account management
|
||||
Accounts_e233 = Konten
|
||||
# Column title for account management
|
||||
Accounts_f018 = Konten
|
||||
# Button label to add a relay
|
||||
@@ -21,10 +23,16 @@ Add_a_wallet_to_continue_d170 = Wallet hinzufügen um fortzufahren
|
||||
Add_account_1cfc = Konto hinzufügen
|
||||
# Column title for adding new account
|
||||
Add_Account_d06c = Konto hinzufügen
|
||||
# Display name for adding account
|
||||
Add_Account_d715 = Konto hinzufügen
|
||||
# Column title for adding algorithm column
|
||||
Add_Algo_Column_0d75 = Algorithmus-Spalte hinzufügen
|
||||
# Display name for adding column
|
||||
Add_Column_c6ff = Spalte hinzufügen
|
||||
# Column title for adding new column
|
||||
Add_Column_c764 = Spalte hinzufügen
|
||||
# Display name for adding deck
|
||||
Add_Deck_6e5f = Deck hinzufügen
|
||||
# Column title for adding new deck
|
||||
Add_Deck_fabf = Deck hinzufügen
|
||||
# Column title for adding external notifications column
|
||||
@@ -61,6 +69,8 @@ Broadcast_Local_7e50 = Lokal senden
|
||||
Cancel_ed3b = Abbrechen
|
||||
# Hover text for editable zap amount
|
||||
Click_to_edit_0414 = Zum Bearbeiten anklicken
|
||||
# Display name for note composition
|
||||
Compose_Note_ad11 = Notiz erstellen
|
||||
# Column title for note composition
|
||||
Compose_Note_c094 = Notiz erstellen
|
||||
# Button label to confirm an action
|
||||
@@ -73,6 +83,8 @@ Connecting_6b7e = Verbinde...
|
||||
Contact_List_f85a = Kontaktliste
|
||||
# Column title for contact lists
|
||||
Contacts_7533 = Kontakte
|
||||
# Timeline kind label for contact lists
|
||||
Contacts_8b98 = Kontakte
|
||||
# Column title for last notes per contact
|
||||
Contacts__last_notes_3f84 = Kontakte (letzte Notizen)
|
||||
# Button label to copy logs
|
||||
@@ -107,8 +119,12 @@ Create_Account_6994 = Konto erstellen
|
||||
Create_Deck_16b7 = Deck erstellen
|
||||
# Column title for custom timelines
|
||||
Custom_a69e = Benutzerdefiniert
|
||||
# Display name for custom timelines
|
||||
Custom_cb4f = Benutzerdefiniert
|
||||
# Column title for zap amount customization
|
||||
Customize_Zap_Amount_cfc4 = Zap-Betrag anpassen
|
||||
# Display name for zap customization
|
||||
Customize_Zap_Amount_ed29 = Zap-Betrag anpassen
|
||||
# Column title for support page
|
||||
Damus_Support_27c0 = Damus Support
|
||||
# Label for deck name input field
|
||||
@@ -131,10 +147,14 @@ Display_name_f9d9 = Anzeigename
|
||||
domain___will_be_used_for_identification_b67e = "{ $domain }" wird zur Identifikation verwendet
|
||||
# Column title for editing deck
|
||||
Edit_Deck_4018 = Deck bearbeiten
|
||||
# Display name for editing deck
|
||||
Edit_Deck_c9ba = Deck bearbeiten
|
||||
# Button label to edit a deck
|
||||
Edit_Deck_fd93 = Deck bearbeiten
|
||||
# Button label to edit user profile
|
||||
Edit_Profile_49e6 = Profil bearbeiten
|
||||
# Display name for profile editing
|
||||
Edit_Profile_6699 = Profil bearbeiten
|
||||
# Column title for profile editing
|
||||
Edit_Profile_8ad4 = Profil bearbeiten
|
||||
# Placeholder for hashtag input field
|
||||
@@ -151,8 +171,14 @@ Enter_your_public_key__npub___nostr_address__e_g___address____or_private_key__ns
|
||||
Für das Veröffentlichen von Beiträgen und andere Aktionen ist dein privater Schlüssel erforderlich.
|
||||
# Label for find user button
|
||||
Find_User_bd12 = Profil finden
|
||||
# Timeline kind label for hashtag feeds
|
||||
Hashtag_a0ab = Hashtag
|
||||
# Display name for hashtag feeds
|
||||
Hashtags_617e = Hashtags
|
||||
# Title for hashtags column
|
||||
Hashtags_f8e0 = Hashtags
|
||||
# Display name for home feed
|
||||
Home_3efc = Startseite
|
||||
# Title for Home column
|
||||
Home_8c19 = Startseite
|
||||
# Label for deck icon selection
|
||||
@@ -179,6 +205,10 @@ k_5K_f7e6 = 5K
|
||||
Keep_track_of_your_notes___replies_a334 = Behalte den Überblick über deine Notizen & Antworten
|
||||
# Title for last note per user column
|
||||
Last_Note_per_User_17ad = Letzte Notiz pro Profil
|
||||
# Timeline kind label for last notes per pubkey
|
||||
Last_Notes_aefe = Letzte Notizen
|
||||
# Display name for last notes per contact
|
||||
Last_Per_Pubkey__Contact_33ce = Zuletzt pro Pubkey (Kontakt)
|
||||
# Bitcoin Lightning network address field label
|
||||
Lightning_network_address__lud16_ea51 = Lightning-Netzwerkadresse (lud16)
|
||||
# Login page title
|
||||
@@ -211,6 +241,10 @@ Notes_60d2 = Notizen
|
||||
Notes___Replies_1ec2 = Notizen & Antworten
|
||||
# Label for notes and replies filter
|
||||
Notes___Replies_6e3b = Notizen & Antworten
|
||||
# Timeline kind label for notifications
|
||||
Notifications_6228 = Benachrichtigungen
|
||||
# Display name for notifications
|
||||
Notifications_8029 = Benachrichtigungen
|
||||
# Column title for notifications
|
||||
Notifications_d673 = Benachrichtigungen
|
||||
# Title for notifications column
|
||||
@@ -233,20 +267,30 @@ Please_select_an_icon_655b = Bitte wählen ein Symbol aus.
|
||||
Post_now_8a49 = Jetzt veröffentlichen
|
||||
# Instruction for copying logs
|
||||
Press_the_button_below_to_copy_your_most_recent_logs_to_your_system_s_clipboard__Then_paste_it_into_your_email_322e = Drücke die Schaltfläche unten, um deine neuesten Protokolle in die Zwischenablage deines Systems zu kopieren. Dann füge sie in deine E-Mail ein.
|
||||
# Display name for user profiles
|
||||
Profile_2478 = Profil
|
||||
# Timeline kind label for user profiles
|
||||
Profile_9027 = Profil
|
||||
# Profile picture URL field label
|
||||
Profile_picture_81ff = Profilbild
|
||||
# Column title for quote composition
|
||||
Quote_475c = Zitat
|
||||
# Display name for quote composition
|
||||
Quote_a38e = Zitat
|
||||
# Error message when quote note cannot be found
|
||||
Quote_of_unknown_note_e4f0 = Zitat von unbekannter Notiz
|
||||
# Label for read-only profile mode
|
||||
Read_only_82ff = Nur Lesezugriff
|
||||
# Display name for relay management
|
||||
Relays_7335 = Relays
|
||||
# Column title for relay management
|
||||
Relays_9d89 = Relays
|
||||
# Label for relay list section
|
||||
Relays_ad5e = Relays
|
||||
# Column title for reply composition
|
||||
Reply_3bf1 = Antwort
|
||||
# Display name for reply composition
|
||||
Reply_b40f = Antworten
|
||||
# Hover text for reply button
|
||||
Reply_to_this_note_f5de = Auf diese Notiz antworten
|
||||
# Error message when reply note cannot be found
|
||||
@@ -277,6 +321,12 @@ sats_e5ec = Sats
|
||||
Save_6f7c = Speichern
|
||||
# Button label to save profile changes
|
||||
Save_changes_00db = Änderungen speichern
|
||||
# Display name for search results
|
||||
Search_0aa0 = Suche
|
||||
# Display name for search page
|
||||
Search_4503 = Suche
|
||||
# Timeline kind label for search results
|
||||
Search_a0b8 = Suche
|
||||
# Column title for search page
|
||||
Search_c573 = Suche
|
||||
# Placeholder for search notes input field
|
||||
@@ -319,6 +369,8 @@ Step_2_d08d = Schritt 2
|
||||
Subscribe_to_someone_else_s_notes_d1e9 = Abonniere die Notizen eines anderen
|
||||
# Column title for subscribing to individual user
|
||||
Subscribe_to_someone_s_notes_b3c8 = Abonniere die Notizen von jemandem
|
||||
# Display name for support page
|
||||
Support_a4b4 = Support
|
||||
# Hover text for dark mode toggle button
|
||||
Switch_to_dark_mode_4dec = Zum Dunkelmodus wechseln
|
||||
# Hover text for light mode toggle button
|
||||
@@ -329,8 +381,16 @@ Tap_to_Load_4b05 = Zum Laden antippen
|
||||
The_Dave_Nostr_AI_assistant_trial_has_ended_____Thanks_for_testing__Zap-enabled_Dave_coming_soon_c6c7 = Die Testphase des Dave Nostr KI-Assistenten ist beendet :(. Vielen Dank fürs Ausprobieren! Zap-fähiger Dave kommt bald!
|
||||
# Column title for note thread view
|
||||
Thread_0f20 = Unterhaltungen
|
||||
# Display name for thread view
|
||||
Thread_9957 = Unterhaltungen
|
||||
# Link text for thread references
|
||||
thread_ad1f = Unterhaltung
|
||||
thread_ad1f = Unterhaltungen
|
||||
# Generic timeline kind label
|
||||
Timeline_b0fc = Timeline
|
||||
# Timeline kind label for universe feed
|
||||
Universe_0a3e = Weltraum
|
||||
# Display name for universe feed
|
||||
Universe_d47e = Weltraum
|
||||
# Title for universe column
|
||||
Universe_e01e = Weltraum
|
||||
# Column title for universe feed
|
||||
@@ -343,6 +403,8 @@ username___at___domain___will_be_used_for_identification_a4fd = "{ $username }"
|
||||
Username_daa7 = Benutzername
|
||||
# Column title for wallet management
|
||||
Wallet_5e50 = Wallet
|
||||
# Display name for wallet management
|
||||
Wallet_cdca = Wallet
|
||||
# Hint for deck name input field
|
||||
We_recommend_short_names_083e = Wir empfehlen kurze Namen
|
||||
# Profile website field label
|
||||
|
||||
@@ -1,368 +0,0 @@
|
||||
# Main translation file for Notedeck
|
||||
# This file contains common UI strings used throughout the application
|
||||
# Auto-generated by extract_i18n.py - DO NOT EDIT MANUALLY
|
||||
|
||||
|
||||
# Regular strings
|
||||
|
||||
# Profile about/bio field label
|
||||
About_00c0 = Información
|
||||
# Column title for account management
|
||||
Accounts_f018 = Cuentas
|
||||
# Button label to add a relay
|
||||
Add_269d = Agregar
|
||||
# Label for add column button
|
||||
Add_47df = Agregar
|
||||
# Button label to add a different wallet
|
||||
Add_a_different_wallet_that_will_only_be_used_for_this_account_de8d = Agregar una billetera diferente que solo se utilizará para esta cuenta
|
||||
# Error message for missing wallet
|
||||
Add_a_wallet_to_continue_d170 = Agregar una billetera para continuar
|
||||
# Button label to add a new account
|
||||
Add_account_1cfc = Agregar cuenta
|
||||
# Column title for adding new account
|
||||
Add_Account_d06c = Agregar cuenta
|
||||
# Column title for adding algorithm column
|
||||
Add_Algo_Column_0d75 = Añadir columna algorítmica
|
||||
# Column title for adding new column
|
||||
Add_Column_c764 = Agregar columna
|
||||
# Column title for adding new deck
|
||||
Add_Deck_fabf = Agregar Deck
|
||||
# Column title for adding external notifications column
|
||||
Add_External_Notifications_Column_41ae = Agregar columna de notificaciones externas
|
||||
# Column title for adding hashtag column
|
||||
Add_Hashtag_Column_ebf4 = Agregar columna de hashtag
|
||||
# Column title for adding last notes column
|
||||
Add_Last_Notes_Column_bbad = Agregar columna de últimas notas
|
||||
# Column title for adding notifications column
|
||||
Add_Notifications_Column_79f8 = Agregar columna de notificaciones
|
||||
# Button label to add a relay
|
||||
Add_relay_269d = Agregar relé
|
||||
# Button label to add a wallet
|
||||
Add_Wallet_d1be = Agregar billetera
|
||||
# Title for algorithmic feeds column
|
||||
Algo_2452 = Algo
|
||||
# Description for algorithmic feeds column
|
||||
Algorithmic_feeds_to_aid_in_note_discovery_d344 = Feeds algorítmicos para ayudar en el descubrimiento de notas
|
||||
# Label for zap amount input field
|
||||
Amount_70f0 = Cantidad
|
||||
# Button to send message to Dave AI assistant
|
||||
Ask_b7f4 = Preguntar
|
||||
# Placeholder text for Dave AI input field
|
||||
Ask_dave_anything_33d1 = Pregúntale cualquier cosa a Dave...
|
||||
# Profile banner URL field label
|
||||
Banner_52ef = Banner
|
||||
# Beta version label
|
||||
BETA_8e5d = BETA
|
||||
# Broadcast the note to all connected relays
|
||||
Broadcast_fe43 = Transmitir
|
||||
# Broadcast the note only to local network relays
|
||||
Broadcast_Local_7e50 = Transmitir localmente
|
||||
# Button label to cancel an action
|
||||
Cancel_ed3b = Cancelar
|
||||
# Hover text for editable zap amount
|
||||
Click_to_edit_0414 = Haz clic para editar
|
||||
# Column title for note composition
|
||||
Compose_Note_c094 = Redactar nota
|
||||
# Button label to confirm an action
|
||||
Confirm_f8a6 = Confirmar
|
||||
# Status label for connected relay
|
||||
Connected_f8cc = Conectado
|
||||
# Status label for connecting relay
|
||||
Connecting_6b7e = Conectando...
|
||||
# Title for contact list column
|
||||
Contact_List_f85a = Lista de contactos
|
||||
# Column title for contact lists
|
||||
Contacts_7533 = Contactos
|
||||
# Column title for last notes per contact
|
||||
Contacts__last_notes_3f84 = Contactos (últimas notas)
|
||||
# Button label to copy logs
|
||||
Copy_a688 = Copiar
|
||||
# Button to copy media link to clipboard
|
||||
Copy_Link_dc7c = Copiar enlace
|
||||
# Copy the unique note identifier to clipboard
|
||||
Copy_Note_ID_6b45 = Copiar ID de nota
|
||||
# Copy the raw note data in JSON format to clipboard
|
||||
Copy_Note_JSON_9e4e = Copiar JSON de nota
|
||||
# Copy the author's public key to clipboard
|
||||
Copy_Pubkey_9cc4 = Copiar Pubkey
|
||||
# Copy the text content of the note to clipboard
|
||||
Copy_Text_f81c = Copiar texto
|
||||
# Relative time in days
|
||||
count_d_b9be = { $count }d
|
||||
# Relative time in hours
|
||||
count_h_3ecb = { $count }h
|
||||
# Relative time in minutes
|
||||
count_m_b41e = { $count }m
|
||||
# Relative time in months
|
||||
count_mo_7aba = { $count }ms
|
||||
# Relative time in seconds
|
||||
count_s_aa26 = { $count }s
|
||||
# Relative time in weeks
|
||||
count_w_7468 = { $count }sem
|
||||
# Relative time in years
|
||||
count_y_9408 = { $count }a
|
||||
# Button to create a new account
|
||||
Create_Account_6994 = Crear cuenta
|
||||
# Button label to create a new deck
|
||||
Create_Deck_16b7 = Crear Deck
|
||||
# Column title for custom timelines
|
||||
Custom_a69e = Personalizado
|
||||
# Column title for zap amount customization
|
||||
Customize_Zap_Amount_cfc4 = Personalizar monto de zap
|
||||
# Column title for support page
|
||||
Damus_Support_27c0 = Ayuda de Damus
|
||||
# Label for deck name input field
|
||||
Deck_name_cd32 = Nombre del Deck
|
||||
# Label for decks section in side panel
|
||||
DECKS_1fad = DECKS
|
||||
# Label for default zap amount input
|
||||
Default_amount_per_zap_399d = Monto predeterminado por zap:
|
||||
# Name of the default deck feed
|
||||
Default_Deck_fcca = Deck predeterminado
|
||||
# Button label to delete a deck
|
||||
Delete_Deck_bb29 = Eliminar Deck
|
||||
# Tooltip for deleting a column
|
||||
Delete_this_column_8d5a = Eliminar esta columna
|
||||
# Button label to delete a wallet
|
||||
Delete_Wallet_d1d4 = Eliminar billetera
|
||||
# Profile display name field label
|
||||
Display_name_f9d9 = Nombre para mostrar
|
||||
# Domain identification message
|
||||
domain___will_be_used_for_identification_b67e = "{ $domain }" se utilizará para la identificación
|
||||
# Column title for editing deck
|
||||
Edit_Deck_4018 = Editar Deck
|
||||
# Button label to edit a deck
|
||||
Edit_Deck_fd93 = Editar Deck
|
||||
# Button label to edit user profile
|
||||
Edit_Profile_49e6 = Editar perfil
|
||||
# Column title for profile editing
|
||||
Edit_Profile_8ad4 = Editar perfil
|
||||
# Placeholder for hashtag input field
|
||||
Enter_the_desired_hashtags_here__for_multiple_space-separated_7a69 = Ingresa aquí los hashtags deseados (si son varios, sepáralos con un espacio)
|
||||
# Placeholder for relay input field
|
||||
Enter_the_relay_here_1c8b = Ingresa el relé aquí
|
||||
# Hint text to prompt entering the user's public key.
|
||||
Enter_the_user_s_key__npub__hex__nip05__here_650c = Ingresa la clave del usuario (npub, hex, nip05) aquí...
|
||||
# Label for key input field. Key can be public key (npub), private key (nsec), or Nostr address (NIP-05).
|
||||
Enter_your_key_0fca = Ingresa tu clave
|
||||
# Instructions for entering Nostr credentials
|
||||
Enter_your_public_key__npub___nostr_address__e_g___address____or_private_key__nsec___You_must_enter_your_private_key_to_be_able_to_post__reply__etc_48e9 = Ingresa tu clave pública (npub), dirección de Nostr (por ejemplo, { $address }) o clave privada (nsec). Debes ingresar tu clave privada para poder publicar, responder, etc.
|
||||
# Label for find user button
|
||||
Find_User_bd12 = Buscar usuario
|
||||
# Title for hashtags column
|
||||
Hashtags_f8e0 = Hashtags
|
||||
# Title for Home column
|
||||
Home_8c19 = Inicio
|
||||
# Label for deck icon selection
|
||||
Icon_b0ab = Ícono
|
||||
# Title for individual user column
|
||||
Individual_b776 = Individual
|
||||
# Error message for invalid zap amount
|
||||
Invalid_amount_6630 = Importe no válido
|
||||
# Error message for invalid key input
|
||||
Invalid_key_4726 = Clave no válida.
|
||||
# Error message for invalid Nostr Wallet Connect URI
|
||||
Invalid_NWC_URI_031b = NWC URI no válido
|
||||
# Zap amount button for 100000 sats. Abbreviated because the button is too small to display the full amount.
|
||||
k_100K_686c = 100.000
|
||||
# Zap amount button for 10000 sats. Abbreviated because the button is too small to display the full amount.
|
||||
k_10K_f7e6 = 10.000
|
||||
# Zap amount button for 20000 sats. Abbreviated because the button is too small to display the full amount.
|
||||
k_20K_4977 = 20.000
|
||||
# Zap amount button for 50000 sats. Abbreviated because the button is too small to display the full amount.
|
||||
k_50K_c2dc = 50.000
|
||||
# Zap amount button for 5000 sats. Abbreviated because the button is too small to display the full amount.
|
||||
k_5K_f7e6 = 5.000
|
||||
# Description for your notes column
|
||||
Keep_track_of_your_notes___replies_a334 = Haz seguimiento de tus notas y respuestas
|
||||
# Title for last note per user column
|
||||
Last_Note_per_User_17ad = Última nota por usuario
|
||||
# Bitcoin Lightning network address field label
|
||||
Lightning_network_address__lud16_ea51 = Dirección de la red Lightning (lud16)
|
||||
# Login page title
|
||||
Login_9eef = Inicio de sesión
|
||||
# Login button text
|
||||
Login_now___let_s_do_this_5630 = Inicia sesión ahora, ¡manos a la obra!
|
||||
# Text shown on blurred media from unfollowed users
|
||||
Media_from_someone_you_don_t_follow_5611 = Medios de alguien que no sigues
|
||||
# Tooltip for moving a column
|
||||
Moves_this_column_to_another_position_0d4b = Mueve esta columna a otra posición
|
||||
# Title for the user's deck
|
||||
My_Deck_4ac5 = Mi Deck
|
||||
# Label asking if the user is new to Nostr. Underneath this label is a button to create an account.
|
||||
New_to_Nostr_a2fd = ¿Primera vez en Nostr?
|
||||
# NIP-05 identity field label
|
||||
Nostr_address__NIP-05_identity_74a2 = Dirección de Nostr (identidad NIP-05)
|
||||
# Default username when profile is not available
|
||||
nostrich_df29 = nostrich
|
||||
# Status label for disconnected relay
|
||||
Not_Connected_6292 = No conectado
|
||||
# Link text for note references
|
||||
note_cad6 = nota
|
||||
# Beta product warning message
|
||||
Notedeck_is_a_beta_product__Expect_bugs_and_contact_us_when_you_run_into_issues_a671 = Notedeck es un producto en fase beta. Es posible que haya errores, así que ponte en contacto con nosotros si tienes algún problema.
|
||||
# Filter label for notes only view
|
||||
Notes_03fb = Notas
|
||||
# Label for notes-only filter
|
||||
Notes_60d2 = Notas
|
||||
# Filter label for notes and replies view
|
||||
Notes___Replies_1ec2 = Notas y respuestas
|
||||
# Label for notes and replies filter
|
||||
Notes___Replies_6e3b = Notas y respuestas
|
||||
# Column title for notifications
|
||||
Notifications_d673 = Notificaciones
|
||||
# Title for notifications column
|
||||
Notifications_ef56 = Notificaciones
|
||||
# Relative time for very recent events (less than 3 seconds)
|
||||
now_2181 = ahora
|
||||
# Button label to open email client
|
||||
Open_Email_25e9 = Abrir correo electrónico
|
||||
# Instruction to open email client
|
||||
Open_your_default_email_client_to_get_help_from_the_Damus_team_68dc = Abre tu cliente de correo predeterminado para recibir ayuda del equipo de Damus
|
||||
# Placeholder text for NWC URI input
|
||||
Paste_your_NWC_URI_here_b471 = Pega tu URI NWC aquí...
|
||||
# Error message for missing deck name
|
||||
Please_create_a_name_for_the_deck_38e7 = Crea un nombre para el Deck.
|
||||
# Error message for missing deck name and icon
|
||||
Please_create_a_name_for_the_deck_and_select_an_icon_0add = Crea un nombre para el Deck y selecciona un icono.
|
||||
# Error message for missing deck icon
|
||||
Please_select_an_icon_655b = Selecciona un icono.
|
||||
# Button label to post a note
|
||||
Post_now_8a49 = Publicar ahora
|
||||
# Instruction for copying logs
|
||||
Press_the_button_below_to_copy_your_most_recent_logs_to_your_system_s_clipboard__Then_paste_it_into_your_email_322e = Presiona el siguiente botón para copiar los registros más recientes al portapapeles del sistema. A continuación, pégalos en tu correo electrónico.
|
||||
# Profile picture URL field label
|
||||
Profile_picture_81ff = Imagen de perfil
|
||||
# Column title for quote composition
|
||||
Quote_475c = Citar
|
||||
# Error message when quote note cannot be found
|
||||
Quote_of_unknown_note_e4f0 = Cita de nota desconocida
|
||||
# Label for read-only profile mode
|
||||
Read_only_82ff = Solo lectura
|
||||
# Column title for relay management
|
||||
Relays_9d89 = Relés
|
||||
# Label for relay list section
|
||||
Relays_ad5e = Relés
|
||||
# Column title for reply composition
|
||||
Reply_3bf1 = Respuesta
|
||||
# Hover text for reply button
|
||||
Reply_to_this_note_f5de = Responder a esta nota
|
||||
# Error message when reply note cannot be found
|
||||
Reply_to_unknown_note_4401 = Responder a nota desconocida
|
||||
# Fallback template for replying to user
|
||||
replying_to__user_15ab = responder a { $user }
|
||||
# Template for replying to user in unknown thread
|
||||
replying_to__user__in_someone_s_thread_e148 = respondiendo a { $user } en la conversación de alguien
|
||||
# Template for replying to note in different user's thread
|
||||
replying_to__user__s__note__in__thread_user__s__thread_daa8 = respondiendo a { $note } de { $user } en { $thread } de { $thread_user }
|
||||
# Template for replying to user's note
|
||||
replying_to__user__s__note_ccba = respondiendo a { $note } de { $user }
|
||||
# Template for replying to root thread
|
||||
replying_to__user__s__thread_444d = respondiendo a { $thread } de { $user }
|
||||
# Fallback text when reply note is not found
|
||||
replying_to_a_note_e0bc = respondiendo a una nota
|
||||
# Hover text for repost button
|
||||
Repost_this_note_8e56 = Volver a publicar esta nota
|
||||
# Label for reposted notes
|
||||
Reposted_61c8 = Publicadas de nuevo
|
||||
# Heading for support section
|
||||
Running_into_a_bug_1796 = ¿Encontraste un error?
|
||||
# Label for satoshis (Bitcoin unit) for custom zap amount input field
|
||||
SATS_45d7 = SATS
|
||||
# Unit label for satoshis (Bitcoin unit) for configuring default zap amount in wallet settings.
|
||||
sats_e5ec = sats
|
||||
# Button to save default zap amount
|
||||
Save_6f7c = Guardar
|
||||
# Button label to save profile changes
|
||||
Save_changes_00db = Guardar cambios
|
||||
# Column title for search page
|
||||
Search_c573 = Búsqueda
|
||||
# Placeholder for search notes input field
|
||||
Search_notes_42a6 = Buscar notas...
|
||||
# Search in progress message
|
||||
Searching_for___query_5d18 = Buscando '{ $query }'
|
||||
# Description for Home column
|
||||
See_notes_from_your_contacts_ac16 = Ver notas de tus contactos
|
||||
# Description for universe column
|
||||
See_the_whole_nostr_universe_7694 = Ver todo el universo de nostr
|
||||
# Button label to send a zap
|
||||
Send_1ea4 = Enviar
|
||||
# Description for last note per user column
|
||||
Show_the_last_note_for_each_user_from_a_list_50e7 = Mostrar la última nota para cada usuario de una lista
|
||||
# Button label to sign out of account
|
||||
Sign_out_337b = Cerrar sesión
|
||||
# Title for someone else's notes column
|
||||
Someone_else_s_Notes_7e5f = Notas de otra persona
|
||||
# Title for someone else's notifications column
|
||||
Someone_else_s_Notifications_82e6 = Notificaciones de otra persona
|
||||
# Description for contact list column
|
||||
Source_the_last_note_for_each_user_in_your_contact_list_e157 = Busca la última nota de cada usuario en tu lista de contactos
|
||||
# Description for hashtags column
|
||||
Stay_up_to_date_with_a_certain_hashtag_88e3 = Mantente al día con un hashtag específico
|
||||
# Description for notifications column
|
||||
Stay_up_to_date_with_notifications_and_mentions_6f4e = Mantente al día con notificaciones y menciones
|
||||
# Description for someone else's notes column
|
||||
Stay_up_to_date_with_someone_else_s_notes___replies_464c = Mantente al día con las notas y respuestas de otra persona
|
||||
# Description for someone else's notifications column
|
||||
Stay_up_to_date_with_someone_else_s_notifications_and_mentions_3473 = Mantente al día con las notificaciones y menciones de otra persona
|
||||
# Description for individual user column
|
||||
Stay_up_to_date_with_someone_s_notes___replies_aa78 = Mantente al día con las notas y respuestas de alguien
|
||||
# Description for your notifications column
|
||||
Stay_up_to_date_with_your_notifications_and_mentions_e73e = Mantente al día con tus notificaciones y menciones
|
||||
# Step 1 label in support instructions
|
||||
Step_1_8656 = Paso 1
|
||||
# Step 2 label in support instructions
|
||||
Step_2_d08d = Paso 2
|
||||
# Column title for subscribing to external user
|
||||
Subscribe_to_someone_else_s_notes_d1e9 = Suscribirse a las notas de otra persona
|
||||
# Column title for subscribing to individual user
|
||||
Subscribe_to_someone_s_notes_b3c8 = Suscribirse a las notas de alguien
|
||||
# Hover text for dark mode toggle button
|
||||
Switch_to_dark_mode_4dec = Cambiar a modo oscuro
|
||||
# Hover text for light mode toggle button
|
||||
Switch_to_light_mode_72ce = Cambiar a modo claro
|
||||
# Button text to load blurred media
|
||||
Tap_to_Load_4b05 = Toca para cargar
|
||||
# Message shown when Dave trial period has ended
|
||||
The_Dave_Nostr_AI_assistant_trial_has_ended_____Thanks_for_testing__Zap-enabled_Dave_coming_soon_c6c7 = La prueba del asistente de IA Dave de Nostr finalizó :(. ¡Gracias por probarlo! ¡Dave con zaps estará disponible muy pronto!
|
||||
# Column title for note thread view
|
||||
Thread_0f20 = Conversación
|
||||
# Link text for thread references
|
||||
thread_ad1f = conversación
|
||||
# Title for universe column
|
||||
Universe_e01e = Universo
|
||||
# Column title for universe feed
|
||||
Universe_ffaa = Universo
|
||||
# Checkbox label for using wallet only for current account
|
||||
Use_this_wallet_for_the_current_account_only_61dc = Usar esta billetera solo para la cuenta actual
|
||||
# Username and domain identification message
|
||||
username___at___domain___will_be_used_for_identification_a4fd = Se utilizará "{ $username }" en "{ $domain }" para la identificación
|
||||
# Profile username field label
|
||||
Username_daa7 = Nombre de usuario
|
||||
# Column title for wallet management
|
||||
Wallet_5e50 = Billetera
|
||||
# Hint for deck name input field
|
||||
We_recommend_short_names_083e = Recomendamos nombres cortos
|
||||
# Profile website field label
|
||||
Website_7980 = Sitio web
|
||||
# Placeholder for note input field
|
||||
Write_a_banger_note_here_bad2 = Escribe aquí una nota impactante...
|
||||
# Placeholder text for key input field
|
||||
Your_key_here_81bd = Tu clave aquí...
|
||||
# Title for your notes column
|
||||
Your_Notes_f6db = Tus notas
|
||||
# Title for your notifications column
|
||||
Your_Notifications_080d = Tus notificaciones
|
||||
# Heading for zap (tip) action
|
||||
Zap_16b4 = Zap
|
||||
# Hover text for zap button
|
||||
Zap_this_note_42b2 = Enviar zap a esta nota
|
||||
|
||||
# Pluralized strings
|
||||
|
||||
# Search results count
|
||||
Got__count__results_for___query_85fb =
|
||||
{ $count ->
|
||||
[uno] Obtuvo { $count } resultado para '{ $query }'
|
||||
*[otro] Obtuvo { $count } resultados para '{ $query }'
|
||||
}
|
||||
@@ -1,368 +0,0 @@
|
||||
# Main translation file for Notedeck
|
||||
# This file contains common UI strings used throughout the application
|
||||
# Auto-generated by extract_i18n.py - DO NOT EDIT MANUALLY
|
||||
|
||||
|
||||
# Regular strings
|
||||
|
||||
# Profile about/bio field label
|
||||
About_00c0 = Información
|
||||
# Column title for account management
|
||||
Accounts_f018 = Cuentas
|
||||
# Button label to add a relay
|
||||
Add_269d = Añadir
|
||||
# Label for add column button
|
||||
Add_47df = Añadir
|
||||
# Button label to add a different wallet
|
||||
Add_a_different_wallet_that_will_only_be_used_for_this_account_de8d = Añadir un monedero diferente que solo se utilizará para esta cuenta
|
||||
# Error message for missing wallet
|
||||
Add_a_wallet_to_continue_d170 = Añadir un monedero para continuar
|
||||
# Button label to add a new account
|
||||
Add_account_1cfc = Añadir cuenta
|
||||
# Column title for adding new account
|
||||
Add_Account_d06c = Añadir cuenta
|
||||
# Column title for adding algorithm column
|
||||
Add_Algo_Column_0d75 = Añadir columna algorítmica
|
||||
# Column title for adding new column
|
||||
Add_Column_c764 = Añadir columna
|
||||
# Column title for adding new deck
|
||||
Add_Deck_fabf = Añadir Deck
|
||||
# Column title for adding external notifications column
|
||||
Add_External_Notifications_Column_41ae = Añadir columna de notificaciones externas
|
||||
# Column title for adding hashtag column
|
||||
Add_Hashtag_Column_ebf4 = Añadir columna de hashtag
|
||||
# Column title for adding last notes column
|
||||
Add_Last_Notes_Column_bbad = Añadir columna de últimas notas
|
||||
# Column title for adding notifications column
|
||||
Add_Notifications_Column_79f8 = Añadir columna de notificaciones
|
||||
# Button label to add a relay
|
||||
Add_relay_269d = Añadir relé
|
||||
# Button label to add a wallet
|
||||
Add_Wallet_d1be = Añadir monedero
|
||||
# Title for algorithmic feeds column
|
||||
Algo_2452 = Algo
|
||||
# Description for algorithmic feeds column
|
||||
Algorithmic_feeds_to_aid_in_note_discovery_d344 = Feeds algorítmicos para ayudar en el descubrimiento de notas
|
||||
# Label for zap amount input field
|
||||
Amount_70f0 = Cantidad
|
||||
# Button to send message to Dave AI assistant
|
||||
Ask_b7f4 = Preguntar
|
||||
# Placeholder text for Dave AI input field
|
||||
Ask_dave_anything_33d1 = Pregúntale cualquier cosa a Dave...
|
||||
# Profile banner URL field label
|
||||
Banner_52ef = Banner
|
||||
# Beta version label
|
||||
BETA_8e5d = BETA
|
||||
# Broadcast the note to all connected relays
|
||||
Broadcast_fe43 = Transmitir
|
||||
# Broadcast the note only to local network relays
|
||||
Broadcast_Local_7e50 = Transmitir localmente
|
||||
# Button label to cancel an action
|
||||
Cancel_ed3b = Cancelar
|
||||
# Hover text for editable zap amount
|
||||
Click_to_edit_0414 = Haz clic para editar
|
||||
# Column title for note composition
|
||||
Compose_Note_c094 = Redactar nota
|
||||
# Button label to confirm an action
|
||||
Confirm_f8a6 = Confirmar
|
||||
# Status label for connected relay
|
||||
Connected_f8cc = Conectado
|
||||
# Status label for connecting relay
|
||||
Connecting_6b7e = Conectando...
|
||||
# Title for contact list column
|
||||
Contact_List_f85a = Lista de contactos
|
||||
# Column title for contact lists
|
||||
Contacts_7533 = Contactos
|
||||
# Column title for last notes per contact
|
||||
Contacts__last_notes_3f84 = Contactos (últimas notas)
|
||||
# Button label to copy logs
|
||||
Copy_a688 = Copiar
|
||||
# Button to copy media link to clipboard
|
||||
Copy_Link_dc7c = Copiar enlace
|
||||
# Copy the unique note identifier to clipboard
|
||||
Copy_Note_ID_6b45 = Copiar ID de nota
|
||||
# Copy the raw note data in JSON format to clipboard
|
||||
Copy_Note_JSON_9e4e = Copiar JSON de nota
|
||||
# Copy the author's public key to clipboard
|
||||
Copy_Pubkey_9cc4 = Copiar Pubkey
|
||||
# Copy the text content of the note to clipboard
|
||||
Copy_Text_f81c = Copiar texto
|
||||
# Relative time in days
|
||||
count_d_b9be = { $count }d
|
||||
# Relative time in hours
|
||||
count_h_3ecb = { $count }h
|
||||
# Relative time in minutes
|
||||
count_m_b41e = { $count }m
|
||||
# Relative time in months
|
||||
count_mo_7aba = { $count }ms
|
||||
# Relative time in seconds
|
||||
count_s_aa26 = { $count }s
|
||||
# Relative time in weeks
|
||||
count_w_7468 = { $count }sem
|
||||
# Relative time in years
|
||||
count_y_9408 = { $count }a
|
||||
# Button to create a new account
|
||||
Create_Account_6994 = Crear cuenta
|
||||
# Button label to create a new deck
|
||||
Create_Deck_16b7 = Crear Deck
|
||||
# Column title for custom timelines
|
||||
Custom_a69e = Personalizado
|
||||
# Column title for zap amount customization
|
||||
Customize_Zap_Amount_cfc4 = Personalizar monto de zap
|
||||
# Column title for support page
|
||||
Damus_Support_27c0 = Ayuda de Damus
|
||||
# Label for deck name input field
|
||||
Deck_name_cd32 = Nombre del Deck
|
||||
# Label for decks section in side panel
|
||||
DECKS_1fad = DECKS
|
||||
# Label for default zap amount input
|
||||
Default_amount_per_zap_399d = Monto predeterminado por zap:
|
||||
# Name of the default deck feed
|
||||
Default_Deck_fcca = Deck predeterminado
|
||||
# Button label to delete a deck
|
||||
Delete_Deck_bb29 = Eliminar Deck
|
||||
# Tooltip for deleting a column
|
||||
Delete_this_column_8d5a = Eliminar esta columna
|
||||
# Button label to delete a wallet
|
||||
Delete_Wallet_d1d4 = Eliminar monedero
|
||||
# Profile display name field label
|
||||
Display_name_f9d9 = Nombre para mostrar
|
||||
# Domain identification message
|
||||
domain___will_be_used_for_identification_b67e = "{ $domain }" se utilizará para la identificación
|
||||
# Column title for editing deck
|
||||
Edit_Deck_4018 = Editar Deck
|
||||
# Button label to edit a deck
|
||||
Edit_Deck_fd93 = Editar Deck
|
||||
# Button label to edit user profile
|
||||
Edit_Profile_49e6 = Editar perfil
|
||||
# Column title for profile editing
|
||||
Edit_Profile_8ad4 = Editar perfil
|
||||
# Placeholder for hashtag input field
|
||||
Enter_the_desired_hashtags_here__for_multiple_space-separated_7a69 = Ingresa aquí los hashtags deseados (si son varios, sepáralos con un espacio)
|
||||
# Placeholder for relay input field
|
||||
Enter_the_relay_here_1c8b = Ingresa el relé aquí
|
||||
# Hint text to prompt entering the user's public key.
|
||||
Enter_the_user_s_key__npub__hex__nip05__here_650c = Ingresa la clave del usuario (npub, hex, nip05) aquí...
|
||||
# Label for key input field. Key can be public key (npub), private key (nsec), or Nostr address (NIP-05).
|
||||
Enter_your_key_0fca = Ingresa tu clave
|
||||
# Instructions for entering Nostr credentials
|
||||
Enter_your_public_key__npub___nostr_address__e_g___address____or_private_key__nsec___You_must_enter_your_private_key_to_be_able_to_post__reply__etc_48e9 = Ingresa tu clave pública (npub), dirección de Nostr (por ejemplo, { $address }) o clave privada (nsec). Debes ingresar tu clave privada para poder publicar, responder, etc.
|
||||
# Label for find user button
|
||||
Find_User_bd12 = Buscar usuario
|
||||
# Title for hashtags column
|
||||
Hashtags_f8e0 = Hashtags
|
||||
# Title for Home column
|
||||
Home_8c19 = Inicio
|
||||
# Label for deck icon selection
|
||||
Icon_b0ab = Ícono
|
||||
# Title for individual user column
|
||||
Individual_b776 = Individual
|
||||
# Error message for invalid zap amount
|
||||
Invalid_amount_6630 = Importe no válido
|
||||
# Error message for invalid key input
|
||||
Invalid_key_4726 = Clave no válida.
|
||||
# Error message for invalid Nostr Wallet Connect URI
|
||||
Invalid_NWC_URI_031b = NWC URI no válido
|
||||
# Zap amount button for 100000 sats. Abbreviated because the button is too small to display the full amount.
|
||||
k_100K_686c = 100.000
|
||||
# Zap amount button for 10000 sats. Abbreviated because the button is too small to display the full amount.
|
||||
k_10K_f7e6 = 10.000
|
||||
# Zap amount button for 20000 sats. Abbreviated because the button is too small to display the full amount.
|
||||
k_20K_4977 = 20.000
|
||||
# Zap amount button for 50000 sats. Abbreviated because the button is too small to display the full amount.
|
||||
k_50K_c2dc = 50.000
|
||||
# Zap amount button for 5000 sats. Abbreviated because the button is too small to display the full amount.
|
||||
k_5K_f7e6 = 5.000
|
||||
# Description for your notes column
|
||||
Keep_track_of_your_notes___replies_a334 = Haz seguimiento de tus notas y respuestas
|
||||
# Title for last note per user column
|
||||
Last_Note_per_User_17ad = Última nota por usuario
|
||||
# Bitcoin Lightning network address field label
|
||||
Lightning_network_address__lud16_ea51 = Dirección de la red Lightning (lud16)
|
||||
# Login page title
|
||||
Login_9eef = Inicio de sesión
|
||||
# Login button text
|
||||
Login_now___let_s_do_this_5630 = Inicia sesión ahora, ¡manos a la obra!
|
||||
# Text shown on blurred media from unfollowed users
|
||||
Media_from_someone_you_don_t_follow_5611 = Medios de alguien que no sigues
|
||||
# Tooltip for moving a column
|
||||
Moves_this_column_to_another_position_0d4b = Mueve esta columna a otra posición
|
||||
# Title for the user's deck
|
||||
My_Deck_4ac5 = Mi Deck
|
||||
# Label asking if the user is new to Nostr. Underneath this label is a button to create an account.
|
||||
New_to_Nostr_a2fd = ¿Primera vez en Nostr?
|
||||
# NIP-05 identity field label
|
||||
Nostr_address__NIP-05_identity_74a2 = Dirección de Nostr (identidad NIP-05)
|
||||
# Default username when profile is not available
|
||||
nostrich_df29 = nostrich
|
||||
# Status label for disconnected relay
|
||||
Not_Connected_6292 = No conectado
|
||||
# Link text for note references
|
||||
note_cad6 = nota
|
||||
# Beta product warning message
|
||||
Notedeck_is_a_beta_product__Expect_bugs_and_contact_us_when_you_run_into_issues_a671 = Notedeck es un producto en fase beta. Es posible que haya errores, así que ponte en contacto con nosotros si tienes algún problema.
|
||||
# Filter label for notes only view
|
||||
Notes_03fb = Notas
|
||||
# Label for notes-only filter
|
||||
Notes_60d2 = Notas
|
||||
# Filter label for notes and replies view
|
||||
Notes___Replies_1ec2 = Notas y respuestas
|
||||
# Label for notes and replies filter
|
||||
Notes___Replies_6e3b = Notas y respuestas
|
||||
# Column title for notifications
|
||||
Notifications_d673 = Notificaciones
|
||||
# Title for notifications column
|
||||
Notifications_ef56 = Notificaciones
|
||||
# Relative time for very recent events (less than 3 seconds)
|
||||
now_2181 = ahora
|
||||
# Button label to open email client
|
||||
Open_Email_25e9 = Abrir correo electrónico
|
||||
# Instruction to open email client
|
||||
Open_your_default_email_client_to_get_help_from_the_Damus_team_68dc = Abre tu cliente de correo predeterminado para recibir ayuda del equipo de Damus
|
||||
# Placeholder text for NWC URI input
|
||||
Paste_your_NWC_URI_here_b471 = Pega tu URI NWC aquí...
|
||||
# Error message for missing deck name
|
||||
Please_create_a_name_for_the_deck_38e7 = Crea un nombre para el Deck.
|
||||
# Error message for missing deck name and icon
|
||||
Please_create_a_name_for_the_deck_and_select_an_icon_0add = Crea un nombre para el Deck y selecciona un icono.
|
||||
# Error message for missing deck icon
|
||||
Please_select_an_icon_655b = Selecciona un icono.
|
||||
# Button label to post a note
|
||||
Post_now_8a49 = Publicar ahora
|
||||
# Instruction for copying logs
|
||||
Press_the_button_below_to_copy_your_most_recent_logs_to_your_system_s_clipboard__Then_paste_it_into_your_email_322e = Presiona el siguiente botón para copiar los registros más recientes al portapapeles del sistema. A continuación, pégalos en tu correo electrónico.
|
||||
# Profile picture URL field label
|
||||
Profile_picture_81ff = Imagen de perfil
|
||||
# Column title for quote composition
|
||||
Quote_475c = Citar
|
||||
# Error message when quote note cannot be found
|
||||
Quote_of_unknown_note_e4f0 = Cita de nota desconocida
|
||||
# Label for read-only profile mode
|
||||
Read_only_82ff = Solo lectura
|
||||
# Column title for relay management
|
||||
Relays_9d89 = Relés
|
||||
# Label for relay list section
|
||||
Relays_ad5e = Relés
|
||||
# Column title for reply composition
|
||||
Reply_3bf1 = Respuesta
|
||||
# Hover text for reply button
|
||||
Reply_to_this_note_f5de = Responder a esta nota
|
||||
# Error message when reply note cannot be found
|
||||
Reply_to_unknown_note_4401 = Responder a nota desconocida
|
||||
# Fallback template for replying to user
|
||||
replying_to__user_15ab = responder a { $user }
|
||||
# Template for replying to user in unknown thread
|
||||
replying_to__user__in_someone_s_thread_e148 = respondiendo a { $user } en la conversación de alguien
|
||||
# Template for replying to note in different user's thread
|
||||
replying_to__user__s__note__in__thread_user__s__thread_daa8 = respondiendo a { $note } de { $user } en { $thread } de { $thread_user }
|
||||
# Template for replying to user's note
|
||||
replying_to__user__s__note_ccba = respondiendo a { $note } de { $user }
|
||||
# Template for replying to root thread
|
||||
replying_to__user__s__thread_444d = respondiendo a { $thread } de { $user }
|
||||
# Fallback text when reply note is not found
|
||||
replying_to_a_note_e0bc = respondiendo a una nota
|
||||
# Hover text for repost button
|
||||
Repost_this_note_8e56 = Volver a publicar esta nota
|
||||
# Label for reposted notes
|
||||
Reposted_61c8 = Publicadas de nuevo
|
||||
# Heading for support section
|
||||
Running_into_a_bug_1796 = ¿Has encontrado un error?
|
||||
# Label for satoshis (Bitcoin unit) for custom zap amount input field
|
||||
SATS_45d7 = SATS
|
||||
# Unit label for satoshis (Bitcoin unit) for configuring default zap amount in wallet settings.
|
||||
sats_e5ec = sats
|
||||
# Button to save default zap amount
|
||||
Save_6f7c = Guardar
|
||||
# Button label to save profile changes
|
||||
Save_changes_00db = Guardar cambios
|
||||
# Column title for search page
|
||||
Search_c573 = Búsqueda
|
||||
# Placeholder for search notes input field
|
||||
Search_notes_42a6 = Buscar notas...
|
||||
# Search in progress message
|
||||
Searching_for___query_5d18 = Buscando '{ $query }'
|
||||
# Description for Home column
|
||||
See_notes_from_your_contacts_ac16 = Ver notas de tus contactos
|
||||
# Description for universe column
|
||||
See_the_whole_nostr_universe_7694 = Ver todo el universo de nostr
|
||||
# Button label to send a zap
|
||||
Send_1ea4 = Enviar
|
||||
# Description for last note per user column
|
||||
Show_the_last_note_for_each_user_from_a_list_50e7 = Mostrar la última nota para cada usuario de una lista
|
||||
# Button label to sign out of account
|
||||
Sign_out_337b = Cerrar sesión
|
||||
# Title for someone else's notes column
|
||||
Someone_else_s_Notes_7e5f = Notas de otra persona
|
||||
# Title for someone else's notifications column
|
||||
Someone_else_s_Notifications_82e6 = Notificaciones de otra persona
|
||||
# Description for contact list column
|
||||
Source_the_last_note_for_each_user_in_your_contact_list_e157 = Busca la última nota de cada usuario en tu lista de contactos
|
||||
# Description for hashtags column
|
||||
Stay_up_to_date_with_a_certain_hashtag_88e3 = Mantente al día con un hashtag específico
|
||||
# Description for notifications column
|
||||
Stay_up_to_date_with_notifications_and_mentions_6f4e = Mantente al día con notificaciones y menciones
|
||||
# Description for someone else's notes column
|
||||
Stay_up_to_date_with_someone_else_s_notes___replies_464c = Mantente al día con las notas y respuestas de otra persona
|
||||
# Description for someone else's notifications column
|
||||
Stay_up_to_date_with_someone_else_s_notifications_and_mentions_3473 = Mantente al día con las notificaciones y menciones de otra persona
|
||||
# Description for individual user column
|
||||
Stay_up_to_date_with_someone_s_notes___replies_aa78 = Mantente al día con las notas y respuestas de alguien
|
||||
# Description for your notifications column
|
||||
Stay_up_to_date_with_your_notifications_and_mentions_e73e = Mantente al día con tus notificaciones y menciones
|
||||
# Step 1 label in support instructions
|
||||
Step_1_8656 = Paso 1
|
||||
# Step 2 label in support instructions
|
||||
Step_2_d08d = Paso 2
|
||||
# Column title for subscribing to external user
|
||||
Subscribe_to_someone_else_s_notes_d1e9 = Suscribirse a las notas de otra persona
|
||||
# Column title for subscribing to individual user
|
||||
Subscribe_to_someone_s_notes_b3c8 = Suscribirse a las notas de alguien
|
||||
# Hover text for dark mode toggle button
|
||||
Switch_to_dark_mode_4dec = Cambiar a modo oscuro
|
||||
# Hover text for light mode toggle button
|
||||
Switch_to_light_mode_72ce = Cambiar a modo claro
|
||||
# Button text to load blurred media
|
||||
Tap_to_Load_4b05 = Toca para cargar
|
||||
# Message shown when Dave trial period has ended
|
||||
The_Dave_Nostr_AI_assistant_trial_has_ended_____Thanks_for_testing__Zap-enabled_Dave_coming_soon_c6c7 = La prueba del asistente de IA Dave de Nostr ha finalizado :(. ¡Gracias por probarlo! ¡Dave con zaps estará disponible muy pronto!
|
||||
# Column title for note thread view
|
||||
Thread_0f20 = Conversación
|
||||
# Link text for thread references
|
||||
thread_ad1f = conversación
|
||||
# Title for universe column
|
||||
Universe_e01e = Universo
|
||||
# Column title for universe feed
|
||||
Universe_ffaa = Universo
|
||||
# Checkbox label for using wallet only for current account
|
||||
Use_this_wallet_for_the_current_account_only_61dc = Usar este monedero solo para la cuenta actual
|
||||
# Username and domain identification message
|
||||
username___at___domain___will_be_used_for_identification_a4fd = Se utilizará "{ $username }" en "{ $domain }" para la identificación
|
||||
# Profile username field label
|
||||
Username_daa7 = Nombre de usuario
|
||||
# Column title for wallet management
|
||||
Wallet_5e50 = Monedero
|
||||
# Hint for deck name input field
|
||||
We_recommend_short_names_083e = Recomendamos nombres cortos
|
||||
# Profile website field label
|
||||
Website_7980 = Sitio web
|
||||
# Placeholder for note input field
|
||||
Write_a_banger_note_here_bad2 = Escribe aquí una nota impactante...
|
||||
# Placeholder text for key input field
|
||||
Your_key_here_81bd = Tu clave aquí...
|
||||
# Title for your notes column
|
||||
Your_Notes_f6db = Tus notas
|
||||
# Title for your notifications column
|
||||
Your_Notifications_080d = Tus notificaciones
|
||||
# Heading for zap (tip) action
|
||||
Zap_16b4 = Zap
|
||||
# Hover text for zap button
|
||||
Zap_this_note_42b2 = Enviar zap a esta nota
|
||||
|
||||
# Pluralized strings
|
||||
|
||||
# Search results count
|
||||
Got__count__results_for___query_85fb =
|
||||
{ $count ->
|
||||
[uno] Obtuvo { $count } resultado para '{ $query }'
|
||||
*[otro] Obtuvo { $count } resultados para '{ $query }'
|
||||
}
|
||||
@@ -7,6 +7,8 @@
|
||||
|
||||
# Profile about/bio field label
|
||||
About_00c0 = A propos
|
||||
# Display name for account management
|
||||
Accounts_e233 = Comptes
|
||||
# Column title for account management
|
||||
Accounts_f018 = Comptes
|
||||
# Button label to add a relay
|
||||
@@ -21,10 +23,16 @@ Add_a_wallet_to_continue_d170 = Ajouter un portefeuille pour continuer
|
||||
Add_account_1cfc = Ajouter un compte
|
||||
# Column title for adding new account
|
||||
Add_Account_d06c = Ajouter un compte
|
||||
# Display name for adding account
|
||||
Add_Account_d715 = Ajouter un compte
|
||||
# Column title for adding algorithm column
|
||||
Add_Algo_Column_0d75 = Ajouter une colonne Algo
|
||||
# Display name for adding column
|
||||
Add_Column_c6ff = Ajouter une colonne
|
||||
# Column title for adding new column
|
||||
Add_Column_c764 = Ajouter une colonne
|
||||
# Display name for adding deck
|
||||
Add_Deck_6e5f = Ajouter un deck
|
||||
# Column title for adding new deck
|
||||
Add_Deck_fabf = Ajouter un deck
|
||||
# Column title for adding external notifications column
|
||||
@@ -61,6 +69,8 @@ Broadcast_Local_7e50 = Diffusion locale
|
||||
Cancel_ed3b = Annuler
|
||||
# Hover text for editable zap amount
|
||||
Click_to_edit_0414 = Cliquer pour modifier
|
||||
# Display name for note composition
|
||||
Compose_Note_ad11 = Ecrire une note
|
||||
# Column title for note composition
|
||||
Compose_Note_c094 = Ecrire une note
|
||||
# Button label to confirm an action
|
||||
@@ -73,6 +83,8 @@ Connecting_6b7e = Connexion...
|
||||
Contact_List_f85a = Liste de contacts
|
||||
# Column title for contact lists
|
||||
Contacts_7533 = Contacts
|
||||
# Timeline kind label for contact lists
|
||||
Contacts_8b98 = Contacts
|
||||
# Column title for last notes per contact
|
||||
Contacts__last_notes_3f84 = Contacts (dernières notes)
|
||||
# Button label to copy logs
|
||||
@@ -107,8 +119,12 @@ Create_Account_6994 = Créer un compte
|
||||
Create_Deck_16b7 = Créer un deck
|
||||
# Column title for custom timelines
|
||||
Custom_a69e = Personnaliser
|
||||
# Display name for custom timelines
|
||||
Custom_cb4f = Personnaliser
|
||||
# Column title for zap amount customization
|
||||
Customize_Zap_Amount_cfc4 = Personnaliser le montant du Zap
|
||||
# Display name for zap customization
|
||||
Customize_Zap_Amount_ed29 = Personnaliser le montant du Zap
|
||||
# Column title for support page
|
||||
Damus_Support_27c0 = Assistance Damus
|
||||
# Label for deck name input field
|
||||
@@ -131,10 +147,14 @@ Display_name_f9d9 = Nom d'utilisateur
|
||||
domain___will_be_used_for_identification_b67e = "{ $domain }" sera utilisé pour l'identification
|
||||
# Column title for editing deck
|
||||
Edit_Deck_4018 = Modifier le deck
|
||||
# Display name for editing deck
|
||||
Edit_Deck_c9ba = Modifier le deck
|
||||
# Button label to edit a deck
|
||||
Edit_Deck_fd93 = Modifier le deck
|
||||
# Button label to edit user profile
|
||||
Edit_Profile_49e6 = Modifier le profil
|
||||
# Display name for profile editing
|
||||
Edit_Profile_6699 = Modifier le profil
|
||||
# Column title for profile editing
|
||||
Edit_Profile_8ad4 = Modifier le profil
|
||||
# Placeholder for hashtag input field
|
||||
@@ -149,8 +169,14 @@ Enter_your_key_0fca = Entrez votre clé
|
||||
Enter_your_public_key__npub___nostr_address__e_g___address____or_private_key__nsec___You_must_enter_your_private_key_to_be_able_to_post__reply__etc_48e9 = Entrez votre clé publique (npub), votre adresse nostr (par exemple { $address }), ou votre clé privée (nsec). Vous devez entrer votre clé privée pour pouvoir poster, répondre, etc.
|
||||
# Label for find user button
|
||||
Find_User_bd12 = Trouver un utilisateur
|
||||
# Timeline kind label for hashtag feeds
|
||||
Hashtag_a0ab = Hashtag
|
||||
# Display name for hashtag feeds
|
||||
Hashtags_617e = Hashtags
|
||||
# Title for hashtags column
|
||||
Hashtags_f8e0 = Hashtags
|
||||
# Display name for home feed
|
||||
Home_3efc = Accueil
|
||||
# Title for Home column
|
||||
Home_8c19 = Accueil
|
||||
# Label for deck icon selection
|
||||
@@ -177,6 +203,10 @@ k_5K_f7e6 = 5K
|
||||
Keep_track_of_your_notes___replies_a334 = Gardez une trace de vos notes & réponses
|
||||
# Title for last note per user column
|
||||
Last_Note_per_User_17ad = Dernière note par utilisateur
|
||||
# Timeline kind label for last notes per pubkey
|
||||
Last_Notes_aefe = Dernières notes
|
||||
# Display name for last notes per contact
|
||||
Last_Per_Pubkey__Contact_33ce = Dernière par Pubkey (Contact)
|
||||
# Bitcoin Lightning network address field label
|
||||
Lightning_network_address__lud16_ea51 = Adresse réseau Lightning (lud16)
|
||||
# Login page title
|
||||
@@ -209,6 +239,10 @@ Notes_60d2 = Notes
|
||||
Notes___Replies_1ec2 = Notes & Réponses
|
||||
# Label for notes and replies filter
|
||||
Notes___Replies_6e3b = Notes & Réponses
|
||||
# Timeline kind label for notifications
|
||||
Notifications_6228 = Notifications
|
||||
# Display name for notifications
|
||||
Notifications_8029 = Notifications
|
||||
# Column title for notifications
|
||||
Notifications_d673 = Notifications
|
||||
# Title for notifications column
|
||||
@@ -231,20 +265,30 @@ Please_select_an_icon_655b = Veuillez choisir une icône.
|
||||
Post_now_8a49 = Publier maintenant
|
||||
# Instruction for copying logs
|
||||
Press_the_button_below_to_copy_your_most_recent_logs_to_your_system_s_clipboard__Then_paste_it_into_your_email_322e = Cliquez sur le bouton ci-dessous pour copier vos données les plus récentes dans le presse-papiers de votre système. Collez-les ensuite dans votre courrier électronique.
|
||||
# Display name for user profiles
|
||||
Profile_2478 = Profil
|
||||
# Timeline kind label for user profiles
|
||||
Profile_9027 = Profil
|
||||
# Profile picture URL field label
|
||||
Profile_picture_81ff = Photo de profil
|
||||
# Column title for quote composition
|
||||
Quote_475c = Citation
|
||||
# Display name for quote composition
|
||||
Quote_a38e = Citation
|
||||
# Error message when quote note cannot be found
|
||||
Quote_of_unknown_note_e4f0 = Citation d'une note inconnue
|
||||
# Label for read-only profile mode
|
||||
Read_only_82ff = En lecture seule
|
||||
# Display name for relay management
|
||||
Relays_7335 = Relais
|
||||
# Column title for relay management
|
||||
Relays_9d89 = Relais
|
||||
# Label for relay list section
|
||||
Relays_ad5e = Relais
|
||||
# Column title for reply composition
|
||||
Reply_3bf1 = Répondre
|
||||
# Display name for reply composition
|
||||
Reply_b40f = Répondre
|
||||
# Hover text for reply button
|
||||
Reply_to_this_note_f5de = Répondre à cette note
|
||||
# Error message when reply note cannot be found
|
||||
@@ -275,6 +319,12 @@ sats_e5ec = sats
|
||||
Save_6f7c = Enregistrer
|
||||
# Button label to save profile changes
|
||||
Save_changes_00db = Enregistrer les modifications
|
||||
# Display name for search results
|
||||
Search_0aa0 = Recherche
|
||||
# Display name for search page
|
||||
Search_4503 = Rechercher
|
||||
# Timeline kind label for search results
|
||||
Search_a0b8 = Recherche
|
||||
# Column title for search page
|
||||
Search_c573 = Rechercher
|
||||
# Placeholder for search notes input field
|
||||
@@ -317,6 +367,8 @@ Step_2_d08d = Etape 2
|
||||
Subscribe_to_someone_else_s_notes_d1e9 = S'abonner aux notes de quelqu'un d'autre
|
||||
# Column title for subscribing to individual user
|
||||
Subscribe_to_someone_s_notes_b3c8 = S'abonner aux notes de quelqu'un
|
||||
# Display name for support page
|
||||
Support_a4b4 = Assistance
|
||||
# Hover text for dark mode toggle button
|
||||
Switch_to_dark_mode_4dec = Passer en mode sombre
|
||||
# Hover text for light mode toggle button
|
||||
@@ -327,8 +379,16 @@ Tap_to_Load_4b05 = Appuyer pour charger
|
||||
The_Dave_Nostr_AI_assistant_trial_has_ended_____Thanks_for_testing__Zap-enabled_Dave_coming_soon_c6c7 = La période d'essai de l'assistant IA Dave Nostr est terminée :(. Merci de l'avoir testé ! Un Dave compatible-Zap sera bientôt disponible !
|
||||
# Column title for note thread view
|
||||
Thread_0f20 = Fil
|
||||
# Display name for thread view
|
||||
Thread_9957 = Fil
|
||||
# Link text for thread references
|
||||
thread_ad1f = fil
|
||||
# Generic timeline kind label
|
||||
Timeline_b0fc = Chronologie
|
||||
# Timeline kind label for universe feed
|
||||
Universe_0a3e = Universel
|
||||
# Display name for universe feed
|
||||
Universe_d47e = Universel
|
||||
# Title for universe column
|
||||
Universe_e01e = Universel
|
||||
# Column title for universe feed
|
||||
@@ -341,6 +401,8 @@ username___at___domain___will_be_used_for_identification_a4fd = "{ $username }"
|
||||
Username_daa7 = Nom d'utilisateur
|
||||
# Column title for wallet management
|
||||
Wallet_5e50 = Portefeuille
|
||||
# Display name for wallet management
|
||||
Wallet_cdca = Portefeuille
|
||||
# Hint for deck name input field
|
||||
We_recommend_short_names_083e = Nous recommandons des noms courts
|
||||
# Profile website field label
|
||||
|
||||
@@ -1,370 +0,0 @@
|
||||
# Main translation file for Notedeck
|
||||
# This file contains common UI strings used throughout the application
|
||||
# Auto-generated by extract_i18n.py - DO NOT EDIT MANUALLY
|
||||
|
||||
|
||||
# Regular strings
|
||||
|
||||
# Profile about/bio field label
|
||||
About_00c0 = เกี่ยวกับเรา
|
||||
# Column title for account management
|
||||
Accounts_f018 = บัญชีผู้ใช้
|
||||
# Button label to add a relay
|
||||
Add_269d = เพิ่ม
|
||||
# Label for add column button
|
||||
Add_47df = เพิ่ม
|
||||
# Button label to add a different wallet
|
||||
Add_a_different_wallet_that_will_only_be_used_for_this_account_de8d = เพิ่มวอลเล็ตอื่นเพื่อใช้สำหรับบัญชีนี้โดยเฉพาะ
|
||||
# Error message for missing wallet
|
||||
Add_a_wallet_to_continue_d170 = พิ่มวอลเล็ตเพื่อดำเนินการต่อ
|
||||
# Button label to add a new account
|
||||
Add_account_1cfc = เพิ่มบัญชี
|
||||
# Column title for adding new account
|
||||
Add_Account_d06c = เพิ่มบัญชี
|
||||
# Column title for adding algorithm column
|
||||
Add_Algo_Column_0d75 = เพิ่มคอลัมน์อัลกอฯ
|
||||
# Column title for adding new column
|
||||
Add_Column_c764 = เพิ่มคอลัมน์
|
||||
# Column title for adding new deck
|
||||
Add_Deck_fabf = เพิ่ม Deck
|
||||
# Column title for adding external notifications column
|
||||
Add_External_Notifications_Column_41ae = เพิ่มคอลัมน์การแจ้งเตือนภายนอก
|
||||
# Column title for adding hashtag column
|
||||
Add_Hashtag_Column_ebf4 = เพิ่มคอลัมน์แฮชแท็ก
|
||||
# Column title for adding last notes column
|
||||
Add_Last_Notes_Column_bbad = เพิ่มคอลัมน์โน้ตล่าสุด
|
||||
# Column title for adding notifications column
|
||||
Add_Notifications_Column_79f8 = เพิ่มคอลัมน์การแจ้งเตือน
|
||||
# Button label to add a relay
|
||||
Add_relay_269d = เพิ่มรีเลย์
|
||||
# Button label to add a wallet
|
||||
Add_Wallet_d1be = เพิ่มวอลเล็ต
|
||||
# Title for algorithmic feeds column
|
||||
Algo_2452 = อัลกอฯ
|
||||
# Description for algorithmic feeds column
|
||||
Algorithmic_feeds_to_aid_in_note_discovery_d344 = ฟีดแบบอัลกอริทึมที่ช่วยในการค้นหาโน้ต
|
||||
# Label for zap amount input field
|
||||
Amount_70f0 = จำนวน
|
||||
# Button to send message to Dave AI assistant
|
||||
Ask_b7f4 = ถาม
|
||||
# Placeholder text for Dave AI input field
|
||||
Ask_dave_anything_33d1 = ถามเดฟได้ทุกเรื่อง...
|
||||
# Profile banner URL field label
|
||||
Banner_52ef = ภาพปก
|
||||
# Beta version label
|
||||
BETA_8e5d = เบต้า
|
||||
# Broadcast the note to all connected relays
|
||||
Broadcast_fe43 = เผยแพร่
|
||||
# Broadcast the note only to local network relays
|
||||
Broadcast_Local_7e50 = เผยแพร่เฉพาะที่
|
||||
# Button label to cancel an action
|
||||
Cancel_ed3b = ยกเลิก
|
||||
# Hover text for editable zap amount
|
||||
Click_to_edit_0414 = คลิกเพื่อแก้ไข
|
||||
# Column title for note composition
|
||||
Compose_Note_c094 = เขียนโน้ต
|
||||
# Button label to confirm an action
|
||||
Confirm_f8a6 = ยืนยัน
|
||||
# Status label for connected relay
|
||||
Connected_f8cc = เชื่อมต่อแล้ว
|
||||
# Status label for connecting relay
|
||||
Connecting_6b7e = กำลังเชื่อมต่อ...
|
||||
# Title for contact list column
|
||||
Contact_List_f85a = รายชื่อผู้ติดต่อ
|
||||
# Column title for contact lists
|
||||
Contacts_7533 = ผู้ติดต่อ
|
||||
# Column title for last notes per contact
|
||||
Contacts__last_notes_3f84 = ผู้ติดต่อ (โน้ตล่าสุด)
|
||||
# Button label to copy logs
|
||||
Copy_a688 = คัดลอก
|
||||
# Button to copy media link to clipboard
|
||||
Copy_Link_dc7c = คัดลอกลิงก์
|
||||
# Copy the unique note identifier to clipboard
|
||||
Copy_Note_ID_6b45 = คัดลอก ID โน้ต
|
||||
# Copy the raw note data in JSON format to clipboard
|
||||
Copy_Note_JSON_9e4e = คัดลอก JSON ของโน้ต
|
||||
# Copy the author's public key to clipboard
|
||||
Copy_Pubkey_9cc4 = คัดลอก Pubkey
|
||||
# Copy the text content of the note to clipboard
|
||||
Copy_Text_f81c = คัดลอกข้อความ
|
||||
# Relative time in days
|
||||
count_d_b9be = { $count }d
|
||||
# Relative time in hours
|
||||
count_h_3ecb = { $count }h
|
||||
# Relative time in minutes
|
||||
count_m_b41e = { $count }m
|
||||
# Relative time in months
|
||||
count_mo_7aba = { $count }mo
|
||||
# Relative time in seconds
|
||||
count_s_aa26 = { $count }s
|
||||
# Relative time in weeks
|
||||
count_w_7468 = { $count }w
|
||||
# Relative time in years
|
||||
count_y_9408 = { $count }y
|
||||
# Button to create a new account
|
||||
Create_Account_6994 = สร้างบัญชี
|
||||
# Button label to create a new deck
|
||||
Create_Deck_16b7 = สร้าง Deck
|
||||
# Column title for custom timelines
|
||||
Custom_a69e = กำหนดเอง
|
||||
# Column title for zap amount customization
|
||||
Customize_Zap_Amount_cfc4 = กำหนดจำนวน Zap
|
||||
# Column title for support page
|
||||
Damus_Support_27c0 = ฝ่ายสนับสนุน Damus
|
||||
# Label for deck name input field
|
||||
Deck_name_cd32 = ชื่อ Deck
|
||||
# Label for decks section in side panel
|
||||
DECKS_1fad = DECKS
|
||||
# Label for default zap amount input
|
||||
Default_amount_per_zap_399d = ยอด Zap เริ่มต้น
|
||||
# Name of the default deck feed
|
||||
Default_Deck_fcca = Deck หลัก
|
||||
# Button label to delete a deck
|
||||
Delete_Deck_bb29 = ลบ Deck
|
||||
# Tooltip for deleting a column
|
||||
Delete_this_column_8d5a = ลบคอลัมน์นี้
|
||||
# Button label to delete a wallet
|
||||
Delete_Wallet_d1d4 = ลบวอลเล็ต
|
||||
# Profile display name field label
|
||||
Display_name_f9d9 = ชื่อที่แสดง
|
||||
# Domain identification message
|
||||
domain___will_be_used_for_identification_b67e = { $domain } จะใช้สำหรับการระบุตัวตน
|
||||
# Column title for editing deck
|
||||
Edit_Deck_4018 = แก้ไข Deck
|
||||
# Button label to edit a deck
|
||||
Edit_Deck_fd93 = แก้ไข Deck
|
||||
# Button label to edit user profile
|
||||
Edit_Profile_49e6 = แก้ไขโปรไฟล์
|
||||
# Column title for profile editing
|
||||
Edit_Profile_8ad4 = แก้ไขโปรไฟล์
|
||||
# Placeholder for hashtag input field
|
||||
Enter_the_desired_hashtags_here__for_multiple_space-separated_7a69 = ใส่แฮชแท็กที่ต้องการ (หากมีหลายอัน ให้คั่นด้วยการเว้นวรรค)
|
||||
# Placeholder for relay input field
|
||||
Enter_the_relay_here_1c8b = ใส่รีเลย์ที่นี่
|
||||
# Hint text to prompt entering the user's public key.
|
||||
Enter_the_user_s_key__npub__hex__nip05__here_650c = ใส่คีย์ของผู้ใช้ (npub, hex, nip05)...
|
||||
# Label for key input field. Key can be public key (npub), private key (nsec), or Nostr address (NIP-05).
|
||||
Enter_your_key_0fca = ใส่คีย์ของคุณ
|
||||
# Instructions for entering Nostr credentials
|
||||
Enter_your_public_key__npub___nostr_address__e_g___address____or_private_key__nsec___You_must_enter_your_private_key_to_be_able_to_post__reply__etc_48e9 =
|
||||
โปรดใส่คีย์สาธารณะ (npub), ที่อยู่ Nostr (เช่น { $address }) หรือคีย์ส่วนตัว (nsec)
|
||||
คุณจำเป็นต้องใส่คีย์ส่วนตัวเพื่อทำการโพสต์, ตอบกลับ และอื่นๆ
|
||||
# Label for find user button
|
||||
Find_User_bd12 = ค้นหาผู้ใช้
|
||||
# Title for hashtags column
|
||||
Hashtags_f8e0 = แฮชแท็ก
|
||||
# Title for Home column
|
||||
Home_8c19 = หน้าแรก
|
||||
# Label for deck icon selection
|
||||
Icon_b0ab = ไอคอน
|
||||
# Title for individual user column
|
||||
Individual_b776 = ปัจเจคบุคคล
|
||||
# Error message for invalid zap amount
|
||||
Invalid_amount_6630 = จำนวนเงินไม่ถูกต้อง
|
||||
# Error message for invalid key input
|
||||
Invalid_key_4726 = คีย์ไม่ถูกต้อง
|
||||
# Error message for invalid Nostr Wallet Connect URI
|
||||
Invalid_NWC_URI_031b = NWC URI ไม่ถูกต้อง
|
||||
# Zap amount button for 100000 sats. Abbreviated because the button is too small to display the full amount.
|
||||
k_100K_686c = 100K
|
||||
# Zap amount button for 10000 sats. Abbreviated because the button is too small to display the full amount.
|
||||
k_10K_f7e6 = 10K
|
||||
# Zap amount button for 20000 sats. Abbreviated because the button is too small to display the full amount.
|
||||
k_20K_4977 = 20K
|
||||
# Zap amount button for 50000 sats. Abbreviated because the button is too small to display the full amount.
|
||||
k_50K_c2dc = 50K
|
||||
# Zap amount button for 5000 sats. Abbreviated because the button is too small to display the full amount.
|
||||
k_5K_f7e6 = 5K
|
||||
# Description for your notes column
|
||||
Keep_track_of_your_notes___replies_a334 = ติดตามโน้ตและการตอบกลับของคุณ
|
||||
# Title for last note per user column
|
||||
Last_Note_per_User_17ad = โน้ตล่าสุดของผู้ใช้แต่ละคน
|
||||
# Bitcoin Lightning network address field label
|
||||
Lightning_network_address__lud16_ea51 = ที่อยู่ Lightning Network (lud16)
|
||||
# Login page title
|
||||
Login_9eef = เข้าสู่ระบบ
|
||||
# Login button text
|
||||
Login_now___let_s_do_this_5630 = เข้าสู่ระบบเลย — มาเริ่มกัน!
|
||||
# Text shown on blurred media from unfollowed users
|
||||
Media_from_someone_you_don_t_follow_5611 = สื่อจากคนที่คุณไม่ได้ติดตาม
|
||||
# Tooltip for moving a column
|
||||
Moves_this_column_to_another_position_0d4b = ย้ายคอลัมน์นี้ไปยังตำแหน่งอื่น
|
||||
# Title for the user's deck
|
||||
My_Deck_4ac5 = Deck ของฉัน
|
||||
# Label asking if the user is new to Nostr. Underneath this label is a button to create an account.
|
||||
New_to_Nostr_a2fd = มือใหม่สำหรับ Nostr?
|
||||
# NIP-05 identity field label
|
||||
Nostr_address__NIP-05_identity_74a2 = ที่อยู่ Nostr (NIP-05)
|
||||
# Default username when profile is not available
|
||||
nostrich_df29 = นกม่วง
|
||||
# Status label for disconnected relay
|
||||
Not_Connected_6292 = ไม่ได้เชื่อมต่อ
|
||||
# Link text for note references
|
||||
note_cad6 = โน้ต
|
||||
# Beta product warning message
|
||||
Notedeck_is_a_beta_product__Expect_bugs_and_contact_us_when_you_run_into_issues_a671 = Notedeck เป็นผลิตภัณฑ์รุ่นเบต้า ซึ่งอาจมีข้อบกพร่องเกิดขึ้นได้ โปรดติดต่อเราเมื่อคุณพบปัญหา
|
||||
# Filter label for notes only view
|
||||
Notes_03fb = โน้ต
|
||||
# Label for notes-only filter
|
||||
Notes_60d2 = โน้ต
|
||||
# Filter label for notes and replies view
|
||||
Notes___Replies_1ec2 = โน้ตและการตอบกลับ
|
||||
# Label for notes and replies filter
|
||||
Notes___Replies_6e3b = โน้ตและการตอบกลับ
|
||||
# Column title for notifications
|
||||
Notifications_d673 = การแจ้งเตือน
|
||||
# Title for notifications column
|
||||
Notifications_ef56 = การแจ้งเตือน
|
||||
# Relative time for very recent events (less than 3 seconds)
|
||||
now_2181 = เมื่อสักครู่
|
||||
# Button label to open email client
|
||||
Open_Email_25e9 = เปิดอีเมล
|
||||
# Instruction to open email client
|
||||
Open_your_default_email_client_to_get_help_from_the_Damus_team_68dc = เปิดโปรแกรมอีเมลของคุณเพื่อรับความช่วยเหลือจากทีม Damus
|
||||
# Placeholder text for NWC URI input
|
||||
Paste_your_NWC_URI_here_b471 = วาง NWC URI ของคุณที่นี่...
|
||||
# Error message for missing deck name
|
||||
Please_create_a_name_for_the_deck_38e7 = กรุณาตั้งชื่อ Deck
|
||||
# Error message for missing deck name and icon
|
||||
Please_create_a_name_for_the_deck_and_select_an_icon_0add = กรุณาตั้งชื่อ Deck และเลือกไอคอน
|
||||
# Error message for missing deck icon
|
||||
Please_select_an_icon_655b = กรุณาเลือกไอคอน
|
||||
# Button label to post a note
|
||||
Post_now_8a49 = โพสต์เลย
|
||||
# Instruction for copying logs
|
||||
Press_the_button_below_to_copy_your_most_recent_logs_to_your_system_s_clipboard__Then_paste_it_into_your_email_322e = กดปุ่มด้านล่างเพื่อคัดลอกข้อมูลบันทึกล่าสุด ไปยังคลิปบอร์ด จากนั้นนำไปวางในอีเมลของคุณ
|
||||
# Profile picture URL field label
|
||||
Profile_picture_81ff = รูปโปรไฟล์
|
||||
# Column title for quote composition
|
||||
Quote_475c = อ้างอิง
|
||||
# Error message when quote note cannot be found
|
||||
Quote_of_unknown_note_e4f0 = อ้างอิงโน้ตที่ไม่รู้จัก
|
||||
# Label for read-only profile mode
|
||||
Read_only_82ff = อ่านอย่างเดียว
|
||||
# Column title for relay management
|
||||
Relays_9d89 = รีเลย์
|
||||
# Label for relay list section
|
||||
Relays_ad5e = รีเลย์
|
||||
# Column title for reply composition
|
||||
Reply_3bf1 = ตอบกลับ
|
||||
# Hover text for reply button
|
||||
Reply_to_this_note_f5de = ตอบกลับโน้ตนี้
|
||||
# Error message when reply note cannot be found
|
||||
Reply_to_unknown_note_4401 = ตอบกลับโน้ตที่ไม่รู้จัก
|
||||
# Fallback template for replying to user
|
||||
replying_to__user_15ab = ตอบกลับ { $user }
|
||||
# Template for replying to user in unknown thread
|
||||
replying_to__user__in_someone_s_thread_e148 = ตอบกลับ { $user } ในเธรดของผู้อื่น
|
||||
# Template for replying to note in different user's thread
|
||||
replying_to__user__s__note__in__thread_user__s__thread_daa8 = ตอบกลับโน้ต { $note } ของ { $user } ในเธรด { $thread } ของ { $thread_user }
|
||||
# Template for replying to user's note
|
||||
replying_to__user__s__note_ccba = ตอบกลับโน้ต { $user } ใน { $note }
|
||||
# Template for replying to root thread
|
||||
replying_to__user__s__thread_444d = ตอบกลับ { $user } ใน { $thread }
|
||||
# Fallback text when reply note is not found
|
||||
replying_to_a_note_e0bc = ตอบกลับโน้ต
|
||||
# Hover text for repost button
|
||||
Repost_this_note_8e56 = รีโพสต์โน้ตนี้
|
||||
# Label for reposted notes
|
||||
Reposted_61c8 = รีโพสต์แล้ว
|
||||
# Heading for support section
|
||||
Running_into_a_bug_1796 = พบปัญหาในการใช้งานใช่ไหม?
|
||||
# Label for satoshis (Bitcoin unit) for custom zap amount input field
|
||||
SATS_45d7 = SATS
|
||||
# Unit label for satoshis (Bitcoin unit) for configuring default zap amount in wallet settings.
|
||||
sats_e5ec = sats
|
||||
# Button to save default zap amount
|
||||
Save_6f7c = บันทึก
|
||||
# Button label to save profile changes
|
||||
Save_changes_00db = บันทึกการเปลี่ยนแปลง
|
||||
# Column title for search page
|
||||
Search_c573 = ค้นหา
|
||||
# Placeholder for search notes input field
|
||||
Search_notes_42a6 = ค้นหาโน้ต...
|
||||
# Search in progress message
|
||||
Searching_for___query_5d18 = กำลังค้นหา '{ $query }'
|
||||
# Description for Home column
|
||||
See_notes_from_your_contacts_ac16 = ดูโน้ตจากผู้ติดต่อของคุณ
|
||||
# Description for universe column
|
||||
See_the_whole_nostr_universe_7694 = ท่องจักรวาล Nostr ทั้งหมด
|
||||
# Button label to send a zap
|
||||
Send_1ea4 = ส่ง
|
||||
# Description for last note per user column
|
||||
Show_the_last_note_for_each_user_from_a_list_50e7 = แสดงโน้ตล่าสุดของผู้ใช้แต่ละคนจากรายการ
|
||||
# Button label to sign out of account
|
||||
Sign_out_337b = ออกจากระบบ
|
||||
# Title for someone else's notes column
|
||||
Someone_else_s_Notes_7e5f = โน้ตของผู้อื่น
|
||||
# Title for someone else's notifications column
|
||||
Someone_else_s_Notifications_82e6 = การแจ้งเตือนของผู้อื่น
|
||||
# Description for contact list column
|
||||
Source_the_last_note_for_each_user_in_your_contact_list_e157 = ดึงโน้ตล่าสุดของผู้ใช้แต่ละคนในรายชื่อผู้ติดต่อ
|
||||
# Description for hashtags column
|
||||
Stay_up_to_date_with_a_certain_hashtag_88e3 = ติดตามความเคลื่อนไหวของแฮชแท็ก
|
||||
# Description for notifications column
|
||||
Stay_up_to_date_with_notifications_and_mentions_6f4e = ติดตามการแจ้งเตือนและการกล่าวถึง
|
||||
# Description for someone else's notes column
|
||||
Stay_up_to_date_with_someone_else_s_notes___replies_464c = ติดตามโน้ตและการตอบกลับของผู้อื่น
|
||||
# Description for someone else's notifications column
|
||||
Stay_up_to_date_with_someone_else_s_notifications_and_mentions_3473 = ติดตามการแจ้งเตือนและการกล่าวถึงของผู้อื่น
|
||||
# Description for individual user column
|
||||
Stay_up_to_date_with_someone_s_notes___replies_aa78 = ติดตามโน้ตและการตอบกลับของผู้อื่น
|
||||
# Description for your notifications column
|
||||
Stay_up_to_date_with_your_notifications_and_mentions_e73e = ติดตามการแจ้งเตือนและการกล่าวถึงของคุณ
|
||||
# Step 1 label in support instructions
|
||||
Step_1_8656 = ขั้นตอนที่ 1
|
||||
# Step 2 label in support instructions
|
||||
Step_2_d08d = ขั้นตอนที่ 2
|
||||
# Column title for subscribing to external user
|
||||
Subscribe_to_someone_else_s_notes_d1e9 = ติดตามโน้ตของผู้อื่น
|
||||
# Column title for subscribing to individual user
|
||||
Subscribe_to_someone_s_notes_b3c8 = ติดตามโน้ตของผู้อื่น
|
||||
# Hover text for dark mode toggle button
|
||||
Switch_to_dark_mode_4dec = เปลี่ยนเป็นโหมดมืด
|
||||
# Hover text for light mode toggle button
|
||||
Switch_to_light_mode_72ce = เปลี่ยนเป็นโหมดสว่าง
|
||||
# Button text to load blurred media
|
||||
Tap_to_Load_4b05 = แตะเพื่อโหลด
|
||||
# Message shown when Dave trial period has ended
|
||||
The_Dave_Nostr_AI_assistant_trial_has_ended_____Thanks_for_testing__Zap-enabled_Dave_coming_soon_c6c7 = ช่วงทดลองใช้ผู้ช่วย AI 'Dave Nostr' ได้สิ้นสุดลงแล้ว :( ขอบคุณที่ร่วมทดสอบ! Dave ที่รองรับการ Zap กำลังจะมาเร็วๆ นี้!
|
||||
# Column title for note thread view
|
||||
Thread_0f20 = เธรด
|
||||
# Link text for thread references
|
||||
thread_ad1f = เธรด
|
||||
# Title for universe column
|
||||
Universe_e01e = จักรวาล
|
||||
# Column title for universe feed
|
||||
Universe_ffaa = จักรวาล
|
||||
# Checkbox label for using wallet only for current account
|
||||
Use_this_wallet_for_the_current_account_only_61dc = ใช้วอลเล็ตนี้สำหรับบัญชีปัจจุบันเท่านั้น
|
||||
# Username and domain identification message
|
||||
username___at___domain___will_be_used_for_identification_a4fd = "{ $username }" ที่ "{ $domain }" จะถูกใช้สำหรับการระบุตัวตน
|
||||
# Profile username field label
|
||||
Username_daa7 = ชื่อผู้ใช้
|
||||
# Column title for wallet management
|
||||
Wallet_5e50 = วอลเล็ต
|
||||
# Hint for deck name input field
|
||||
We_recommend_short_names_083e = เราแนะนำให้ใช้ชื่อสั้นๆ
|
||||
# Profile website field label
|
||||
Website_7980 = เว็บไซต์
|
||||
# Placeholder for note input field
|
||||
Write_a_banger_note_here_bad2 = เขียนโน้ตปังๆ ที่นี่...
|
||||
# Placeholder text for key input field
|
||||
Your_key_here_81bd = ใส่คีย์ของคุณที่นี่...
|
||||
# Title for your notes column
|
||||
Your_Notes_f6db = โน้ตของคุณ
|
||||
# Title for your notifications column
|
||||
Your_Notifications_080d = การแจ้งเตือนของคุณ
|
||||
# Heading for zap (tip) action
|
||||
Zap_16b4 = Zap
|
||||
# Hover text for zap button
|
||||
Zap_this_note_42b2 = Zap โน้ตนี้
|
||||
|
||||
# Pluralized strings
|
||||
|
||||
# Search results count
|
||||
Got__count__results_for___query_85fb =
|
||||
{ $count ->
|
||||
[one] ผลการค้นหา '{ $query }': พบ { $count } รายการ
|
||||
*[other] ผลการค้นหา '{ $query }': พบ { $count } รายการ
|
||||
}
|
||||
@@ -7,6 +7,8 @@
|
||||
|
||||
# Profile about/bio field label
|
||||
About_00c0 = 关于
|
||||
# Display name for account management
|
||||
Accounts_e233 = 帐户
|
||||
# Column title for account management
|
||||
Accounts_f018 = 帐户
|
||||
# Button label to add a relay
|
||||
@@ -21,10 +23,16 @@ Add_a_wallet_to_continue_d170 = 添加钱包以继续
|
||||
Add_account_1cfc = 添加帐户
|
||||
# Column title for adding new account
|
||||
Add_Account_d06c = 添加帐户
|
||||
# Display name for adding account
|
||||
Add_Account_d715 = 添加帐户
|
||||
# Column title for adding algorithm column
|
||||
Add_Algo_Column_0d75 = 添加算法列
|
||||
# Display name for adding column
|
||||
Add_Column_c6ff = 添加列
|
||||
# Column title for adding new column
|
||||
Add_Column_c764 = 添加列
|
||||
# Display name for adding deck
|
||||
Add_Deck_6e5f = 添加仪表板
|
||||
# Column title for adding new deck
|
||||
Add_Deck_fabf = 添加仪表板
|
||||
# Column title for adding external notifications column
|
||||
@@ -61,6 +69,8 @@ Broadcast_Local_7e50 = 仅广播至本地中继
|
||||
Cancel_ed3b = 取消
|
||||
# Hover text for editable zap amount
|
||||
Click_to_edit_0414 = 点击以编辑
|
||||
# Display name for note composition
|
||||
Compose_Note_ad11 = 撰写笔记
|
||||
# Column title for note composition
|
||||
Compose_Note_c094 = 撰写笔记
|
||||
# Button label to confirm an action
|
||||
@@ -73,6 +83,8 @@ Connecting_6b7e = 正在连接...
|
||||
Contact_List_f85a = 联系人列表
|
||||
# Column title for contact lists
|
||||
Contacts_7533 = 联系人
|
||||
# Timeline kind label for contact lists
|
||||
Contacts_8b98 = 联系人
|
||||
# Column title for last notes per contact
|
||||
Contacts__last_notes_3f84 = 联系人(最新笔记)
|
||||
# Button label to copy logs
|
||||
@@ -107,8 +119,12 @@ Create_Account_6994 = 创建帐户
|
||||
Create_Deck_16b7 = 创建仪表板
|
||||
# Column title for custom timelines
|
||||
Custom_a69e = 自定义
|
||||
# Display name for custom timelines
|
||||
Custom_cb4f = 自定义
|
||||
# Column title for zap amount customization
|
||||
Customize_Zap_Amount_cfc4 = 自定义打闪金额
|
||||
# Display name for zap customization
|
||||
Customize_Zap_Amount_ed29 = 自定义打闪金额
|
||||
# Column title for support page
|
||||
Damus_Support_27c0 = 达摩支持
|
||||
# Label for deck name input field
|
||||
@@ -131,10 +147,14 @@ Display_name_f9d9 = 显示名称
|
||||
domain___will_be_used_for_identification_b67e = "{ $domain }" 将用于身份识别
|
||||
# Column title for editing deck
|
||||
Edit_Deck_4018 = 编辑仪表板
|
||||
# Display name for editing deck
|
||||
Edit_Deck_c9ba = 编辑仪表板
|
||||
# Button label to edit a deck
|
||||
Edit_Deck_fd93 = 编辑仪表板
|
||||
# Button label to edit user profile
|
||||
Edit_Profile_49e6 = 编辑个人档案
|
||||
# Display name for profile editing
|
||||
Edit_Profile_6699 = 编辑个人档案
|
||||
# Column title for profile editing
|
||||
Edit_Profile_8ad4 = 编辑个人档案
|
||||
# Placeholder for hashtag input field
|
||||
@@ -149,8 +169,14 @@ Enter_your_key_0fca = 请输入你的密钥
|
||||
Enter_your_public_key__npub___nostr_address__e_g___address____or_private_key__nsec___You_must_enter_your_private_key_to_be_able_to_post__reply__etc_48e9 = 请输入你的公钥(npub)、nostr 地址(如 { $address })、或私钥(nsec)。 你必须输入你的私钥才能发帖、回复等等。
|
||||
# Label for find user button
|
||||
Find_User_bd12 = 查找用户
|
||||
# Timeline kind label for hashtag feeds
|
||||
Hashtag_a0ab = 标签
|
||||
# Display name for hashtag feeds
|
||||
Hashtags_617e = 标签
|
||||
# Title for hashtags column
|
||||
Hashtags_f8e0 = 标签
|
||||
# Display name for home feed
|
||||
Home_3efc = 主页
|
||||
# Title for Home column
|
||||
Home_8c19 = 主页
|
||||
# Label for deck icon selection
|
||||
@@ -177,6 +203,10 @@ k_5K_f7e6 = 5千
|
||||
Keep_track_of_your_notes___replies_a334 = 随时查看你的笔记和回复
|
||||
# Title for last note per user column
|
||||
Last_Note_per_User_17ad = 每个用户的最新笔记
|
||||
# Timeline kind label for last notes per pubkey
|
||||
Last_Notes_aefe = 最新笔记
|
||||
# Display name for last notes per contact
|
||||
Last_Per_Pubkey__Contact_33ce = 每个公钥(联系人)的最新笔记
|
||||
# Bitcoin Lightning network address field label
|
||||
Lightning_network_address__lud16_ea51 = 闪电网络地址(lud16)
|
||||
# Login page title
|
||||
@@ -209,6 +239,10 @@ Notes_60d2 = 笔记
|
||||
Notes___Replies_1ec2 = 笔记和回复
|
||||
# Label for notes and replies filter
|
||||
Notes___Replies_6e3b = 笔记和回复
|
||||
# Timeline kind label for notifications
|
||||
Notifications_6228 = 通知
|
||||
# Display name for notifications
|
||||
Notifications_8029 = 通知
|
||||
# Column title for notifications
|
||||
Notifications_d673 = 通知
|
||||
# Title for notifications column
|
||||
@@ -231,20 +265,30 @@ Please_select_an_icon_655b = 请选择一个图标。
|
||||
Post_now_8a49 = 立即发布
|
||||
# Instruction for copying logs
|
||||
Press_the_button_below_to_copy_your_most_recent_logs_to_your_system_s_clipboard__Then_paste_it_into_your_email_322e = 请按下面的按钮将你最近的日志复制到系统剪贴板,然后将其粘贴到你的电子邮件。
|
||||
# Display name for user profiles
|
||||
Profile_2478 = 个人资料
|
||||
# Timeline kind label for user profiles
|
||||
Profile_9027 = 个人资料
|
||||
# Profile picture URL field label
|
||||
Profile_picture_81ff = 头像图片
|
||||
# Column title for quote composition
|
||||
Quote_475c = 引用
|
||||
# Display name for quote composition
|
||||
Quote_a38e = 引用
|
||||
# Error message when quote note cannot be found
|
||||
Quote_of_unknown_note_e4f0 = 引用未知笔记
|
||||
# Label for read-only profile mode
|
||||
Read_only_82ff = 只读
|
||||
# Display name for relay management
|
||||
Relays_7335 = 中继器
|
||||
# Column title for relay management
|
||||
Relays_9d89 = 中继器
|
||||
# Label for relay list section
|
||||
Relays_ad5e = 中继器
|
||||
# Column title for reply composition
|
||||
Reply_3bf1 = 回复
|
||||
# Display name for reply composition
|
||||
Reply_b40f = 回复
|
||||
# Hover text for reply button
|
||||
Reply_to_this_note_f5de = 回复此笔记
|
||||
# Error message when reply note cannot be found
|
||||
@@ -275,6 +319,12 @@ sats_e5ec = 聪
|
||||
Save_6f7c = 保存
|
||||
# Button label to save profile changes
|
||||
Save_changes_00db = 保存变更
|
||||
# Display name for search results
|
||||
Search_0aa0 = 搜索
|
||||
# Display name for search page
|
||||
Search_4503 = 搜索
|
||||
# Timeline kind label for search results
|
||||
Search_a0b8 = 搜索
|
||||
# Column title for search page
|
||||
Search_c573 = 搜索
|
||||
# Placeholder for search notes input field
|
||||
@@ -317,6 +367,8 @@ Step_2_d08d = 第二步
|
||||
Subscribe_to_someone_else_s_notes_d1e9 = 订阅他人的笔记
|
||||
# Column title for subscribing to individual user
|
||||
Subscribe_to_someone_s_notes_b3c8 = 订阅某人的笔记
|
||||
# Display name for support page
|
||||
Support_a4b4 = 获取帮助
|
||||
# Hover text for dark mode toggle button
|
||||
Switch_to_dark_mode_4dec = 切换到暗色模式
|
||||
# Hover text for light mode toggle button
|
||||
@@ -327,8 +379,16 @@ Tap_to_Load_4b05 = 点击加载
|
||||
The_Dave_Nostr_AI_assistant_trial_has_ended_____Thanks_for_testing__Zap-enabled_Dave_coming_soon_c6c7 = Dave Nostr AI 助手试用期已经结束 :(。感谢测试!可打闪付款的 Dave 即将来临!
|
||||
# Column title for note thread view
|
||||
Thread_0f20 = 帖子
|
||||
# Display name for thread view
|
||||
Thread_9957 = 帖子
|
||||
# Link text for thread references
|
||||
thread_ad1f = 帖子
|
||||
# Generic timeline kind label
|
||||
Timeline_b0fc = 时间线
|
||||
# Timeline kind label for universe feed
|
||||
Universe_0a3e = 宇宙
|
||||
# Display name for universe feed
|
||||
Universe_d47e = 宇宙
|
||||
# Title for universe column
|
||||
Universe_e01e = 宇宙
|
||||
# Column title for universe feed
|
||||
@@ -341,6 +401,8 @@ username___at___domain___will_be_used_for_identification_a4fd = "{ $username }"
|
||||
Username_daa7 = 用户名
|
||||
# Column title for wallet management
|
||||
Wallet_5e50 = 钱包
|
||||
# Display name for wallet management
|
||||
Wallet_cdca = 钱包
|
||||
# Hint for deck name input field
|
||||
We_recommend_short_names_083e = 我们推荐使用简短的名称
|
||||
# Profile website field label
|
||||
|
||||
@@ -7,6 +7,8 @@
|
||||
|
||||
# Profile about/bio field label
|
||||
About_00c0 = 關於
|
||||
# Display name for account management
|
||||
Accounts_e233 = 帳戶
|
||||
# Column title for account management
|
||||
Accounts_f018 = 帳戶
|
||||
# Button label to add a relay
|
||||
@@ -21,10 +23,16 @@ Add_a_wallet_to_continue_d170 = 添加錢包以繼續
|
||||
Add_account_1cfc = 新增帳戶
|
||||
# Column title for adding new account
|
||||
Add_Account_d06c = 新增帳戶
|
||||
# Display name for adding account
|
||||
Add_Account_d715 = 新增帳戶
|
||||
# Column title for adding algorithm column
|
||||
Add_Algo_Column_0d75 = 添加算法列
|
||||
# Display name for adding column
|
||||
Add_Column_c6ff = 添加列
|
||||
# Column title for adding new column
|
||||
Add_Column_c764 = 添加列
|
||||
# Display name for adding deck
|
||||
Add_Deck_6e5f = 添加儀表板
|
||||
# Column title for adding new deck
|
||||
Add_Deck_fabf = 添加儀表板
|
||||
# Column title for adding external notifications column
|
||||
@@ -61,6 +69,8 @@ Broadcast_Local_7e50 = 僅廣播至本地中繼
|
||||
Cancel_ed3b = 取消
|
||||
# Hover text for editable zap amount
|
||||
Click_to_edit_0414 = 點擊編輯
|
||||
# Display name for note composition
|
||||
Compose_Note_ad11 = 撰寫筆記
|
||||
# Column title for note composition
|
||||
Compose_Note_c094 = 撰寫筆記
|
||||
# Button label to confirm an action
|
||||
@@ -73,6 +83,8 @@ Connecting_6b7e = 正在連接 ...
|
||||
Contact_List_f85a = 聯絡人列表
|
||||
# Column title for contact lists
|
||||
Contacts_7533 = 聯絡人
|
||||
# Timeline kind label for contact lists
|
||||
Contacts_8b98 = 聯絡人
|
||||
# Column title for last notes per contact
|
||||
Contacts__last_notes_3f84 = 聯絡人(最新筆記)
|
||||
# Button label to copy logs
|
||||
@@ -107,8 +119,12 @@ Create_Account_6994 = 創建帳戶
|
||||
Create_Deck_16b7 = 創建儀表板
|
||||
# Column title for custom timelines
|
||||
Custom_a69e = 自訂
|
||||
# Display name for custom timelines
|
||||
Custom_cb4f = 自訂
|
||||
# Column title for zap amount customization
|
||||
Customize_Zap_Amount_cfc4 = 自訂打閃金額
|
||||
# Display name for zap customization
|
||||
Customize_Zap_Amount_ed29 = 自訂打閃金額
|
||||
# Column title for support page
|
||||
Damus_Support_27c0 = 達摩支持
|
||||
# Label for deck name input field
|
||||
@@ -131,10 +147,14 @@ Display_name_f9d9 = 顯示名稱
|
||||
domain___will_be_used_for_identification_b67e = "{ $domain }" 將用於身份識別
|
||||
# Column title for editing deck
|
||||
Edit_Deck_4018 = 編輯儀表板
|
||||
# Display name for editing deck
|
||||
Edit_Deck_c9ba = 編輯儀表板
|
||||
# Button label to edit a deck
|
||||
Edit_Deck_fd93 = 編輯儀表板
|
||||
# Button label to edit user profile
|
||||
Edit_Profile_49e6 = 編輯個人檔案
|
||||
# Display name for profile editing
|
||||
Edit_Profile_6699 = 編輯個人檔案
|
||||
# Column title for profile editing
|
||||
Edit_Profile_8ad4 = 編輯個人檔案
|
||||
# Placeholder for hashtag input field
|
||||
@@ -149,8 +169,14 @@ Enter_your_key_0fca = 請輸入你的密鑰
|
||||
Enter_your_public_key__npub___nostr_address__e_g___address____or_private_key__nsec___You_must_enter_your_private_key_to_be_able_to_post__reply__etc_48e9 = 請輸入你的公鑰(npub)、nostr 地址(如 { $address })、或私鑰(nsec)。你必須輸入你的私鑰才能發貼、回覆等等。
|
||||
# Label for find user button
|
||||
Find_User_bd12 = 查找用戶
|
||||
# Timeline kind label for hashtag feeds
|
||||
Hashtag_a0ab = 標籤
|
||||
# Display name for hashtag feeds
|
||||
Hashtags_617e = 標籤
|
||||
# Title for hashtags column
|
||||
Hashtags_f8e0 = 標籤
|
||||
# Display name for home feed
|
||||
Home_3efc = 主頁
|
||||
# Title for Home column
|
||||
Home_8c19 = 主頁
|
||||
# Label for deck icon selection
|
||||
@@ -177,6 +203,10 @@ k_5K_f7e6 = 5千
|
||||
Keep_track_of_your_notes___replies_a334 = 隨時查看你的筆記和回覆
|
||||
# Title for last note per user column
|
||||
Last_Note_per_User_17ad = 每個用戶的最新筆記
|
||||
# Timeline kind label for last notes per pubkey
|
||||
Last_Notes_aefe = 最新筆記
|
||||
# Display name for last notes per contact
|
||||
Last_Per_Pubkey__Contact_33ce = 每個公鑰(聯繫人)的最新筆記
|
||||
# Bitcoin Lightning network address field label
|
||||
Lightning_network_address__lud16_ea51 = 閃電網絡地址(lud16)
|
||||
# Login page title
|
||||
@@ -209,6 +239,10 @@ Notes_60d2 = 筆記
|
||||
Notes___Replies_1ec2 = 筆記和回覆
|
||||
# Label for notes and replies filter
|
||||
Notes___Replies_6e3b = 筆記和回覆
|
||||
# Timeline kind label for notifications
|
||||
Notifications_6228 = 通知
|
||||
# Display name for notifications
|
||||
Notifications_8029 = 通知
|
||||
# Column title for notifications
|
||||
Notifications_d673 = 通知
|
||||
# Title for notifications column
|
||||
@@ -231,20 +265,30 @@ Please_select_an_icon_655b = 請選擇一個圖標。
|
||||
Post_now_8a49 = 立即發布
|
||||
# Instruction for copying logs
|
||||
Press_the_button_below_to_copy_your_most_recent_logs_to_your_system_s_clipboard__Then_paste_it_into_your_email_322e = 請按下面的按鈕將你最近的日誌複製到剪貼板,然後將其粘貼到你的電子郵件。
|
||||
# Display name for user profiles
|
||||
Profile_2478 = 個人檔案
|
||||
# Timeline kind label for user profiles
|
||||
Profile_9027 = 個人檔案
|
||||
# Profile picture URL field label
|
||||
Profile_picture_81ff = 頭像圖片
|
||||
# Column title for quote composition
|
||||
Quote_475c = 引用
|
||||
# Display name for quote composition
|
||||
Quote_a38e = 引用
|
||||
# Error message when quote note cannot be found
|
||||
Quote_of_unknown_note_e4f0 = 引用未知筆記
|
||||
# Label for read-only profile mode
|
||||
Read_only_82ff = 只讀
|
||||
# Display name for relay management
|
||||
Relays_7335 = 中繼器
|
||||
# Column title for relay management
|
||||
Relays_9d89 = 中繼器
|
||||
# Label for relay list section
|
||||
Relays_ad5e = 中繼器
|
||||
# Column title for reply composition
|
||||
Reply_3bf1 = 回覆
|
||||
# Display name for reply composition
|
||||
Reply_b40f = 回覆
|
||||
# Hover text for reply button
|
||||
Reply_to_this_note_f5de = 回覆此筆記
|
||||
# Error message when reply note cannot be found
|
||||
@@ -275,6 +319,12 @@ sats_e5ec = 聰
|
||||
Save_6f7c = 保存
|
||||
# Button label to save profile changes
|
||||
Save_changes_00db = 保存變更
|
||||
# Display name for search results
|
||||
Search_0aa0 = 搜索
|
||||
# Display name for search page
|
||||
Search_4503 = 搜索
|
||||
# Timeline kind label for search results
|
||||
Search_a0b8 = 搜索
|
||||
# Column title for search page
|
||||
Search_c573 = 搜索
|
||||
# Placeholder for search notes input field
|
||||
@@ -317,6 +367,8 @@ Step_2_d08d = 第二步
|
||||
Subscribe_to_someone_else_s_notes_d1e9 = 訂閱他人的筆記
|
||||
# Column title for subscribing to individual user
|
||||
Subscribe_to_someone_s_notes_b3c8 = 訂閱某人的筆記
|
||||
# Display name for support page
|
||||
Support_a4b4 = 獲取幫助
|
||||
# Hover text for dark mode toggle button
|
||||
Switch_to_dark_mode_4dec = 切換到暗色模式
|
||||
# Hover text for light mode toggle button
|
||||
@@ -327,8 +379,16 @@ Tap_to_Load_4b05 = 點擊加載
|
||||
The_Dave_Nostr_AI_assistant_trial_has_ended_____Thanks_for_testing__Zap-enabled_Dave_coming_soon_c6c7 = Dave Nostr AI 助手試用期已經結束 :(。感謝測試!可打閃付款的 Dave 即將來臨!
|
||||
# Column title for note thread view
|
||||
Thread_0f20 = 串文
|
||||
# Display name for thread view
|
||||
Thread_9957 = 串文
|
||||
# Link text for thread references
|
||||
thread_ad1f = 串文
|
||||
# Generic timeline kind label
|
||||
Timeline_b0fc = 時間線
|
||||
# Timeline kind label for universe feed
|
||||
Universe_0a3e = 宇宙
|
||||
# Display name for universe feed
|
||||
Universe_d47e = 宇宙
|
||||
# Title for universe column
|
||||
Universe_e01e = 宇宙
|
||||
# Column title for universe feed
|
||||
@@ -341,6 +401,8 @@ username___at___domain___will_be_used_for_identification_a4fd = "{ $username }"
|
||||
Username_daa7 = 用戶名
|
||||
# Column title for wallet management
|
||||
Wallet_5e50 = 錢包
|
||||
# Display name for wallet management
|
||||
Wallet_cdca = 錢包
|
||||
# Hint for deck name input field
|
||||
We_recommend_short_names_083e = 我們推薦使用簡短的名稱
|
||||
# Profile website field label
|
||||
|
||||
@@ -8,13 +8,10 @@ use unic_langid::{langid, LanguageIdentifier};
|
||||
const EN_XA: LanguageIdentifier = langid!("en-XA");
|
||||
const EN_US: LanguageIdentifier = langid!("en-US");
|
||||
const DE: LanguageIdentifier = langid!("de");
|
||||
const ES_419: LanguageIdentifier = langid!("es-419");
|
||||
const ES_ES: LanguageIdentifier = langid!("es-ES");
|
||||
const FR: LanguageIdentifier = langid!("FR");
|
||||
const TH: LanguageIdentifier = langid!("TH");
|
||||
const ZH_CN: LanguageIdentifier = langid!("ZH_CN");
|
||||
const ZH_TW: LanguageIdentifier = langid!("ZH_TW");
|
||||
const NUM_FTLS: usize = 9;
|
||||
const NUM_FTLS: usize = 6;
|
||||
|
||||
struct StaticBundle {
|
||||
identifier: LanguageIdentifier,
|
||||
@@ -34,22 +31,10 @@ const FTLS: [StaticBundle; NUM_FTLS] = [
|
||||
identifier: DE,
|
||||
ftl: include_str!("../../../../assets/translations/de/main.ftl"),
|
||||
},
|
||||
StaticBundle {
|
||||
identifier: ES_419,
|
||||
ftl: include_str!("../../../../assets/translations/es-419/main.ftl"),
|
||||
},
|
||||
StaticBundle {
|
||||
identifier: ES_ES,
|
||||
ftl: include_str!("../../../../assets/translations/es-ES/main.ftl"),
|
||||
},
|
||||
StaticBundle {
|
||||
identifier: FR,
|
||||
ftl: include_str!("../../../../assets/translations/fr/main.ftl"),
|
||||
},
|
||||
StaticBundle {
|
||||
identifier: TH,
|
||||
ftl: include_str!("../../../../assets/translations/th/main.ftl"),
|
||||
},
|
||||
StaticBundle {
|
||||
identifier: ZH_CN,
|
||||
ftl: include_str!("../../../../assets/translations/zh-CN/main.ftl"),
|
||||
@@ -92,10 +77,7 @@ impl Default for Localization {
|
||||
EN_US.clone(),
|
||||
EN_XA.clone(),
|
||||
DE.clone(),
|
||||
ES_419.clone(),
|
||||
ES_ES.clone(),
|
||||
FR.clone(),
|
||||
TH.clone(),
|
||||
ZH_CN.clone(),
|
||||
ZH_TW.clone(),
|
||||
];
|
||||
|
||||
12
crowdin.yml
Normal file
12
crowdin.yml
Normal file
@@ -0,0 +1,12 @@
|
||||
"project_id_env": "CROWDIN_PROJECT_ID"
|
||||
"api_token_env": "CROWDIN_PERSONAL_TOKEN"
|
||||
"base_path": "."
|
||||
|
||||
"preserve_hierarchy": true
|
||||
|
||||
"files": [
|
||||
{
|
||||
"source": "assets/translations/en-US/main.ftl",
|
||||
"translation": "assets/translations/%locale%/%original_file_name%"
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user