Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: Constant instead of a static word #222

Closed
wants to merge 7 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/site/language/de-DE/de-DE.com_osdownloads.ini
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ COM_OSDOWNLOADS_DOCUMENTATION = "Dokumentation"
COM_OSDOWNLOADS_DOWNLOAD = "Download"
COM_OSDOWNLOADS_DOWNLOAD_TERM = "Ich stimme den <a class='agreement-article' href='' target='_blank'>Nutzungsbedingungen</a> zu."
COM_OSDOWNLOADS_DOWNLOADED = "Downloaded"
COM_OSDOWNLOADS_CATEGORY = "Category"

COM_OSDOWNLOADS_ENTER_EMAIL_ADDRESS = "Bitte E-Mailadresse eintragen."

Expand Down
1 change: 1 addition & 0 deletions src/site/language/en-GB/en-GB.com_osdownloads.ini
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ COM_OSDOWNLOADS_DOCUMENTATION = "Documentation"
COM_OSDOWNLOADS_DOWNLOAD = "Download"
COM_OSDOWNLOADS_DOWNLOAD_TERM = "I agree to the <a class='agreement-article' href='' target='_blank'>Terms and Conditions</a>."
COM_OSDOWNLOADS_DOWNLOADED = "Downloaded"
COM_OSDOWNLOADS_CATEGORY = "Category"

COM_OSDOWNLOADS_ENTER_EMAIL_ADDRESS = "Enter your email address"

Expand Down
1 change: 1 addition & 0 deletions src/site/language/es-ES/es-ES.com_osdownloads.ini
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ COM_OSDOWNLOADS_DOCUMENTATION = "Documentación"
COM_OSDOWNLOADS_DOWNLOAD = "Descargar"
COM_OSDOWNLOADS_DOWNLOAD_TERM = " Estoy de acuerdo con el <a class='agreement-article' href='' target='_blank'> en sus Términos y condiciones</a>."
COM_OSDOWNLOADS_DOWNLOADED = "Descargado"
COM_OSDOWNLOADS_CATEGORY = "Categoría"

COM_OSDOWNLOADS_ENTER_EMAIL_ADDRESS = "Ingrese su Email"

Expand Down
1 change: 1 addition & 0 deletions src/site/language/fa-IR/fa-IR.com_osdownloads.ini
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ COM_OSDOWNLOADS_DOCUMENTATION = "مستندات"
COM_OSDOWNLOADS_DOWNLOAD = "دانلود"
COM_OSDOWNLOADS_DOWNLOAD_TERM = "من با <a class='agreement-article' href='' target='_blank'>قوانین و مقررات</a> سایت موافق هستم."
COM_OSDOWNLOADS_DOWNLOADED = "دانلود شده"
COM_OSDOWNLOADS_CATEGORY = "Category"

COM_OSDOWNLOADS_ENTER_EMAIL_ADDRESS = "آدرس ایمیل خود را وارد کنید"

Expand Down
1 change: 1 addition & 0 deletions src/site/language/fr-FR/fr-FR.com_osdownloads.ini
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ COM_OSDOWNLOADS_DOCUMENTATION = "Documentation"
COM_OSDOWNLOADS_DOWNLOAD = "Télécharger"
COM_OSDOWNLOADS_DOWNLOAD_TERM = "Je suis d'accord avec les <a class='agreement-article' href='' target='_blank'>Termes et Conditions</a>."
COM_OSDOWNLOADS_DOWNLOADED = "Téléchargé"
COM_OSDOWNLOADS_CATEGORY = "Catégorie"

COM_OSDOWNLOADS_ENTER_EMAIL_ADDRESS = "Introduisez votre adresse email"

Expand Down
1 change: 1 addition & 0 deletions src/site/language/pt-BR/pt-BR.com_osdownloads.ini
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ COM_OSDOWNLOADS_DOCUMENTATION = "Documentação"
COM_OSDOWNLOADS_DOWNLOAD = "Download"
COM_OSDOWNLOADS_DOWNLOAD_TERM = "Eu concordo com os <a class='agreement-article' href='' target='_blank'>Termos e Condições</a>."
COM_OSDOWNLOADS_DOWNLOADED = "Download efetuado"
COM_OSDOWNLOADS_CATEGORY = "Categoria"

COM_OSDOWNLOADS_ENTER_EMAIL_ADDRESS = "Informe seu endereço de e-mail"

Expand Down
2 changes: 1 addition & 1 deletion src/site/views/item/tmpl/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
if ($this->params->get("show_category", 0) && is_object($this->category)) :
?>
<div class="cate_info">
Category:
<?php echo(JText::_("COM_OSDOWNLOADS_CATEGORY")); ?>:
<a href="<?php echo JRoute::_($container->helperRoute->getFileListRoute($this->category->id)); ?>">
<?php echo $this->category->title; ?>
</a>
Expand Down