HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Options

[FileUpload 1.5.2] Untranslatable strings!

emziemzi
edited July 2012 in Localization

Title: Lost T()

Path: /plugins/FileUpload/class.fileupload.plugin.php


Target: 'Media'

Fix: T('Media')


Target: "Uploaded file type is not allowed."

Fix: T("Uploaded file type is not allowed.")


Target: ("The post data was too big (max {$PostMaxSize})",10,'???');

Fix: (T('The post data was too big (max')." {$PostMaxSize})",10,'???');


Title: Untranslatable lines

Path: /plugins/FileUpload/js/fileupload.php

Target: "File upload failed. Reason: "

Target: 'An unknown error occured.'

Screenshot


Title: T() function is not on the right position!

Path: /plugins/FileUpload/views/fileupload.php

Target: <?php echo T('Define who can upload and manage files on the '.Anchor('Roles & Permissions','/dashboard/role').' page.'); ?>

Fix: <?php echo T('Define who can upload and manage files on the').' '.Anchor(T('Roles & Permissions'),'/dashboard/role').' '.T('page.'); ?>


Click here > Ctrl+F > search for "FileUpload" around the Page.

Tagged:

Comments

  • Options

    Agree..... some or many of the strings are not translatable through the use of localization files, such as this one...

    "File upload failed. Reason: "

    To translate it, I will have to change the fileupload.js which is not the proper way of doing.

Sign In or Register to comment.