Skip to content

Commit

Permalink
fix: remove indirect placeholder
Browse files Browse the repository at this point in the history
Transifex was stripping them down and broke pl_PL
  • Loading branch information
lidel committed Sep 8, 2018
1 parent 5a070e1 commit 84c55db
Show file tree
Hide file tree
Showing 13 changed files with 96 additions and 137 deletions.
14 changes: 7 additions & 7 deletions add-on/_locales/de/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -148,11 +148,11 @@
"description": "(notify_uploadTrackingProtectionErrorMsg)"
},
"notify_inlineMsg": {
"message": "$MSG$",
"message": "$1",
"description": "A generic placeholder for notification message, leave as-is (notify_inlineMsg)"
},
"notify_inlineErrorMsg": {
"message": "$ERROR$ (Strg + Umschalt + j für mehr Informationen)",
"message": "$1 (press ctrl+shift+j for more details)",
"description": "A generic placeholder for error notification (notify_inlineErrorMsg)"
},
"notify_startIpfsNodeErrorTitle": {
Expand Down Expand Up @@ -356,7 +356,7 @@
"description": "Extension description in the Manifest file (manifest_extensionDescription)"
},
"quickUpload_subhead_peers": {
"message": "Verbunden mit $PEERCOUNT$ Peers",
"message": "Connected to $1 peers",
"description": "Partial info stats beneath the header on the share files page (quickUpload_subhead_peers)"
},
"quickUpload_pick_file_button": {
Expand Down Expand Up @@ -404,11 +404,11 @@
"description": "Message displayed when no permissions have been granted (page_proxyAcl_no_perms)"
},
"page_proxyAcl_confirm_revoke": {
"message": "Berechtigung $PERMISSION$ für $SCOPE$ widerrufen?",
"message": "Revoke permission $1 for $2?",
"description": "Confirmation message for revoking a permission for a scope (page_proxyAcl_confirm_revoke)"
},
"page_proxyAcl_confirm_revoke_all": {
"message": "Alle Berechtigungen für $SCOPE$ widerrufen?",
"message": "Revoke all permissions for $1?",
"description": "Confirmation message for revoking all permissions for an scope (page_proxyAcl_confirm_revoke_all)"
},
"page_proxyAcl_toggle_to_allow_button_title": {
Expand All @@ -428,11 +428,11 @@
"description": "Button value for deny"
},
"page_proxyAcl_revoke_button_title": {
"message": "$PERMISSION$ widerrufen",
"message": "Revoke $1",
"description": "Button title for revoking a permission (page_proxyAcl_revoke_button_title)"
},
"page_proxyAccessDialog_title": {
"message": "$SCOPE$ den Zugang zu ipfs.$PERMISSION$ erlauben?",
"message": "Allow $1 to access ipfs.$2?",
"description": "Main title of the access permission dialog (page_proxyAccessDialog_title)"
},
"page_proxyAccessDialog_wildcardCheckbox_label": {
Expand Down
65 changes: 12 additions & 53 deletions add-on/_locales/en/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -148,21 +148,11 @@
"description": "(notify_uploadTrackingProtectionErrorMsg)"
},
"notify_inlineMsg": {
"message": "$MSG$",
"placeholders": {
"msg": {
"content": "$1"
}
},
"message": "$1",
"description": "A generic placeholder for notification message, leave as-is (notify_inlineMsg)"
},
"notify_inlineErrorMsg": {
"message": "$ERROR$ (press ctrl+shift+j for more details)",
"placeholders": {
"error": {
"content": "$1"
}
},
"message": "$1 (press ctrl+shift+j for more details)",
"description": "A generic placeholder for error notification (notify_inlineErrorMsg)"
},
"notify_startIpfsNodeErrorTitle": {
Expand Down Expand Up @@ -366,13 +356,8 @@
"description": "Extension description in the Manifest file (manifest_extensionDescription)"
},
"quickUpload_subhead_peers": {
"message": "Connected to $PEERCOUNT$ peers",
"description": "Partial info stats beneath the header on the share files page (quickUpload_subhead_peers)",
"placeholders": {
"peerCount": {
"content": "$1"
}
}
"message": "Connected to $1 peers",
"description": "Partial info stats beneath the header on the share files page (quickUpload_subhead_peers)"
},
"quickUpload_pick_file_button": {
"message": "Pick a file",
Expand Down Expand Up @@ -419,25 +404,12 @@
"description": "Message displayed when no permissions have been granted (page_proxyAcl_no_perms)"
},
"page_proxyAcl_confirm_revoke": {
"message": "Revoke permission $PERMISSION$ for $SCOPE$?",
"description": "Confirmation message for revoking a permission for a scope (page_proxyAcl_confirm_revoke)",
"placeholders": {
"permission": {
"content": "$1"
},
"scope": {
"content": "$2"
}
}
"message": "Revoke permission $1 for $2?",
"description": "Confirmation message for revoking a permission for a scope (page_proxyAcl_confirm_revoke)"
},
"page_proxyAcl_confirm_revoke_all": {
"message": "Revoke all permissions for $SCOPE$?",
"description": "Confirmation message for revoking all permissions for an scope (page_proxyAcl_confirm_revoke_all)",
"placeholders": {
"scope": {
"content": "$1"
}
}
"message": "Revoke all permissions for $1?",
"description": "Confirmation message for revoking all permissions for an scope (page_proxyAcl_confirm_revoke_all)"
},
"page_proxyAcl_toggle_to_allow_button_title": {
"message": "Click to allow",
Expand All @@ -456,25 +428,12 @@
"description": "Button value for deny"
},
"page_proxyAcl_revoke_button_title": {
"message": "Revoke $PERMISSION$",
"description": "Button title for revoking a permission (page_proxyAcl_revoke_button_title)",
"placeholders": {
"permission": {
"content": "$1"
}
}
"message": "Revoke $1",
"description": "Button title for revoking a permission (page_proxyAcl_revoke_button_title)"
},
"page_proxyAccessDialog_title": {
"message": "Allow $SCOPE$ to access ipfs.$PERMISSION$?",
"description": "Main title of the access permission dialog (page_proxyAccessDialog_title)",
"placeholders": {
"scope": {
"content": "$1"
},
"permission": {
"content": "$2"
}
}
"message": "Allow $1 to access ipfs.$2?",
"description": "Main title of the access permission dialog (page_proxyAccessDialog_title)"
},
"page_proxyAccessDialog_wildcardCheckbox_label": {
"message": "Apply this decision to all permissions in this scope",
Expand Down
14 changes: 7 additions & 7 deletions add-on/_locales/es/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -148,11 +148,11 @@
"description": "(notify_uploadTrackingProtectionErrorMsg)"
},
"notify_inlineMsg": {
"message": "$MSG$",
"message": "$1",
"description": "A generic placeholder for notification message, leave as-is (notify_inlineMsg)"
},
"notify_inlineErrorMsg": {
"message": "$ERROR$ (presionar ctrl+shift+j para más detalles)",
"message": "$1 (press ctrl+shift+j for more details)",
"description": "A generic placeholder for error notification (notify_inlineErrorMsg)"
},
"notify_startIpfsNodeErrorTitle": {
Expand Down Expand Up @@ -356,7 +356,7 @@
"description": "Extension description in the Manifest file (manifest_extensionDescription)"
},
"quickUpload_subhead_peers": {
"message": "Conectado $PEERCOUNT$ a los puertos",
"message": "Connected to $1 peers",
"description": "Partial info stats beneath the header on the share files page (quickUpload_subhead_peers)"
},
"quickUpload_pick_file_button": {
Expand Down Expand Up @@ -404,11 +404,11 @@
"description": "Message displayed when no permissions have been granted (page_proxyAcl_no_perms)"
},
"page_proxyAcl_confirm_revoke": {
"message": "Revoke permission $PERMISSION$ for $SCOPE$?",
"message": "Revoke permission $1 for $2?",
"description": "Confirmation message for revoking a permission for a scope (page_proxyAcl_confirm_revoke)"
},
"page_proxyAcl_confirm_revoke_all": {
"message": "Revoke all permissions for $SCOPE$?",
"message": "Revoke all permissions for $1?",
"description": "Confirmation message for revoking all permissions for an scope (page_proxyAcl_confirm_revoke_all)"
},
"page_proxyAcl_toggle_to_allow_button_title": {
Expand All @@ -428,11 +428,11 @@
"description": "Button value for deny"
},
"page_proxyAcl_revoke_button_title": {
"message": "Revoke $PERMISSION$",
"message": "Revoke $1",
"description": "Button title for revoking a permission (page_proxyAcl_revoke_button_title)"
},
"page_proxyAccessDialog_title": {
"message": "Allow $SCOPE$ to access ipfs.$PERMISSION$?",
"message": "Allow $1 to access ipfs.$2?",
"description": "Main title of the access permission dialog (page_proxyAccessDialog_title)"
},
"page_proxyAccessDialog_wildcardCheckbox_label": {
Expand Down
14 changes: 7 additions & 7 deletions add-on/_locales/fr/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -148,11 +148,11 @@
"description": "(notify_uploadTrackingProtectionErrorMsg)"
},
"notify_inlineMsg": {
"message": "$MSG$",
"message": "$1",
"description": "A generic placeholder for notification message, leave as-is (notify_inlineMsg)"
},
"notify_inlineErrorMsg": {
"message": "$ERROR$ ( appuyer sur ctrl+shift + j pour plus de détails)",
"message": "$1 (press ctrl+shift+j for more details)",
"description": "A generic placeholder for error notification (notify_inlineErrorMsg)"
},
"notify_startIpfsNodeErrorTitle": {
Expand Down Expand Up @@ -356,7 +356,7 @@
"description": "Extension description in the Manifest file (manifest_extensionDescription)"
},
"quickUpload_subhead_peers": {
"message": "Connecté à $PEERCOUNT$ paires",
"message": "Connected to $1 peers",
"description": "Partial info stats beneath the header on the share files page (quickUpload_subhead_peers)"
},
"quickUpload_pick_file_button": {
Expand Down Expand Up @@ -404,11 +404,11 @@
"description": "Message displayed when no permissions have been granted (page_proxyAcl_no_perms)"
},
"page_proxyAcl_confirm_revoke": {
"message": "Révoquer la permission $PERMISSION$ pour $SCOPE$?",
"message": "Revoke permission $1 for $2?",
"description": "Confirmation message for revoking a permission for a scope (page_proxyAcl_confirm_revoke)"
},
"page_proxyAcl_confirm_revoke_all": {
"message": "Révoquer toutes les permissions pour $SCOPE$?",
"message": "Revoke all permissions for $1?",
"description": "Confirmation message for revoking all permissions for an scope (page_proxyAcl_confirm_revoke_all)"
},
"page_proxyAcl_toggle_to_allow_button_title": {
Expand All @@ -428,11 +428,11 @@
"description": "Button value for deny"
},
"page_proxyAcl_revoke_button_title": {
"message": "Révoquer $PERMISSION$",
"message": "Revoke $1",
"description": "Button title for revoking a permission (page_proxyAcl_revoke_button_title)"
},
"page_proxyAccessDialog_title": {
"message": "Autorisé $SCOPE$ à accéder ipfs.$PERMISSION$ ?",
"message": "Allow $1 to access ipfs.$2?",
"description": "Main title of the access permission dialog (page_proxyAccessDialog_title)"
},
"page_proxyAccessDialog_wildcardCheckbox_label": {
Expand Down
14 changes: 7 additions & 7 deletions add-on/_locales/hu/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -148,11 +148,11 @@
"description": "(notify_uploadTrackingProtectionErrorMsg)"
},
"notify_inlineMsg": {
"message": "$MSG$",
"message": "$1",
"description": "A generic placeholder for notification message, leave as-is (notify_inlineMsg)"
},
"notify_inlineErrorMsg": {
"message": "$ERROR$ (press ctrl+shift+j for more details)",
"message": "$1 (press ctrl+shift+j for more details)",
"description": "A generic placeholder for error notification (notify_inlineErrorMsg)"
},
"notify_startIpfsNodeErrorTitle": {
Expand Down Expand Up @@ -356,7 +356,7 @@
"description": "Extension description in the Manifest file (manifest_extensionDescription)"
},
"quickUpload_subhead_peers": {
"message": "Connected to $PEERCOUNT$ peers",
"message": "Connected to $1 peers",
"description": "Partial info stats beneath the header on the share files page (quickUpload_subhead_peers)"
},
"quickUpload_pick_file_button": {
Expand Down Expand Up @@ -404,11 +404,11 @@
"description": "Message displayed when no permissions have been granted (page_proxyAcl_no_perms)"
},
"page_proxyAcl_confirm_revoke": {
"message": "Revoke permission $PERMISSION$ for $SCOPE$?",
"message": "Revoke permission $1 for $2?",
"description": "Confirmation message for revoking a permission for a scope (page_proxyAcl_confirm_revoke)"
},
"page_proxyAcl_confirm_revoke_all": {
"message": "Revoke all permissions for $SCOPE$?",
"message": "Revoke all permissions for $1?",
"description": "Confirmation message for revoking all permissions for an scope (page_proxyAcl_confirm_revoke_all)"
},
"page_proxyAcl_toggle_to_allow_button_title": {
Expand All @@ -428,11 +428,11 @@
"description": "Button value for deny"
},
"page_proxyAcl_revoke_button_title": {
"message": "$PERMISSION$ visszavonása",
"message": "Revoke $1",
"description": "Button title for revoking a permission (page_proxyAcl_revoke_button_title)"
},
"page_proxyAccessDialog_title": {
"message": "Allow $SCOPE$ to access ipfs.$PERMISSION$?",
"message": "Allow $1 to access ipfs.$2?",
"description": "Main title of the access permission dialog (page_proxyAccessDialog_title)"
},
"page_proxyAccessDialog_wildcardCheckbox_label": {
Expand Down
14 changes: 7 additions & 7 deletions add-on/_locales/id/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -148,11 +148,11 @@
"description": "(notify_uploadTrackingProtectionErrorMsg)"
},
"notify_inlineMsg": {
"message": "$MSG$",
"message": "$1",
"description": "A generic placeholder for notification message, leave as-is (notify_inlineMsg)"
},
"notify_inlineErrorMsg": {
"message": "$ERROR$ (tekan ctrl+shift+j untuk rincian lebih lanjut)",
"message": "$1 (press ctrl+shift+j for more details)",
"description": "A generic placeholder for error notification (notify_inlineErrorMsg)"
},
"notify_startIpfsNodeErrorTitle": {
Expand Down Expand Up @@ -356,7 +356,7 @@
"description": "Extension description in the Manifest file (manifest_extensionDescription)"
},
"quickUpload_subhead_peers": {
"message": "Terhubung ke rekan-rekan $PEERCOUNT$",
"message": "Connected to $1 peers",
"description": "Partial info stats beneath the header on the share files page (quickUpload_subhead_peers)"
},
"quickUpload_pick_file_button": {
Expand Down Expand Up @@ -404,11 +404,11 @@
"description": "Message displayed when no permissions have been granted (page_proxyAcl_no_perms)"
},
"page_proxyAcl_confirm_revoke": {
"message": "Revoke permission $PERMISSION$ for $SCOPE$?",
"message": "Revoke permission $1 for $2?",
"description": "Confirmation message for revoking a permission for a scope (page_proxyAcl_confirm_revoke)"
},
"page_proxyAcl_confirm_revoke_all": {
"message": "Revoke all permissions for $SCOPE$?",
"message": "Revoke all permissions for $1?",
"description": "Confirmation message for revoking all permissions for an scope (page_proxyAcl_confirm_revoke_all)"
},
"page_proxyAcl_toggle_to_allow_button_title": {
Expand All @@ -428,11 +428,11 @@
"description": "Button value for deny"
},
"page_proxyAcl_revoke_button_title": {
"message": "Revoke $PERMISSION$",
"message": "Revoke $1",
"description": "Button title for revoking a permission (page_proxyAcl_revoke_button_title)"
},
"page_proxyAccessDialog_title": {
"message": "Allow $SCOPE$ to access ipfs.$PERMISSION$?",
"message": "Allow $1 to access ipfs.$2?",
"description": "Main title of the access permission dialog (page_proxyAccessDialog_title)"
},
"page_proxyAccessDialog_wildcardCheckbox_label": {
Expand Down
Loading

0 comments on commit 84c55db

Please sign in to comment.