diff --git a/administrator/components/com_jedchecker/language/af-ZA/af-ZA.com_jedchecker.ini b/administrator/components/com_jedchecker/language/af-ZA/af-ZA.com_jedchecker.ini new file mode 100644 index 0000000..cb5098e --- /dev/null +++ b/administrator/components/com_jedchecker/language/af-ZA/af-ZA.com_jedchecker.ini @@ -0,0 +1,83 @@ +; Language files have to start with semicolon (;) otherwise we have problems with transifex +COM_JEDCHECKER_CONFIGURATION="JED Checker Configuration" +COM_JEDCHECKER_UPLOAD_FILE="Upload File" +COM_JEDCHECKER_UPLOAD_WAS_SUCCESSFUL="Upload was successful, next click the Unzip button." +COM_JEDCHECKER_ERROR_UNABLE_TO_UPLOAD_FILE="Upload has failed, ensure that the temporary directory is writable." +COM_JEDCHECKER_UNZIP_SUCCESS="Unzip was successful, next click the Check button." +COM_JEDCHECKER_UNZIP_FAILED="Unzip failed" +COM_JEDCHECKER_RESULTS="JED Checker Results" +COM_JEDCHECKER_CONGRATS="Congratulations! If you use this component then you've most probably developed a Joomla! extension. Now comes the "hard" part - getting it listed in the Joomla Extension Directory (JED). The JED has strict requirements that must be complied with before an extension will be published in the directory. Those requirements can be found here. This component has been built with the aim of simplifying the development process by automatically checking the code for common errors in extensions." +COM_JEDCHECKER_CODE_STANDARDS="However, this is not the only goal. We also aim to have code standards checks, such as those that the JPlatform has. This would ensure that Joomla extension developers are aware of the JPlatform coding standards and this could raise the quality bar in our Joomla community even higher. For this we will need you - have a look at the Github project page. Fork the component, add your code checks and send us your pull requests!" +COM_JEDCHECKER_HOW_TO_USE="How to check your extension using the JED Checker:" +COM_JEDCHECKER_STEP1="Upload your component/plugin/module zip file by using the upload form below" +COM_JEDCHECKER_STEP2="Click on Check and review the results" +COM_JEDCHECKER_WALL_OF_HONOR="Wall of Honour" +COM_JEDCHECKER_CONTRIBUTORS="Contributors" +COM_JEDCHECKER_PEOPLE_THAT_HAVE_HELPED_WITH_THE_DEVELOPMENT="People that have helped with the development of this component." +COM_JEDCHECKER_HOW_TO_INTERPRET_RESULTS="How to Interpret the Results" +COM_JEDCHECKER_RULE_PH2="PHP Files missing JEXEC security" +COM_JEDCHECKER_RULE_PH2_DESC="All the PHP files in your extension needs to have a defined('_JEXEC') or die(); statement in the beginning of each file. This ensures that the file cannot be opened outside of the joomla installation and increases the security of your site." +COM_JEDCHECKER_RULE_PH3="License tag missing or incorrect in XML install file" +COM_JEDCHECKER_RULE_PH3_DESC="An install file should include the license information in a license-tag. The license must be GPL or GPL compatible." +COM_JEDCHECKER_EVERYTHING_SEEMS_TO_BE_FINE_WITH_THAT_RULE="Congratulations, everything seems to be fine with that rule!" +COM_JEDCHECKER_DEVELOPED_BY="JED Checker is a JED proyect." +COM_JEDCHECKER_PHP_VERSION_INCOMPATIBLE="JED Checker is incompatible with the PHP version that you run on this site: %s. You would need at least PHP Version %s. Aborting installation" +COM_JEDCHECKER_ERROR_HTML_INDEX_NOT_FOUND="Missing index.html in this directory." +COM_JEDCHECKER_ERROR_JEXEC_NOT_FOUND="The JEXEC security check was not found in this file." +COM_JEDCHECKER_ERROR_XML_LICENSE_NOT_FOUND="No license tag was found in this XML file." +COM_JEDCHECKER_ERROR_XML_LICENSE_NOT_GPL="Please check if the license in this file is compatible with the GPL." +COM_JEDCHECKER_RULE="Rule" +COM_JEDCHECKER_ERRORS="Errors" +COM_JEDCHECKER_COMPAT_ISSUES="Compatibility Issues" +COM_JEDCHECKER_IN_LINE="in line" +COM_JEDCHECKER_ERROR_ENCODING="You've used encoding in this file. This is not an error, but a JED editor will have to review this file." +COM_JEDCHECKER_RULE_ENCODING="Base64 or other type of encoding in the files" +COM_JEDCHECKER_RULE_ENCODING_DESC="As developers we are fully aware that the base64 and similar functions have a valid place in extensions (such as URL redirects or data storage). However if you use those to make it harder for users to read your code or to mask backlinks the JED will not accept your listing submission (this is not in the spirit of GPL anyway!). An editor will review your code and determine if the way you use the base64 matches the rules of the JED. This might slow your listing review time. So the rule of thumb is - don't do fishy stuff and avoid encoding your code if possible!" +COM_JEDCHECKER_ERROR_ERRORREPORTING="You've used error_reporting(0) in this file." +COM_JEDCHECKER_RULE_ERRORREPORTING="error_reporting(0) in the files" +COM_JEDCHECKER_RULE_ERRORREPORTING_DESC="Use of error_reporting(0) is discouraged as Joomla provides an error_reporting option in the Global Configuration." +COM_JEDCHECKER_LEAVE_A_REVIEW_JED="If you use this component, please post a rating and a review at the Joomla! Extensions Directory." +COM_JEDCHECKER_INFO="Info" +COM_JEDCHECKER_INFO_XML="Information about extension xml files" +COM_JEDCHECKER_INFO_XML_DESC="The install name of your extension must match your listing name on JED. We scan the xml files and find the value of the name tag. Useful information for the "filename and install as" fields in the jed submission form" +COM_JEDCHECKER_INFO_XML_NAME_XML="The name tag in this file is: %s" +COM_JEDCHECKER_INFO_XML_VERSION_XML="Version tag has the value: %s" +COM_JEDCHECKER_INFO_XML_CREATIONDATE_XML="The creationDate tag has the value: %s" +COM_JEDCHECKER_RULE_PH1="PHP Headers missing GPL License Notice" +COM_JEDCHECKER_RULE_PH1_DESC="A notice is required on each PHP file stating that the file is licensed GPL (or other compatible accepted license). For more information, please click here." +COM_JEDCHECKER_ERROR_GPL_NOT_FOUND="GPL or compatible license was not found" +COM_JEDCHECKER_PH1_LICENSE_FOUND="GPL license was found" +COM_JEDCHECKER_GPL_COMPATIBLE_LICENSE_WAS_FOUND="GPL compatible license was found" +COM_JEDCHECKER_WARNING="Warning" +COM_JEDCHECKER_OLD_RULE_X_INI_FILE_NOT_REMOVED="'ini' file for '%s' rule could not be removed, manual removal recommended." +COM_JEDCHECKER_OLD_RULE_X_PHP_FILE_NOT_REMOVED="PHP file for '%s' rule could not be removed, manual removal recommended." +COM_JEDCHECKER_OLD_RULE_X_PHP_FILE_REMOVED="Removed PHP file for '%s' rule." +COM_JEDCHECKER_OLD_RULE_X_INI_FILE_REMOVED="Removed 'ini' file for '%s' rule." +COM_JEDCHECKER_RULE_FRAMEWORK="Joomla Framework deprecated and unsafe" +COM_JEDCHECKER_RULE_FRAMEWORK_DESC="Warns about Find more info on Joomla backward compatibility for Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_SUPERGLOBALS="Use of superglobals is strongly discouraged" +COM_JEDCHECKER_ERROR_FRAMEWORK_DIRECTDB="Use of direct database access is strongly discouraged" +COM_JEDCHECKER_RULE_FRAMEWORK_NOTINJ3="Functions deprecated in Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_NOTINJ3="deprecated in Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_DS="DS is deprecated in Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_JERR="JError is deprecated, you should use JFactory::getApplication()->enqueueMessage();" +COM_JEDCHECKER_ERROR_FRAMEWORK_ERRORLOG="error_log and var_dump" +COM_JEDCHECKER_ERROR_FRAMEWORK_DEPRECATED="JRequest is deprecated, you should use JFactory::getApplication()->input;" +COM_JEDCHECKER_ERROR_FRAMEWORK_TODO="TODO statement detected" +COM_JEDCHECKER_ERROR_FRAMEWORK_GIT="Code-versioning folders detected" +COM_JEDCHECKER_ERROR_FRAMEWORK_STRICT="PHP Strict Standards: Only variables should be assigned by reference" +COM_JEDCHECKER_RULE_JAMSS="JAMSS - Joomla! Anti-Malware Scan Script" +COM_JEDCHECKER_RULE_JAMSS_DESC="JAMSS will raise many flags for use of potentially dangerous methods, additionally checking for some known attack signatures. Find out more on the Project's homepage
JAMSS output is very verbose and very useful, hover over any lines to see the details." +COM_JEDCHECKER_ERROR_JAMSS_SUSPICIOUS_FILENAME="Suspicious filename found :" +COM_JEDCHECKER_ERROR_JAMSS_CANNOT_OPEN="Could not check" +COM_JEDCHECKER_ERROR_JAMSS_PATTERN="Pattern found" +COM_JEDCHECKER_ERROR_JAMSS_STRING="String found" +COM_JEDCHECKER_RULE_US1="Update Server Requirement" +COM_JEDCHECKER_RULE_US1_DESC="The use of Update Servers is now required by JED." +COM_JEDCHECKER_ERROR_XML_UPDATE_SERVER_NOT_FOUND="Update Server tag missing or incorrect in this XML file" +COM_JEDCHECKER_ERROR_XML_UPDATE_SERVER_LINK_NOT_FOUND="Update Server link not found in this XML file" +COM_JEDCHECKER_INFO_XML_UPDATE_SERVER_LINK="The Update Server link in this XML file is: %s" +COM_JEDCHECKER_DELETE_FAILED="Can't delete temporary folder" +COM_JEDCHECKER_DELETE_SUCCESS="Temporary folder deleted!" +COM_JEDCHECKER_EMPTY_UPLOAD_FIELD="Please, select a zipped file to be uploaded" + diff --git a/administrator/components/com_jedchecker/language/af-ZA/af-ZA.com_jedchecker.sys.ini b/administrator/components/com_jedchecker/language/af-ZA/af-ZA.com_jedchecker.sys.ini new file mode 100644 index 0000000..bab631c --- /dev/null +++ b/administrator/components/com_jedchecker/language/af-ZA/af-ZA.com_jedchecker.sys.ini @@ -0,0 +1,3 @@ +; Language files have to start with semicolon (;) otherwise we have problems with transifex +COM_JEDCHECKER="JED Checker" + diff --git a/administrator/components/com_jedchecker/language/ar-SA/ar-SA.com_jedchecker.ini b/administrator/components/com_jedchecker/language/ar-SA/ar-SA.com_jedchecker.ini new file mode 100644 index 0000000..cb5098e --- /dev/null +++ b/administrator/components/com_jedchecker/language/ar-SA/ar-SA.com_jedchecker.ini @@ -0,0 +1,83 @@ +; Language files have to start with semicolon (;) otherwise we have problems with transifex +COM_JEDCHECKER_CONFIGURATION="JED Checker Configuration" +COM_JEDCHECKER_UPLOAD_FILE="Upload File" +COM_JEDCHECKER_UPLOAD_WAS_SUCCESSFUL="Upload was successful, next click the Unzip button." +COM_JEDCHECKER_ERROR_UNABLE_TO_UPLOAD_FILE="Upload has failed, ensure that the temporary directory is writable." +COM_JEDCHECKER_UNZIP_SUCCESS="Unzip was successful, next click the Check button." +COM_JEDCHECKER_UNZIP_FAILED="Unzip failed" +COM_JEDCHECKER_RESULTS="JED Checker Results" +COM_JEDCHECKER_CONGRATS="Congratulations! If you use this component then you've most probably developed a Joomla! extension. Now comes the "hard" part - getting it listed in the Joomla Extension Directory (JED). The JED has strict requirements that must be complied with before an extension will be published in the directory. Those requirements can be found here. This component has been built with the aim of simplifying the development process by automatically checking the code for common errors in extensions." +COM_JEDCHECKER_CODE_STANDARDS="However, this is not the only goal. We also aim to have code standards checks, such as those that the JPlatform has. This would ensure that Joomla extension developers are aware of the JPlatform coding standards and this could raise the quality bar in our Joomla community even higher. For this we will need you - have a look at the Github project page. Fork the component, add your code checks and send us your pull requests!" +COM_JEDCHECKER_HOW_TO_USE="How to check your extension using the JED Checker:" +COM_JEDCHECKER_STEP1="Upload your component/plugin/module zip file by using the upload form below" +COM_JEDCHECKER_STEP2="Click on Check and review the results" +COM_JEDCHECKER_WALL_OF_HONOR="Wall of Honour" +COM_JEDCHECKER_CONTRIBUTORS="Contributors" +COM_JEDCHECKER_PEOPLE_THAT_HAVE_HELPED_WITH_THE_DEVELOPMENT="People that have helped with the development of this component." +COM_JEDCHECKER_HOW_TO_INTERPRET_RESULTS="How to Interpret the Results" +COM_JEDCHECKER_RULE_PH2="PHP Files missing JEXEC security" +COM_JEDCHECKER_RULE_PH2_DESC="All the PHP files in your extension needs to have a defined('_JEXEC') or die(); statement in the beginning of each file. This ensures that the file cannot be opened outside of the joomla installation and increases the security of your site." +COM_JEDCHECKER_RULE_PH3="License tag missing or incorrect in XML install file" +COM_JEDCHECKER_RULE_PH3_DESC="An install file should include the license information in a license-tag. The license must be GPL or GPL compatible." +COM_JEDCHECKER_EVERYTHING_SEEMS_TO_BE_FINE_WITH_THAT_RULE="Congratulations, everything seems to be fine with that rule!" +COM_JEDCHECKER_DEVELOPED_BY="JED Checker is a JED proyect." +COM_JEDCHECKER_PHP_VERSION_INCOMPATIBLE="JED Checker is incompatible with the PHP version that you run on this site: %s. You would need at least PHP Version %s. Aborting installation" +COM_JEDCHECKER_ERROR_HTML_INDEX_NOT_FOUND="Missing index.html in this directory." +COM_JEDCHECKER_ERROR_JEXEC_NOT_FOUND="The JEXEC security check was not found in this file." +COM_JEDCHECKER_ERROR_XML_LICENSE_NOT_FOUND="No license tag was found in this XML file." +COM_JEDCHECKER_ERROR_XML_LICENSE_NOT_GPL="Please check if the license in this file is compatible with the GPL." +COM_JEDCHECKER_RULE="Rule" +COM_JEDCHECKER_ERRORS="Errors" +COM_JEDCHECKER_COMPAT_ISSUES="Compatibility Issues" +COM_JEDCHECKER_IN_LINE="in line" +COM_JEDCHECKER_ERROR_ENCODING="You've used encoding in this file. This is not an error, but a JED editor will have to review this file." +COM_JEDCHECKER_RULE_ENCODING="Base64 or other type of encoding in the files" +COM_JEDCHECKER_RULE_ENCODING_DESC="As developers we are fully aware that the base64 and similar functions have a valid place in extensions (such as URL redirects or data storage). However if you use those to make it harder for users to read your code or to mask backlinks the JED will not accept your listing submission (this is not in the spirit of GPL anyway!). An editor will review your code and determine if the way you use the base64 matches the rules of the JED. This might slow your listing review time. So the rule of thumb is - don't do fishy stuff and avoid encoding your code if possible!" +COM_JEDCHECKER_ERROR_ERRORREPORTING="You've used error_reporting(0) in this file." +COM_JEDCHECKER_RULE_ERRORREPORTING="error_reporting(0) in the files" +COM_JEDCHECKER_RULE_ERRORREPORTING_DESC="Use of error_reporting(0) is discouraged as Joomla provides an error_reporting option in the Global Configuration." +COM_JEDCHECKER_LEAVE_A_REVIEW_JED="If you use this component, please post a rating and a review at the Joomla! Extensions Directory." +COM_JEDCHECKER_INFO="Info" +COM_JEDCHECKER_INFO_XML="Information about extension xml files" +COM_JEDCHECKER_INFO_XML_DESC="The install name of your extension must match your listing name on JED. We scan the xml files and find the value of the name tag. Useful information for the "filename and install as" fields in the jed submission form" +COM_JEDCHECKER_INFO_XML_NAME_XML="The name tag in this file is: %s" +COM_JEDCHECKER_INFO_XML_VERSION_XML="Version tag has the value: %s" +COM_JEDCHECKER_INFO_XML_CREATIONDATE_XML="The creationDate tag has the value: %s" +COM_JEDCHECKER_RULE_PH1="PHP Headers missing GPL License Notice" +COM_JEDCHECKER_RULE_PH1_DESC="A notice is required on each PHP file stating that the file is licensed GPL (or other compatible accepted license). For more information, please click here." +COM_JEDCHECKER_ERROR_GPL_NOT_FOUND="GPL or compatible license was not found" +COM_JEDCHECKER_PH1_LICENSE_FOUND="GPL license was found" +COM_JEDCHECKER_GPL_COMPATIBLE_LICENSE_WAS_FOUND="GPL compatible license was found" +COM_JEDCHECKER_WARNING="Warning" +COM_JEDCHECKER_OLD_RULE_X_INI_FILE_NOT_REMOVED="'ini' file for '%s' rule could not be removed, manual removal recommended." +COM_JEDCHECKER_OLD_RULE_X_PHP_FILE_NOT_REMOVED="PHP file for '%s' rule could not be removed, manual removal recommended." +COM_JEDCHECKER_OLD_RULE_X_PHP_FILE_REMOVED="Removed PHP file for '%s' rule." +COM_JEDCHECKER_OLD_RULE_X_INI_FILE_REMOVED="Removed 'ini' file for '%s' rule." +COM_JEDCHECKER_RULE_FRAMEWORK="Joomla Framework deprecated and unsafe" +COM_JEDCHECKER_RULE_FRAMEWORK_DESC="Warns about Find more info on Joomla backward compatibility for Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_SUPERGLOBALS="Use of superglobals is strongly discouraged" +COM_JEDCHECKER_ERROR_FRAMEWORK_DIRECTDB="Use of direct database access is strongly discouraged" +COM_JEDCHECKER_RULE_FRAMEWORK_NOTINJ3="Functions deprecated in Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_NOTINJ3="deprecated in Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_DS="DS is deprecated in Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_JERR="JError is deprecated, you should use JFactory::getApplication()->enqueueMessage();" +COM_JEDCHECKER_ERROR_FRAMEWORK_ERRORLOG="error_log and var_dump" +COM_JEDCHECKER_ERROR_FRAMEWORK_DEPRECATED="JRequest is deprecated, you should use JFactory::getApplication()->input;" +COM_JEDCHECKER_ERROR_FRAMEWORK_TODO="TODO statement detected" +COM_JEDCHECKER_ERROR_FRAMEWORK_GIT="Code-versioning folders detected" +COM_JEDCHECKER_ERROR_FRAMEWORK_STRICT="PHP Strict Standards: Only variables should be assigned by reference" +COM_JEDCHECKER_RULE_JAMSS="JAMSS - Joomla! Anti-Malware Scan Script" +COM_JEDCHECKER_RULE_JAMSS_DESC="JAMSS will raise many flags for use of potentially dangerous methods, additionally checking for some known attack signatures. Find out more on the Project's homepage
JAMSS output is very verbose and very useful, hover over any lines to see the details." +COM_JEDCHECKER_ERROR_JAMSS_SUSPICIOUS_FILENAME="Suspicious filename found :" +COM_JEDCHECKER_ERROR_JAMSS_CANNOT_OPEN="Could not check" +COM_JEDCHECKER_ERROR_JAMSS_PATTERN="Pattern found" +COM_JEDCHECKER_ERROR_JAMSS_STRING="String found" +COM_JEDCHECKER_RULE_US1="Update Server Requirement" +COM_JEDCHECKER_RULE_US1_DESC="The use of Update Servers is now required by JED." +COM_JEDCHECKER_ERROR_XML_UPDATE_SERVER_NOT_FOUND="Update Server tag missing or incorrect in this XML file" +COM_JEDCHECKER_ERROR_XML_UPDATE_SERVER_LINK_NOT_FOUND="Update Server link not found in this XML file" +COM_JEDCHECKER_INFO_XML_UPDATE_SERVER_LINK="The Update Server link in this XML file is: %s" +COM_JEDCHECKER_DELETE_FAILED="Can't delete temporary folder" +COM_JEDCHECKER_DELETE_SUCCESS="Temporary folder deleted!" +COM_JEDCHECKER_EMPTY_UPLOAD_FIELD="Please, select a zipped file to be uploaded" + diff --git a/administrator/components/com_jedchecker/language/ar-SA/ar-SA.com_jedchecker.sys.ini b/administrator/components/com_jedchecker/language/ar-SA/ar-SA.com_jedchecker.sys.ini new file mode 100644 index 0000000..bab631c --- /dev/null +++ b/administrator/components/com_jedchecker/language/ar-SA/ar-SA.com_jedchecker.sys.ini @@ -0,0 +1,3 @@ +; Language files have to start with semicolon (;) otherwise we have problems with transifex +COM_JEDCHECKER="JED Checker" + diff --git a/administrator/components/com_jedchecker/language/ca-ES/ca-ES.com_jedchecker.ini b/administrator/components/com_jedchecker/language/ca-ES/ca-ES.com_jedchecker.ini new file mode 100644 index 0000000..cb5098e --- /dev/null +++ b/administrator/components/com_jedchecker/language/ca-ES/ca-ES.com_jedchecker.ini @@ -0,0 +1,83 @@ +; Language files have to start with semicolon (;) otherwise we have problems with transifex +COM_JEDCHECKER_CONFIGURATION="JED Checker Configuration" +COM_JEDCHECKER_UPLOAD_FILE="Upload File" +COM_JEDCHECKER_UPLOAD_WAS_SUCCESSFUL="Upload was successful, next click the Unzip button." +COM_JEDCHECKER_ERROR_UNABLE_TO_UPLOAD_FILE="Upload has failed, ensure that the temporary directory is writable." +COM_JEDCHECKER_UNZIP_SUCCESS="Unzip was successful, next click the Check button." +COM_JEDCHECKER_UNZIP_FAILED="Unzip failed" +COM_JEDCHECKER_RESULTS="JED Checker Results" +COM_JEDCHECKER_CONGRATS="Congratulations! If you use this component then you've most probably developed a Joomla! extension. Now comes the "hard" part - getting it listed in the Joomla Extension Directory (JED). The JED has strict requirements that must be complied with before an extension will be published in the directory. Those requirements can be found here. This component has been built with the aim of simplifying the development process by automatically checking the code for common errors in extensions." +COM_JEDCHECKER_CODE_STANDARDS="However, this is not the only goal. We also aim to have code standards checks, such as those that the JPlatform has. This would ensure that Joomla extension developers are aware of the JPlatform coding standards and this could raise the quality bar in our Joomla community even higher. For this we will need you - have a look at the Github project page. Fork the component, add your code checks and send us your pull requests!" +COM_JEDCHECKER_HOW_TO_USE="How to check your extension using the JED Checker:" +COM_JEDCHECKER_STEP1="Upload your component/plugin/module zip file by using the upload form below" +COM_JEDCHECKER_STEP2="Click on Check and review the results" +COM_JEDCHECKER_WALL_OF_HONOR="Wall of Honour" +COM_JEDCHECKER_CONTRIBUTORS="Contributors" +COM_JEDCHECKER_PEOPLE_THAT_HAVE_HELPED_WITH_THE_DEVELOPMENT="People that have helped with the development of this component." +COM_JEDCHECKER_HOW_TO_INTERPRET_RESULTS="How to Interpret the Results" +COM_JEDCHECKER_RULE_PH2="PHP Files missing JEXEC security" +COM_JEDCHECKER_RULE_PH2_DESC="All the PHP files in your extension needs to have a defined('_JEXEC') or die(); statement in the beginning of each file. This ensures that the file cannot be opened outside of the joomla installation and increases the security of your site." +COM_JEDCHECKER_RULE_PH3="License tag missing or incorrect in XML install file" +COM_JEDCHECKER_RULE_PH3_DESC="An install file should include the license information in a license-tag. The license must be GPL or GPL compatible." +COM_JEDCHECKER_EVERYTHING_SEEMS_TO_BE_FINE_WITH_THAT_RULE="Congratulations, everything seems to be fine with that rule!" +COM_JEDCHECKER_DEVELOPED_BY="JED Checker is a JED proyect." +COM_JEDCHECKER_PHP_VERSION_INCOMPATIBLE="JED Checker is incompatible with the PHP version that you run on this site: %s. You would need at least PHP Version %s. Aborting installation" +COM_JEDCHECKER_ERROR_HTML_INDEX_NOT_FOUND="Missing index.html in this directory." +COM_JEDCHECKER_ERROR_JEXEC_NOT_FOUND="The JEXEC security check was not found in this file." +COM_JEDCHECKER_ERROR_XML_LICENSE_NOT_FOUND="No license tag was found in this XML file." +COM_JEDCHECKER_ERROR_XML_LICENSE_NOT_GPL="Please check if the license in this file is compatible with the GPL." +COM_JEDCHECKER_RULE="Rule" +COM_JEDCHECKER_ERRORS="Errors" +COM_JEDCHECKER_COMPAT_ISSUES="Compatibility Issues" +COM_JEDCHECKER_IN_LINE="in line" +COM_JEDCHECKER_ERROR_ENCODING="You've used encoding in this file. This is not an error, but a JED editor will have to review this file." +COM_JEDCHECKER_RULE_ENCODING="Base64 or other type of encoding in the files" +COM_JEDCHECKER_RULE_ENCODING_DESC="As developers we are fully aware that the base64 and similar functions have a valid place in extensions (such as URL redirects or data storage). However if you use those to make it harder for users to read your code or to mask backlinks the JED will not accept your listing submission (this is not in the spirit of GPL anyway!). An editor will review your code and determine if the way you use the base64 matches the rules of the JED. This might slow your listing review time. So the rule of thumb is - don't do fishy stuff and avoid encoding your code if possible!" +COM_JEDCHECKER_ERROR_ERRORREPORTING="You've used error_reporting(0) in this file." +COM_JEDCHECKER_RULE_ERRORREPORTING="error_reporting(0) in the files" +COM_JEDCHECKER_RULE_ERRORREPORTING_DESC="Use of error_reporting(0) is discouraged as Joomla provides an error_reporting option in the Global Configuration." +COM_JEDCHECKER_LEAVE_A_REVIEW_JED="If you use this component, please post a rating and a review at the Joomla! Extensions Directory." +COM_JEDCHECKER_INFO="Info" +COM_JEDCHECKER_INFO_XML="Information about extension xml files" +COM_JEDCHECKER_INFO_XML_DESC="The install name of your extension must match your listing name on JED. We scan the xml files and find the value of the name tag. Useful information for the "filename and install as" fields in the jed submission form" +COM_JEDCHECKER_INFO_XML_NAME_XML="The name tag in this file is: %s" +COM_JEDCHECKER_INFO_XML_VERSION_XML="Version tag has the value: %s" +COM_JEDCHECKER_INFO_XML_CREATIONDATE_XML="The creationDate tag has the value: %s" +COM_JEDCHECKER_RULE_PH1="PHP Headers missing GPL License Notice" +COM_JEDCHECKER_RULE_PH1_DESC="A notice is required on each PHP file stating that the file is licensed GPL (or other compatible accepted license). For more information, please click here." +COM_JEDCHECKER_ERROR_GPL_NOT_FOUND="GPL or compatible license was not found" +COM_JEDCHECKER_PH1_LICENSE_FOUND="GPL license was found" +COM_JEDCHECKER_GPL_COMPATIBLE_LICENSE_WAS_FOUND="GPL compatible license was found" +COM_JEDCHECKER_WARNING="Warning" +COM_JEDCHECKER_OLD_RULE_X_INI_FILE_NOT_REMOVED="'ini' file for '%s' rule could not be removed, manual removal recommended." +COM_JEDCHECKER_OLD_RULE_X_PHP_FILE_NOT_REMOVED="PHP file for '%s' rule could not be removed, manual removal recommended." +COM_JEDCHECKER_OLD_RULE_X_PHP_FILE_REMOVED="Removed PHP file for '%s' rule." +COM_JEDCHECKER_OLD_RULE_X_INI_FILE_REMOVED="Removed 'ini' file for '%s' rule." +COM_JEDCHECKER_RULE_FRAMEWORK="Joomla Framework deprecated and unsafe" +COM_JEDCHECKER_RULE_FRAMEWORK_DESC="Warns about Find more info on Joomla backward compatibility for Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_SUPERGLOBALS="Use of superglobals is strongly discouraged" +COM_JEDCHECKER_ERROR_FRAMEWORK_DIRECTDB="Use of direct database access is strongly discouraged" +COM_JEDCHECKER_RULE_FRAMEWORK_NOTINJ3="Functions deprecated in Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_NOTINJ3="deprecated in Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_DS="DS is deprecated in Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_JERR="JError is deprecated, you should use JFactory::getApplication()->enqueueMessage();" +COM_JEDCHECKER_ERROR_FRAMEWORK_ERRORLOG="error_log and var_dump" +COM_JEDCHECKER_ERROR_FRAMEWORK_DEPRECATED="JRequest is deprecated, you should use JFactory::getApplication()->input;" +COM_JEDCHECKER_ERROR_FRAMEWORK_TODO="TODO statement detected" +COM_JEDCHECKER_ERROR_FRAMEWORK_GIT="Code-versioning folders detected" +COM_JEDCHECKER_ERROR_FRAMEWORK_STRICT="PHP Strict Standards: Only variables should be assigned by reference" +COM_JEDCHECKER_RULE_JAMSS="JAMSS - Joomla! Anti-Malware Scan Script" +COM_JEDCHECKER_RULE_JAMSS_DESC="JAMSS will raise many flags for use of potentially dangerous methods, additionally checking for some known attack signatures. Find out more on the Project's homepage
JAMSS output is very verbose and very useful, hover over any lines to see the details." +COM_JEDCHECKER_ERROR_JAMSS_SUSPICIOUS_FILENAME="Suspicious filename found :" +COM_JEDCHECKER_ERROR_JAMSS_CANNOT_OPEN="Could not check" +COM_JEDCHECKER_ERROR_JAMSS_PATTERN="Pattern found" +COM_JEDCHECKER_ERROR_JAMSS_STRING="String found" +COM_JEDCHECKER_RULE_US1="Update Server Requirement" +COM_JEDCHECKER_RULE_US1_DESC="The use of Update Servers is now required by JED." +COM_JEDCHECKER_ERROR_XML_UPDATE_SERVER_NOT_FOUND="Update Server tag missing or incorrect in this XML file" +COM_JEDCHECKER_ERROR_XML_UPDATE_SERVER_LINK_NOT_FOUND="Update Server link not found in this XML file" +COM_JEDCHECKER_INFO_XML_UPDATE_SERVER_LINK="The Update Server link in this XML file is: %s" +COM_JEDCHECKER_DELETE_FAILED="Can't delete temporary folder" +COM_JEDCHECKER_DELETE_SUCCESS="Temporary folder deleted!" +COM_JEDCHECKER_EMPTY_UPLOAD_FIELD="Please, select a zipped file to be uploaded" + diff --git a/administrator/components/com_jedchecker/language/ca-ES/ca-ES.com_jedchecker.sys.ini b/administrator/components/com_jedchecker/language/ca-ES/ca-ES.com_jedchecker.sys.ini new file mode 100644 index 0000000..bab631c --- /dev/null +++ b/administrator/components/com_jedchecker/language/ca-ES/ca-ES.com_jedchecker.sys.ini @@ -0,0 +1,3 @@ +; Language files have to start with semicolon (;) otherwise we have problems with transifex +COM_JEDCHECKER="JED Checker" + diff --git a/administrator/components/com_jedchecker/language/cs-CZ/cs-CZ.com_jedchecker.ini b/administrator/components/com_jedchecker/language/cs-CZ/cs-CZ.com_jedchecker.ini new file mode 100644 index 0000000..cb5098e --- /dev/null +++ b/administrator/components/com_jedchecker/language/cs-CZ/cs-CZ.com_jedchecker.ini @@ -0,0 +1,83 @@ +; Language files have to start with semicolon (;) otherwise we have problems with transifex +COM_JEDCHECKER_CONFIGURATION="JED Checker Configuration" +COM_JEDCHECKER_UPLOAD_FILE="Upload File" +COM_JEDCHECKER_UPLOAD_WAS_SUCCESSFUL="Upload was successful, next click the Unzip button." +COM_JEDCHECKER_ERROR_UNABLE_TO_UPLOAD_FILE="Upload has failed, ensure that the temporary directory is writable." +COM_JEDCHECKER_UNZIP_SUCCESS="Unzip was successful, next click the Check button." +COM_JEDCHECKER_UNZIP_FAILED="Unzip failed" +COM_JEDCHECKER_RESULTS="JED Checker Results" +COM_JEDCHECKER_CONGRATS="Congratulations! If you use this component then you've most probably developed a Joomla! extension. Now comes the "hard" part - getting it listed in the Joomla Extension Directory (JED). The JED has strict requirements that must be complied with before an extension will be published in the directory. Those requirements can be found here. This component has been built with the aim of simplifying the development process by automatically checking the code for common errors in extensions." +COM_JEDCHECKER_CODE_STANDARDS="However, this is not the only goal. We also aim to have code standards checks, such as those that the JPlatform has. This would ensure that Joomla extension developers are aware of the JPlatform coding standards and this could raise the quality bar in our Joomla community even higher. For this we will need you - have a look at the Github project page. Fork the component, add your code checks and send us your pull requests!" +COM_JEDCHECKER_HOW_TO_USE="How to check your extension using the JED Checker:" +COM_JEDCHECKER_STEP1="Upload your component/plugin/module zip file by using the upload form below" +COM_JEDCHECKER_STEP2="Click on Check and review the results" +COM_JEDCHECKER_WALL_OF_HONOR="Wall of Honour" +COM_JEDCHECKER_CONTRIBUTORS="Contributors" +COM_JEDCHECKER_PEOPLE_THAT_HAVE_HELPED_WITH_THE_DEVELOPMENT="People that have helped with the development of this component." +COM_JEDCHECKER_HOW_TO_INTERPRET_RESULTS="How to Interpret the Results" +COM_JEDCHECKER_RULE_PH2="PHP Files missing JEXEC security" +COM_JEDCHECKER_RULE_PH2_DESC="All the PHP files in your extension needs to have a defined('_JEXEC') or die(); statement in the beginning of each file. This ensures that the file cannot be opened outside of the joomla installation and increases the security of your site." +COM_JEDCHECKER_RULE_PH3="License tag missing or incorrect in XML install file" +COM_JEDCHECKER_RULE_PH3_DESC="An install file should include the license information in a license-tag. The license must be GPL or GPL compatible." +COM_JEDCHECKER_EVERYTHING_SEEMS_TO_BE_FINE_WITH_THAT_RULE="Congratulations, everything seems to be fine with that rule!" +COM_JEDCHECKER_DEVELOPED_BY="JED Checker is a JED proyect." +COM_JEDCHECKER_PHP_VERSION_INCOMPATIBLE="JED Checker is incompatible with the PHP version that you run on this site: %s. You would need at least PHP Version %s. Aborting installation" +COM_JEDCHECKER_ERROR_HTML_INDEX_NOT_FOUND="Missing index.html in this directory." +COM_JEDCHECKER_ERROR_JEXEC_NOT_FOUND="The JEXEC security check was not found in this file." +COM_JEDCHECKER_ERROR_XML_LICENSE_NOT_FOUND="No license tag was found in this XML file." +COM_JEDCHECKER_ERROR_XML_LICENSE_NOT_GPL="Please check if the license in this file is compatible with the GPL." +COM_JEDCHECKER_RULE="Rule" +COM_JEDCHECKER_ERRORS="Errors" +COM_JEDCHECKER_COMPAT_ISSUES="Compatibility Issues" +COM_JEDCHECKER_IN_LINE="in line" +COM_JEDCHECKER_ERROR_ENCODING="You've used encoding in this file. This is not an error, but a JED editor will have to review this file." +COM_JEDCHECKER_RULE_ENCODING="Base64 or other type of encoding in the files" +COM_JEDCHECKER_RULE_ENCODING_DESC="As developers we are fully aware that the base64 and similar functions have a valid place in extensions (such as URL redirects or data storage). However if you use those to make it harder for users to read your code or to mask backlinks the JED will not accept your listing submission (this is not in the spirit of GPL anyway!). An editor will review your code and determine if the way you use the base64 matches the rules of the JED. This might slow your listing review time. So the rule of thumb is - don't do fishy stuff and avoid encoding your code if possible!" +COM_JEDCHECKER_ERROR_ERRORREPORTING="You've used error_reporting(0) in this file." +COM_JEDCHECKER_RULE_ERRORREPORTING="error_reporting(0) in the files" +COM_JEDCHECKER_RULE_ERRORREPORTING_DESC="Use of error_reporting(0) is discouraged as Joomla provides an error_reporting option in the Global Configuration." +COM_JEDCHECKER_LEAVE_A_REVIEW_JED="If you use this component, please post a rating and a review at the Joomla! Extensions Directory." +COM_JEDCHECKER_INFO="Info" +COM_JEDCHECKER_INFO_XML="Information about extension xml files" +COM_JEDCHECKER_INFO_XML_DESC="The install name of your extension must match your listing name on JED. We scan the xml files and find the value of the name tag. Useful information for the "filename and install as" fields in the jed submission form" +COM_JEDCHECKER_INFO_XML_NAME_XML="The name tag in this file is: %s" +COM_JEDCHECKER_INFO_XML_VERSION_XML="Version tag has the value: %s" +COM_JEDCHECKER_INFO_XML_CREATIONDATE_XML="The creationDate tag has the value: %s" +COM_JEDCHECKER_RULE_PH1="PHP Headers missing GPL License Notice" +COM_JEDCHECKER_RULE_PH1_DESC="A notice is required on each PHP file stating that the file is licensed GPL (or other compatible accepted license). For more information, please click here." +COM_JEDCHECKER_ERROR_GPL_NOT_FOUND="GPL or compatible license was not found" +COM_JEDCHECKER_PH1_LICENSE_FOUND="GPL license was found" +COM_JEDCHECKER_GPL_COMPATIBLE_LICENSE_WAS_FOUND="GPL compatible license was found" +COM_JEDCHECKER_WARNING="Warning" +COM_JEDCHECKER_OLD_RULE_X_INI_FILE_NOT_REMOVED="'ini' file for '%s' rule could not be removed, manual removal recommended." +COM_JEDCHECKER_OLD_RULE_X_PHP_FILE_NOT_REMOVED="PHP file for '%s' rule could not be removed, manual removal recommended." +COM_JEDCHECKER_OLD_RULE_X_PHP_FILE_REMOVED="Removed PHP file for '%s' rule." +COM_JEDCHECKER_OLD_RULE_X_INI_FILE_REMOVED="Removed 'ini' file for '%s' rule." +COM_JEDCHECKER_RULE_FRAMEWORK="Joomla Framework deprecated and unsafe" +COM_JEDCHECKER_RULE_FRAMEWORK_DESC="Warns about Find more info on Joomla backward compatibility for Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_SUPERGLOBALS="Use of superglobals is strongly discouraged" +COM_JEDCHECKER_ERROR_FRAMEWORK_DIRECTDB="Use of direct database access is strongly discouraged" +COM_JEDCHECKER_RULE_FRAMEWORK_NOTINJ3="Functions deprecated in Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_NOTINJ3="deprecated in Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_DS="DS is deprecated in Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_JERR="JError is deprecated, you should use JFactory::getApplication()->enqueueMessage();" +COM_JEDCHECKER_ERROR_FRAMEWORK_ERRORLOG="error_log and var_dump" +COM_JEDCHECKER_ERROR_FRAMEWORK_DEPRECATED="JRequest is deprecated, you should use JFactory::getApplication()->input;" +COM_JEDCHECKER_ERROR_FRAMEWORK_TODO="TODO statement detected" +COM_JEDCHECKER_ERROR_FRAMEWORK_GIT="Code-versioning folders detected" +COM_JEDCHECKER_ERROR_FRAMEWORK_STRICT="PHP Strict Standards: Only variables should be assigned by reference" +COM_JEDCHECKER_RULE_JAMSS="JAMSS - Joomla! Anti-Malware Scan Script" +COM_JEDCHECKER_RULE_JAMSS_DESC="JAMSS will raise many flags for use of potentially dangerous methods, additionally checking for some known attack signatures. Find out more on the Project's homepage
JAMSS output is very verbose and very useful, hover over any lines to see the details." +COM_JEDCHECKER_ERROR_JAMSS_SUSPICIOUS_FILENAME="Suspicious filename found :" +COM_JEDCHECKER_ERROR_JAMSS_CANNOT_OPEN="Could not check" +COM_JEDCHECKER_ERROR_JAMSS_PATTERN="Pattern found" +COM_JEDCHECKER_ERROR_JAMSS_STRING="String found" +COM_JEDCHECKER_RULE_US1="Update Server Requirement" +COM_JEDCHECKER_RULE_US1_DESC="The use of Update Servers is now required by JED." +COM_JEDCHECKER_ERROR_XML_UPDATE_SERVER_NOT_FOUND="Update Server tag missing or incorrect in this XML file" +COM_JEDCHECKER_ERROR_XML_UPDATE_SERVER_LINK_NOT_FOUND="Update Server link not found in this XML file" +COM_JEDCHECKER_INFO_XML_UPDATE_SERVER_LINK="The Update Server link in this XML file is: %s" +COM_JEDCHECKER_DELETE_FAILED="Can't delete temporary folder" +COM_JEDCHECKER_DELETE_SUCCESS="Temporary folder deleted!" +COM_JEDCHECKER_EMPTY_UPLOAD_FIELD="Please, select a zipped file to be uploaded" + diff --git a/administrator/components/com_jedchecker/language/cs-CZ/cs-CZ.com_jedchecker.sys.ini b/administrator/components/com_jedchecker/language/cs-CZ/cs-CZ.com_jedchecker.sys.ini new file mode 100644 index 0000000..bab631c --- /dev/null +++ b/administrator/components/com_jedchecker/language/cs-CZ/cs-CZ.com_jedchecker.sys.ini @@ -0,0 +1,3 @@ +; Language files have to start with semicolon (;) otherwise we have problems with transifex +COM_JEDCHECKER="JED Checker" + diff --git a/administrator/components/com_jedchecker/language/da-DK/da-DK.com_jedchecker.ini b/administrator/components/com_jedchecker/language/da-DK/da-DK.com_jedchecker.ini index 3fee759..056bf64 100644 --- a/administrator/components/com_jedchecker/language/da-DK/da-DK.com_jedchecker.ini +++ b/administrator/components/com_jedchecker/language/da-DK/da-DK.com_jedchecker.ini @@ -11,7 +11,6 @@ COM_JEDCHECKER_CODE_STANDARDS="Dette er imidlertid ikke det eneste mål. Vi tils COM_JEDCHECKER_HOW_TO_USE="Sådan tjekker dit lokalnummer ved hjælp af JED Checker:" COM_JEDCHECKER_STEP1="Upload din komponent /plugin /modul zip-fil ved hjælp af upload nedenstående formular" COM_JEDCHECKER_STEP2="Klik på Unzip" -COM_JEDCHECKER_STEP3="Klik på Kontroller og gennemgå resultaterne" COM_JEDCHECKER_WALL_OF_HONOR="Wall of Honour" COM_JEDCHECKER_CONTRIBUTORS="Contributors" COM_JEDCHECKER_PEOPLE_THAT_HAVE_HELPED_WITH_THE_DEVELOPMENT="Folk, der har hjulpet med udviklingen af ​​denne komponent." @@ -33,8 +32,9 @@ COM_JEDCHECKER_COMPAT_ISSUES="kompatibilitetsproblemer" COM_JEDCHECKER_IN_LINE="i tråd" COM_JEDCHECKER_ERROR_ENCODING="Du har brugt kodning i denne fil. Dette er ikke en fejl, men en JED redaktør bliver nødt til at gennemgå denne fil." COM_JEDCHECKER_RULE_ENCODING="Base64 eller en anden type kodning i filerne" -COM_JEDCHECKER_RULE_ENCODING_DESC="Som udviklere, vi er helt klar over, at base64 og lignende funktioner har et gyldigt plads i udvidelser (f.eks URL redirects eller datalagring). Men hvis du bruger dem til at gøre det sværere for brugerne at læse din kode eller for at maskere backlinks den JED vil ikke acceptere din notering indsendelse (dette ikke er i overensstemmelse med ånden i GPL alligevel!). En redaktør vil gennemgå din kode og afgøre, om den måde, du bruger base64 matcher reglerne i JED. dette kan bremse din registrerede enhed review tid . Så tommelfingerregel er - ikke gør fishy ting og undgå koder din kode hvis det er muligt "! -COM_JEDCHECKER_ERROR_ERRORREPORTING="Du har brugt error_reporting(0) i denne fil." +COM_JEDCHECKER_RULE_ENCODING_DESC="Som udviklere, vi er helt klar over, at base64 og lignende funktioner har et gyldigt plads i udvidelser (f.eks URL redirects eller datalagring). Men hvis du bruger dem til at gøre det sværere for brugerne at læse din kode eller for at maskere backlinks den JED vil ikke acceptere din notering indsendelse (dette ikke er i overensstemmelse med ånden i GPL alligevel!). En redaktør vil gennemgå din kode og afgøre, om den måde, du bruger base64 matcher reglerne i JED. dette kan bremse din registrerede enhed review tid . Så tommelfingerregel er - ikke gør fishy ting og undgå koder din kode hvis det er muligt \"! +COM_JEDCHECKER_ERROR_ERRORREPORTING=" +COM_JEDCHECKER_ERROR_ERRORREPORTING="You've used error_reporting(0) in this file." COM_JEDCHECKER_RULE_ERRORREPORTING="error_reporting(0) i filerne" COM_JEDCHECKER_RULE_ERRORREPORTING_DESC="Anvendelse af error_reporting(0) frarådes som Joomla giver en error_reporting indstilling i Global Configuration." COM_JEDCHECKER_LEAVE_A_REVIEW_JED="Hvis du bruger denne komponent, bedes du sende en rating og en gennemgang på Joomla! Extensions Directory ." @@ -45,7 +45,7 @@ COM_JEDCHECKER_INFO_XML_NAME_XML="Navnet tag i denne fil er: %s" COM_JEDCHECKER_INFO_XML_VERSION_XML="Version tag har værdien: %s" COM_JEDCHECKER_INFO_XML_CREATIONDATE_XML="The CreationDate tag har værdien: %s" COM_JEDCHECKER_RULE_PH1="PHP mangler GPL licens Notice Headers" -COM_JEDCHECKER_RULE_PH1_DESC="En meddelelse er påkrævet på hver PHP-fil om, at filen er licenseret GPL (eller anden kompatibel accepteret licens) For mere information, kan du klik her . " +COM_JEDCHECKER_RULE_PH1_DESC="En meddelelse er påkrævet på hver PHP-fil om, at filen er licenseret GPL (eller anden kompatibel accepteret licens) For mere information, kan du klik her . " COM_JEDCHECKER_ERROR_GPL_NOT_FOUND="GPL eller kompatibel licens blev ikke fundet" COM_JEDCHECKER_PH1_LICENSE_FOUND="GPL licensen blev fundet" COM_JEDCHECKER_GPL_COMPATIBLE_LICENSE_WAS_FOUND="GPL kompatibel licens blev fundet" @@ -53,9 +53,9 @@ COM_JEDCHECKER_WARNING="Advarsel" COM_JEDCHECKER_OLD_RULE_X_INI_FILE_NOT_REMOVED="ini fil til '%s' regel kunne ikke fjernes, manuel fjernelse anbefales." COM_JEDCHECKER_OLD_RULE_X_PHP_FILE_NOT_REMOVED="PHP fil til '%s' regel kunne ikke fjernes, manuel fjernelse anbefales." COM_JEDCHECKER_OLD_RULE_X_PHP_FILE_REMOVED="Fjernet PHP fil til '%s' regel." -COM_JEDCHECKER_OLD_RULE_X_INI_FILE_REMOVED="Fjernet" ini "fil til '%s' regel." +COM_JEDCHECKER_OLD_RULE_X_INI_FILE_REMOVED="Fjernet\" ini \"fil til '%s' regel." COM_JEDCHECKER_RULE_FRAMEWORK="Joomla Framework forældet og usikre" -COM_JEDCHECKER_RULE_FRAMEWORK_DESC="Advarer mod Yderligere info på Joomla bagudkompatibilitet for Joomla 3 " +COM_JEDCHECKER_RULE_FRAMEWORK_DESC="Advarer mod Yderligere info på Joomla bagudkompatibilitet for Joomla 3 " COM_JEDCHECKER_ERROR_FRAMEWORK_SUPERGLOBALS="Anvendelse af superglobale variabler på det kraftigste frarådes" COM_JEDCHECKER_ERROR_FRAMEWORK_DIRECTDB="Anvendelse af direkte adgang database på det kraftigste frarådes" COM_JEDCHECKER_RULE_FRAMEWORK_NOTINJ3="Funktioner frarådede i Joomla 3" @@ -66,13 +66,19 @@ COM_JEDCHECKER_ERROR_FRAMEWORK_ERRORLOG="error_log og var_dump" COM_JEDCHECKER_ERROR_FRAMEWORK_DEPRECATED="JRequest er forældet, du skal bruge JFactory::getApplication()->input;" COM_JEDCHECKER_ERROR_FRAMEWORK_TODO="TODO erklæring opdaget" COM_JEDCHECKER_ERROR_FRAMEWORK_GIT="Code-versionering mapper opdaget" +COM_JEDCHECKER_ERROR_FRAMEWORK_STRICT="PHP Strict Standards: Only variables should be assigned by reference" COM_JEDCHECKER_RULE_JAMSS="JAMSS! Joomla Anti-Malware Scan Script" COM_JEDCHECKER_RULE_JAMSS_DESC="JAMSS vil rejse mange flag til brug af potentielt farlige metoder, desuden kontrol for nogle kendte angreb signaturer Læs mere på Projekt hjemmeside
JAMSS output er meget detaljeret og meget nyttigt, holde musen over nogen linjer for at se detaljerne. " COM_JEDCHECKER_ERROR_JAMSS_SUSPICIOUS_FILENAME="Suspicious filnavn fundet:" COM_JEDCHECKER_ERROR_JAMSS_CANNOT_OPEN="Kunne ikke kontrollere" COM_JEDCHECKER_ERROR_JAMSS_PATTERN="Mønster fundet" +COM_JEDCHECKER_ERROR_JAMSS_STRING="String found" COM_JEDCHECKER_RULE_US1="Update Server Krav" COM_JEDCHECKER_RULE_US1_DESC="Brugen af Opdater servere er nu kræves af JED." COM_JEDCHECKER_ERROR_XML_UPDATE_SERVER_NOT_FOUND="Update Server tag mangler eller forkert i denne XML-fil" COM_JEDCHECKER_ERROR_XML_UPDATE_SERVER_LINK_NOT_FOUND="Update Server linket ikke fundet i denne XML-fil" COM_JEDCHECKER_INFO_XML_UPDATE_SERVER_LINK="Update Server linket i denne XML-fil er: %s" +COM_JEDCHECKER_DELETE_FAILED="Can't delete temporary folder" +COM_JEDCHECKER_DELETE_SUCCESS="Temporary folder deleted!" +COM_JEDCHECKER_EMPTY_UPLOAD_FIELD="Please, select a zipped file to be uploaded" + diff --git a/administrator/components/com_jedchecker/language/da-DK/da-DK.com_jedchecker.sys.ini b/administrator/components/com_jedchecker/language/da-DK/da-DK.com_jedchecker.sys.ini index 4318513..bab631c 100644 --- a/administrator/components/com_jedchecker/language/da-DK/da-DK.com_jedchecker.sys.ini +++ b/administrator/components/com_jedchecker/language/da-DK/da-DK.com_jedchecker.sys.ini @@ -1,2 +1,3 @@ ; Language files have to start with semicolon (;) otherwise we have problems with transifex -COM_JEDCHECKER="JED Checker" \ No newline at end of file +COM_JEDCHECKER="JED Checker" + diff --git a/administrator/components/com_jedchecker/language/de-DE/de-DE.com_jedchecker.ini b/administrator/components/com_jedchecker/language/de-DE/de-DE.com_jedchecker.ini new file mode 100644 index 0000000..cb5098e --- /dev/null +++ b/administrator/components/com_jedchecker/language/de-DE/de-DE.com_jedchecker.ini @@ -0,0 +1,83 @@ +; Language files have to start with semicolon (;) otherwise we have problems with transifex +COM_JEDCHECKER_CONFIGURATION="JED Checker Configuration" +COM_JEDCHECKER_UPLOAD_FILE="Upload File" +COM_JEDCHECKER_UPLOAD_WAS_SUCCESSFUL="Upload was successful, next click the Unzip button." +COM_JEDCHECKER_ERROR_UNABLE_TO_UPLOAD_FILE="Upload has failed, ensure that the temporary directory is writable." +COM_JEDCHECKER_UNZIP_SUCCESS="Unzip was successful, next click the Check button." +COM_JEDCHECKER_UNZIP_FAILED="Unzip failed" +COM_JEDCHECKER_RESULTS="JED Checker Results" +COM_JEDCHECKER_CONGRATS="Congratulations! If you use this component then you've most probably developed a Joomla! extension. Now comes the "hard" part - getting it listed in the Joomla Extension Directory (JED). The JED has strict requirements that must be complied with before an extension will be published in the directory. Those requirements can be found here. This component has been built with the aim of simplifying the development process by automatically checking the code for common errors in extensions." +COM_JEDCHECKER_CODE_STANDARDS="However, this is not the only goal. We also aim to have code standards checks, such as those that the JPlatform has. This would ensure that Joomla extension developers are aware of the JPlatform coding standards and this could raise the quality bar in our Joomla community even higher. For this we will need you - have a look at the Github project page. Fork the component, add your code checks and send us your pull requests!" +COM_JEDCHECKER_HOW_TO_USE="How to check your extension using the JED Checker:" +COM_JEDCHECKER_STEP1="Upload your component/plugin/module zip file by using the upload form below" +COM_JEDCHECKER_STEP2="Click on Check and review the results" +COM_JEDCHECKER_WALL_OF_HONOR="Wall of Honour" +COM_JEDCHECKER_CONTRIBUTORS="Contributors" +COM_JEDCHECKER_PEOPLE_THAT_HAVE_HELPED_WITH_THE_DEVELOPMENT="People that have helped with the development of this component." +COM_JEDCHECKER_HOW_TO_INTERPRET_RESULTS="How to Interpret the Results" +COM_JEDCHECKER_RULE_PH2="PHP Files missing JEXEC security" +COM_JEDCHECKER_RULE_PH2_DESC="All the PHP files in your extension needs to have a defined('_JEXEC') or die(); statement in the beginning of each file. This ensures that the file cannot be opened outside of the joomla installation and increases the security of your site." +COM_JEDCHECKER_RULE_PH3="License tag missing or incorrect in XML install file" +COM_JEDCHECKER_RULE_PH3_DESC="An install file should include the license information in a license-tag. The license must be GPL or GPL compatible." +COM_JEDCHECKER_EVERYTHING_SEEMS_TO_BE_FINE_WITH_THAT_RULE="Congratulations, everything seems to be fine with that rule!" +COM_JEDCHECKER_DEVELOPED_BY="JED Checker is a JED proyect." +COM_JEDCHECKER_PHP_VERSION_INCOMPATIBLE="JED Checker is incompatible with the PHP version that you run on this site: %s. You would need at least PHP Version %s. Aborting installation" +COM_JEDCHECKER_ERROR_HTML_INDEX_NOT_FOUND="Missing index.html in this directory." +COM_JEDCHECKER_ERROR_JEXEC_NOT_FOUND="The JEXEC security check was not found in this file." +COM_JEDCHECKER_ERROR_XML_LICENSE_NOT_FOUND="No license tag was found in this XML file." +COM_JEDCHECKER_ERROR_XML_LICENSE_NOT_GPL="Please check if the license in this file is compatible with the GPL." +COM_JEDCHECKER_RULE="Rule" +COM_JEDCHECKER_ERRORS="Errors" +COM_JEDCHECKER_COMPAT_ISSUES="Compatibility Issues" +COM_JEDCHECKER_IN_LINE="in line" +COM_JEDCHECKER_ERROR_ENCODING="You've used encoding in this file. This is not an error, but a JED editor will have to review this file." +COM_JEDCHECKER_RULE_ENCODING="Base64 or other type of encoding in the files" +COM_JEDCHECKER_RULE_ENCODING_DESC="As developers we are fully aware that the base64 and similar functions have a valid place in extensions (such as URL redirects or data storage). However if you use those to make it harder for users to read your code or to mask backlinks the JED will not accept your listing submission (this is not in the spirit of GPL anyway!). An editor will review your code and determine if the way you use the base64 matches the rules of the JED. This might slow your listing review time. So the rule of thumb is - don't do fishy stuff and avoid encoding your code if possible!" +COM_JEDCHECKER_ERROR_ERRORREPORTING="You've used error_reporting(0) in this file." +COM_JEDCHECKER_RULE_ERRORREPORTING="error_reporting(0) in the files" +COM_JEDCHECKER_RULE_ERRORREPORTING_DESC="Use of error_reporting(0) is discouraged as Joomla provides an error_reporting option in the Global Configuration." +COM_JEDCHECKER_LEAVE_A_REVIEW_JED="If you use this component, please post a rating and a review at the Joomla! Extensions Directory." +COM_JEDCHECKER_INFO="Info" +COM_JEDCHECKER_INFO_XML="Information about extension xml files" +COM_JEDCHECKER_INFO_XML_DESC="The install name of your extension must match your listing name on JED. We scan the xml files and find the value of the name tag. Useful information for the "filename and install as" fields in the jed submission form" +COM_JEDCHECKER_INFO_XML_NAME_XML="The name tag in this file is: %s" +COM_JEDCHECKER_INFO_XML_VERSION_XML="Version tag has the value: %s" +COM_JEDCHECKER_INFO_XML_CREATIONDATE_XML="The creationDate tag has the value: %s" +COM_JEDCHECKER_RULE_PH1="PHP Headers missing GPL License Notice" +COM_JEDCHECKER_RULE_PH1_DESC="A notice is required on each PHP file stating that the file is licensed GPL (or other compatible accepted license). For more information, please click here." +COM_JEDCHECKER_ERROR_GPL_NOT_FOUND="GPL or compatible license was not found" +COM_JEDCHECKER_PH1_LICENSE_FOUND="GPL license was found" +COM_JEDCHECKER_GPL_COMPATIBLE_LICENSE_WAS_FOUND="GPL compatible license was found" +COM_JEDCHECKER_WARNING="Warning" +COM_JEDCHECKER_OLD_RULE_X_INI_FILE_NOT_REMOVED="'ini' file for '%s' rule could not be removed, manual removal recommended." +COM_JEDCHECKER_OLD_RULE_X_PHP_FILE_NOT_REMOVED="PHP file for '%s' rule could not be removed, manual removal recommended." +COM_JEDCHECKER_OLD_RULE_X_PHP_FILE_REMOVED="Removed PHP file for '%s' rule." +COM_JEDCHECKER_OLD_RULE_X_INI_FILE_REMOVED="Removed 'ini' file for '%s' rule." +COM_JEDCHECKER_RULE_FRAMEWORK="Joomla Framework deprecated and unsafe" +COM_JEDCHECKER_RULE_FRAMEWORK_DESC="Warns about Find more info on Joomla backward compatibility for Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_SUPERGLOBALS="Use of superglobals is strongly discouraged" +COM_JEDCHECKER_ERROR_FRAMEWORK_DIRECTDB="Use of direct database access is strongly discouraged" +COM_JEDCHECKER_RULE_FRAMEWORK_NOTINJ3="Functions deprecated in Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_NOTINJ3="deprecated in Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_DS="DS is deprecated in Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_JERR="JError is deprecated, you should use JFactory::getApplication()->enqueueMessage();" +COM_JEDCHECKER_ERROR_FRAMEWORK_ERRORLOG="error_log and var_dump" +COM_JEDCHECKER_ERROR_FRAMEWORK_DEPRECATED="JRequest is deprecated, you should use JFactory::getApplication()->input;" +COM_JEDCHECKER_ERROR_FRAMEWORK_TODO="TODO statement detected" +COM_JEDCHECKER_ERROR_FRAMEWORK_GIT="Code-versioning folders detected" +COM_JEDCHECKER_ERROR_FRAMEWORK_STRICT="PHP Strict Standards: Only variables should be assigned by reference" +COM_JEDCHECKER_RULE_JAMSS="JAMSS - Joomla! Anti-Malware Scan Script" +COM_JEDCHECKER_RULE_JAMSS_DESC="JAMSS will raise many flags for use of potentially dangerous methods, additionally checking for some known attack signatures. Find out more on the Project's homepage
JAMSS output is very verbose and very useful, hover over any lines to see the details." +COM_JEDCHECKER_ERROR_JAMSS_SUSPICIOUS_FILENAME="Suspicious filename found :" +COM_JEDCHECKER_ERROR_JAMSS_CANNOT_OPEN="Could not check" +COM_JEDCHECKER_ERROR_JAMSS_PATTERN="Pattern found" +COM_JEDCHECKER_ERROR_JAMSS_STRING="String found" +COM_JEDCHECKER_RULE_US1="Update Server Requirement" +COM_JEDCHECKER_RULE_US1_DESC="The use of Update Servers is now required by JED." +COM_JEDCHECKER_ERROR_XML_UPDATE_SERVER_NOT_FOUND="Update Server tag missing or incorrect in this XML file" +COM_JEDCHECKER_ERROR_XML_UPDATE_SERVER_LINK_NOT_FOUND="Update Server link not found in this XML file" +COM_JEDCHECKER_INFO_XML_UPDATE_SERVER_LINK="The Update Server link in this XML file is: %s" +COM_JEDCHECKER_DELETE_FAILED="Can't delete temporary folder" +COM_JEDCHECKER_DELETE_SUCCESS="Temporary folder deleted!" +COM_JEDCHECKER_EMPTY_UPLOAD_FIELD="Please, select a zipped file to be uploaded" + diff --git a/administrator/components/com_jedchecker/language/de-DE/de-DE.com_jedchecker.sys.ini b/administrator/components/com_jedchecker/language/de-DE/de-DE.com_jedchecker.sys.ini new file mode 100644 index 0000000..bab631c --- /dev/null +++ b/administrator/components/com_jedchecker/language/de-DE/de-DE.com_jedchecker.sys.ini @@ -0,0 +1,3 @@ +; Language files have to start with semicolon (;) otherwise we have problems with transifex +COM_JEDCHECKER="JED Checker" + diff --git a/administrator/components/com_jedchecker/language/el-GR/el-GR.com_jedchecker.ini b/administrator/components/com_jedchecker/language/el-GR/el-GR.com_jedchecker.ini new file mode 100644 index 0000000..cb5098e --- /dev/null +++ b/administrator/components/com_jedchecker/language/el-GR/el-GR.com_jedchecker.ini @@ -0,0 +1,83 @@ +; Language files have to start with semicolon (;) otherwise we have problems with transifex +COM_JEDCHECKER_CONFIGURATION="JED Checker Configuration" +COM_JEDCHECKER_UPLOAD_FILE="Upload File" +COM_JEDCHECKER_UPLOAD_WAS_SUCCESSFUL="Upload was successful, next click the Unzip button." +COM_JEDCHECKER_ERROR_UNABLE_TO_UPLOAD_FILE="Upload has failed, ensure that the temporary directory is writable." +COM_JEDCHECKER_UNZIP_SUCCESS="Unzip was successful, next click the Check button." +COM_JEDCHECKER_UNZIP_FAILED="Unzip failed" +COM_JEDCHECKER_RESULTS="JED Checker Results" +COM_JEDCHECKER_CONGRATS="Congratulations! If you use this component then you've most probably developed a Joomla! extension. Now comes the "hard" part - getting it listed in the Joomla Extension Directory (JED). The JED has strict requirements that must be complied with before an extension will be published in the directory. Those requirements can be found here. This component has been built with the aim of simplifying the development process by automatically checking the code for common errors in extensions." +COM_JEDCHECKER_CODE_STANDARDS="However, this is not the only goal. We also aim to have code standards checks, such as those that the JPlatform has. This would ensure that Joomla extension developers are aware of the JPlatform coding standards and this could raise the quality bar in our Joomla community even higher. For this we will need you - have a look at the Github project page. Fork the component, add your code checks and send us your pull requests!" +COM_JEDCHECKER_HOW_TO_USE="How to check your extension using the JED Checker:" +COM_JEDCHECKER_STEP1="Upload your component/plugin/module zip file by using the upload form below" +COM_JEDCHECKER_STEP2="Click on Check and review the results" +COM_JEDCHECKER_WALL_OF_HONOR="Wall of Honour" +COM_JEDCHECKER_CONTRIBUTORS="Contributors" +COM_JEDCHECKER_PEOPLE_THAT_HAVE_HELPED_WITH_THE_DEVELOPMENT="People that have helped with the development of this component." +COM_JEDCHECKER_HOW_TO_INTERPRET_RESULTS="How to Interpret the Results" +COM_JEDCHECKER_RULE_PH2="PHP Files missing JEXEC security" +COM_JEDCHECKER_RULE_PH2_DESC="All the PHP files in your extension needs to have a defined('_JEXEC') or die(); statement in the beginning of each file. This ensures that the file cannot be opened outside of the joomla installation and increases the security of your site." +COM_JEDCHECKER_RULE_PH3="License tag missing or incorrect in XML install file" +COM_JEDCHECKER_RULE_PH3_DESC="An install file should include the license information in a license-tag. The license must be GPL or GPL compatible." +COM_JEDCHECKER_EVERYTHING_SEEMS_TO_BE_FINE_WITH_THAT_RULE="Congratulations, everything seems to be fine with that rule!" +COM_JEDCHECKER_DEVELOPED_BY="JED Checker is a JED proyect." +COM_JEDCHECKER_PHP_VERSION_INCOMPATIBLE="JED Checker is incompatible with the PHP version that you run on this site: %s. You would need at least PHP Version %s. Aborting installation" +COM_JEDCHECKER_ERROR_HTML_INDEX_NOT_FOUND="Missing index.html in this directory." +COM_JEDCHECKER_ERROR_JEXEC_NOT_FOUND="The JEXEC security check was not found in this file." +COM_JEDCHECKER_ERROR_XML_LICENSE_NOT_FOUND="No license tag was found in this XML file." +COM_JEDCHECKER_ERROR_XML_LICENSE_NOT_GPL="Please check if the license in this file is compatible with the GPL." +COM_JEDCHECKER_RULE="Rule" +COM_JEDCHECKER_ERRORS="Errors" +COM_JEDCHECKER_COMPAT_ISSUES="Compatibility Issues" +COM_JEDCHECKER_IN_LINE="in line" +COM_JEDCHECKER_ERROR_ENCODING="You've used encoding in this file. This is not an error, but a JED editor will have to review this file." +COM_JEDCHECKER_RULE_ENCODING="Base64 or other type of encoding in the files" +COM_JEDCHECKER_RULE_ENCODING_DESC="As developers we are fully aware that the base64 and similar functions have a valid place in extensions (such as URL redirects or data storage). However if you use those to make it harder for users to read your code or to mask backlinks the JED will not accept your listing submission (this is not in the spirit of GPL anyway!). An editor will review your code and determine if the way you use the base64 matches the rules of the JED. This might slow your listing review time. So the rule of thumb is - don't do fishy stuff and avoid encoding your code if possible!" +COM_JEDCHECKER_ERROR_ERRORREPORTING="You've used error_reporting(0) in this file." +COM_JEDCHECKER_RULE_ERRORREPORTING="error_reporting(0) in the files" +COM_JEDCHECKER_RULE_ERRORREPORTING_DESC="Use of error_reporting(0) is discouraged as Joomla provides an error_reporting option in the Global Configuration." +COM_JEDCHECKER_LEAVE_A_REVIEW_JED="If you use this component, please post a rating and a review at the Joomla! Extensions Directory." +COM_JEDCHECKER_INFO="Info" +COM_JEDCHECKER_INFO_XML="Information about extension xml files" +COM_JEDCHECKER_INFO_XML_DESC="The install name of your extension must match your listing name on JED. We scan the xml files and find the value of the name tag. Useful information for the "filename and install as" fields in the jed submission form" +COM_JEDCHECKER_INFO_XML_NAME_XML="The name tag in this file is: %s" +COM_JEDCHECKER_INFO_XML_VERSION_XML="Version tag has the value: %s" +COM_JEDCHECKER_INFO_XML_CREATIONDATE_XML="The creationDate tag has the value: %s" +COM_JEDCHECKER_RULE_PH1="PHP Headers missing GPL License Notice" +COM_JEDCHECKER_RULE_PH1_DESC="A notice is required on each PHP file stating that the file is licensed GPL (or other compatible accepted license). For more information, please click here." +COM_JEDCHECKER_ERROR_GPL_NOT_FOUND="GPL or compatible license was not found" +COM_JEDCHECKER_PH1_LICENSE_FOUND="GPL license was found" +COM_JEDCHECKER_GPL_COMPATIBLE_LICENSE_WAS_FOUND="GPL compatible license was found" +COM_JEDCHECKER_WARNING="Warning" +COM_JEDCHECKER_OLD_RULE_X_INI_FILE_NOT_REMOVED="'ini' file for '%s' rule could not be removed, manual removal recommended." +COM_JEDCHECKER_OLD_RULE_X_PHP_FILE_NOT_REMOVED="PHP file for '%s' rule could not be removed, manual removal recommended." +COM_JEDCHECKER_OLD_RULE_X_PHP_FILE_REMOVED="Removed PHP file for '%s' rule." +COM_JEDCHECKER_OLD_RULE_X_INI_FILE_REMOVED="Removed 'ini' file for '%s' rule." +COM_JEDCHECKER_RULE_FRAMEWORK="Joomla Framework deprecated and unsafe" +COM_JEDCHECKER_RULE_FRAMEWORK_DESC="Warns about Find more info on Joomla backward compatibility for Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_SUPERGLOBALS="Use of superglobals is strongly discouraged" +COM_JEDCHECKER_ERROR_FRAMEWORK_DIRECTDB="Use of direct database access is strongly discouraged" +COM_JEDCHECKER_RULE_FRAMEWORK_NOTINJ3="Functions deprecated in Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_NOTINJ3="deprecated in Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_DS="DS is deprecated in Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_JERR="JError is deprecated, you should use JFactory::getApplication()->enqueueMessage();" +COM_JEDCHECKER_ERROR_FRAMEWORK_ERRORLOG="error_log and var_dump" +COM_JEDCHECKER_ERROR_FRAMEWORK_DEPRECATED="JRequest is deprecated, you should use JFactory::getApplication()->input;" +COM_JEDCHECKER_ERROR_FRAMEWORK_TODO="TODO statement detected" +COM_JEDCHECKER_ERROR_FRAMEWORK_GIT="Code-versioning folders detected" +COM_JEDCHECKER_ERROR_FRAMEWORK_STRICT="PHP Strict Standards: Only variables should be assigned by reference" +COM_JEDCHECKER_RULE_JAMSS="JAMSS - Joomla! Anti-Malware Scan Script" +COM_JEDCHECKER_RULE_JAMSS_DESC="JAMSS will raise many flags for use of potentially dangerous methods, additionally checking for some known attack signatures. Find out more on the Project's homepage
JAMSS output is very verbose and very useful, hover over any lines to see the details." +COM_JEDCHECKER_ERROR_JAMSS_SUSPICIOUS_FILENAME="Suspicious filename found :" +COM_JEDCHECKER_ERROR_JAMSS_CANNOT_OPEN="Could not check" +COM_JEDCHECKER_ERROR_JAMSS_PATTERN="Pattern found" +COM_JEDCHECKER_ERROR_JAMSS_STRING="String found" +COM_JEDCHECKER_RULE_US1="Update Server Requirement" +COM_JEDCHECKER_RULE_US1_DESC="The use of Update Servers is now required by JED." +COM_JEDCHECKER_ERROR_XML_UPDATE_SERVER_NOT_FOUND="Update Server tag missing or incorrect in this XML file" +COM_JEDCHECKER_ERROR_XML_UPDATE_SERVER_LINK_NOT_FOUND="Update Server link not found in this XML file" +COM_JEDCHECKER_INFO_XML_UPDATE_SERVER_LINK="The Update Server link in this XML file is: %s" +COM_JEDCHECKER_DELETE_FAILED="Can't delete temporary folder" +COM_JEDCHECKER_DELETE_SUCCESS="Temporary folder deleted!" +COM_JEDCHECKER_EMPTY_UPLOAD_FIELD="Please, select a zipped file to be uploaded" + diff --git a/administrator/components/com_jedchecker/language/el-GR/el-GR.com_jedchecker.sys.ini b/administrator/components/com_jedchecker/language/el-GR/el-GR.com_jedchecker.sys.ini new file mode 100644 index 0000000..bab631c --- /dev/null +++ b/administrator/components/com_jedchecker/language/el-GR/el-GR.com_jedchecker.sys.ini @@ -0,0 +1,3 @@ +; Language files have to start with semicolon (;) otherwise we have problems with transifex +COM_JEDCHECKER="JED Checker" + diff --git a/administrator/components/com_jedchecker/language/en-US/en-US.com_jedchecker.ini b/administrator/components/com_jedchecker/language/en-US/en-US.com_jedchecker.ini new file mode 100644 index 0000000..cb5098e --- /dev/null +++ b/administrator/components/com_jedchecker/language/en-US/en-US.com_jedchecker.ini @@ -0,0 +1,83 @@ +; Language files have to start with semicolon (;) otherwise we have problems with transifex +COM_JEDCHECKER_CONFIGURATION="JED Checker Configuration" +COM_JEDCHECKER_UPLOAD_FILE="Upload File" +COM_JEDCHECKER_UPLOAD_WAS_SUCCESSFUL="Upload was successful, next click the Unzip button." +COM_JEDCHECKER_ERROR_UNABLE_TO_UPLOAD_FILE="Upload has failed, ensure that the temporary directory is writable." +COM_JEDCHECKER_UNZIP_SUCCESS="Unzip was successful, next click the Check button." +COM_JEDCHECKER_UNZIP_FAILED="Unzip failed" +COM_JEDCHECKER_RESULTS="JED Checker Results" +COM_JEDCHECKER_CONGRATS="Congratulations! If you use this component then you've most probably developed a Joomla! extension. Now comes the "hard" part - getting it listed in the Joomla Extension Directory (JED). The JED has strict requirements that must be complied with before an extension will be published in the directory. Those requirements can be found here. This component has been built with the aim of simplifying the development process by automatically checking the code for common errors in extensions." +COM_JEDCHECKER_CODE_STANDARDS="However, this is not the only goal. We also aim to have code standards checks, such as those that the JPlatform has. This would ensure that Joomla extension developers are aware of the JPlatform coding standards and this could raise the quality bar in our Joomla community even higher. For this we will need you - have a look at the Github project page. Fork the component, add your code checks and send us your pull requests!" +COM_JEDCHECKER_HOW_TO_USE="How to check your extension using the JED Checker:" +COM_JEDCHECKER_STEP1="Upload your component/plugin/module zip file by using the upload form below" +COM_JEDCHECKER_STEP2="Click on Check and review the results" +COM_JEDCHECKER_WALL_OF_HONOR="Wall of Honour" +COM_JEDCHECKER_CONTRIBUTORS="Contributors" +COM_JEDCHECKER_PEOPLE_THAT_HAVE_HELPED_WITH_THE_DEVELOPMENT="People that have helped with the development of this component." +COM_JEDCHECKER_HOW_TO_INTERPRET_RESULTS="How to Interpret the Results" +COM_JEDCHECKER_RULE_PH2="PHP Files missing JEXEC security" +COM_JEDCHECKER_RULE_PH2_DESC="All the PHP files in your extension needs to have a defined('_JEXEC') or die(); statement in the beginning of each file. This ensures that the file cannot be opened outside of the joomla installation and increases the security of your site." +COM_JEDCHECKER_RULE_PH3="License tag missing or incorrect in XML install file" +COM_JEDCHECKER_RULE_PH3_DESC="An install file should include the license information in a license-tag. The license must be GPL or GPL compatible." +COM_JEDCHECKER_EVERYTHING_SEEMS_TO_BE_FINE_WITH_THAT_RULE="Congratulations, everything seems to be fine with that rule!" +COM_JEDCHECKER_DEVELOPED_BY="JED Checker is a JED proyect." +COM_JEDCHECKER_PHP_VERSION_INCOMPATIBLE="JED Checker is incompatible with the PHP version that you run on this site: %s. You would need at least PHP Version %s. Aborting installation" +COM_JEDCHECKER_ERROR_HTML_INDEX_NOT_FOUND="Missing index.html in this directory." +COM_JEDCHECKER_ERROR_JEXEC_NOT_FOUND="The JEXEC security check was not found in this file." +COM_JEDCHECKER_ERROR_XML_LICENSE_NOT_FOUND="No license tag was found in this XML file." +COM_JEDCHECKER_ERROR_XML_LICENSE_NOT_GPL="Please check if the license in this file is compatible with the GPL." +COM_JEDCHECKER_RULE="Rule" +COM_JEDCHECKER_ERRORS="Errors" +COM_JEDCHECKER_COMPAT_ISSUES="Compatibility Issues" +COM_JEDCHECKER_IN_LINE="in line" +COM_JEDCHECKER_ERROR_ENCODING="You've used encoding in this file. This is not an error, but a JED editor will have to review this file." +COM_JEDCHECKER_RULE_ENCODING="Base64 or other type of encoding in the files" +COM_JEDCHECKER_RULE_ENCODING_DESC="As developers we are fully aware that the base64 and similar functions have a valid place in extensions (such as URL redirects or data storage). However if you use those to make it harder for users to read your code or to mask backlinks the JED will not accept your listing submission (this is not in the spirit of GPL anyway!). An editor will review your code and determine if the way you use the base64 matches the rules of the JED. This might slow your listing review time. So the rule of thumb is - don't do fishy stuff and avoid encoding your code if possible!" +COM_JEDCHECKER_ERROR_ERRORREPORTING="You've used error_reporting(0) in this file." +COM_JEDCHECKER_RULE_ERRORREPORTING="error_reporting(0) in the files" +COM_JEDCHECKER_RULE_ERRORREPORTING_DESC="Use of error_reporting(0) is discouraged as Joomla provides an error_reporting option in the Global Configuration." +COM_JEDCHECKER_LEAVE_A_REVIEW_JED="If you use this component, please post a rating and a review at the Joomla! Extensions Directory." +COM_JEDCHECKER_INFO="Info" +COM_JEDCHECKER_INFO_XML="Information about extension xml files" +COM_JEDCHECKER_INFO_XML_DESC="The install name of your extension must match your listing name on JED. We scan the xml files and find the value of the name tag. Useful information for the "filename and install as" fields in the jed submission form" +COM_JEDCHECKER_INFO_XML_NAME_XML="The name tag in this file is: %s" +COM_JEDCHECKER_INFO_XML_VERSION_XML="Version tag has the value: %s" +COM_JEDCHECKER_INFO_XML_CREATIONDATE_XML="The creationDate tag has the value: %s" +COM_JEDCHECKER_RULE_PH1="PHP Headers missing GPL License Notice" +COM_JEDCHECKER_RULE_PH1_DESC="A notice is required on each PHP file stating that the file is licensed GPL (or other compatible accepted license). For more information, please click here." +COM_JEDCHECKER_ERROR_GPL_NOT_FOUND="GPL or compatible license was not found" +COM_JEDCHECKER_PH1_LICENSE_FOUND="GPL license was found" +COM_JEDCHECKER_GPL_COMPATIBLE_LICENSE_WAS_FOUND="GPL compatible license was found" +COM_JEDCHECKER_WARNING="Warning" +COM_JEDCHECKER_OLD_RULE_X_INI_FILE_NOT_REMOVED="'ini' file for '%s' rule could not be removed, manual removal recommended." +COM_JEDCHECKER_OLD_RULE_X_PHP_FILE_NOT_REMOVED="PHP file for '%s' rule could not be removed, manual removal recommended." +COM_JEDCHECKER_OLD_RULE_X_PHP_FILE_REMOVED="Removed PHP file for '%s' rule." +COM_JEDCHECKER_OLD_RULE_X_INI_FILE_REMOVED="Removed 'ini' file for '%s' rule." +COM_JEDCHECKER_RULE_FRAMEWORK="Joomla Framework deprecated and unsafe" +COM_JEDCHECKER_RULE_FRAMEWORK_DESC="Warns about Find more info on Joomla backward compatibility for Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_SUPERGLOBALS="Use of superglobals is strongly discouraged" +COM_JEDCHECKER_ERROR_FRAMEWORK_DIRECTDB="Use of direct database access is strongly discouraged" +COM_JEDCHECKER_RULE_FRAMEWORK_NOTINJ3="Functions deprecated in Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_NOTINJ3="deprecated in Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_DS="DS is deprecated in Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_JERR="JError is deprecated, you should use JFactory::getApplication()->enqueueMessage();" +COM_JEDCHECKER_ERROR_FRAMEWORK_ERRORLOG="error_log and var_dump" +COM_JEDCHECKER_ERROR_FRAMEWORK_DEPRECATED="JRequest is deprecated, you should use JFactory::getApplication()->input;" +COM_JEDCHECKER_ERROR_FRAMEWORK_TODO="TODO statement detected" +COM_JEDCHECKER_ERROR_FRAMEWORK_GIT="Code-versioning folders detected" +COM_JEDCHECKER_ERROR_FRAMEWORK_STRICT="PHP Strict Standards: Only variables should be assigned by reference" +COM_JEDCHECKER_RULE_JAMSS="JAMSS - Joomla! Anti-Malware Scan Script" +COM_JEDCHECKER_RULE_JAMSS_DESC="JAMSS will raise many flags for use of potentially dangerous methods, additionally checking for some known attack signatures. Find out more on the Project's homepage
JAMSS output is very verbose and very useful, hover over any lines to see the details." +COM_JEDCHECKER_ERROR_JAMSS_SUSPICIOUS_FILENAME="Suspicious filename found :" +COM_JEDCHECKER_ERROR_JAMSS_CANNOT_OPEN="Could not check" +COM_JEDCHECKER_ERROR_JAMSS_PATTERN="Pattern found" +COM_JEDCHECKER_ERROR_JAMSS_STRING="String found" +COM_JEDCHECKER_RULE_US1="Update Server Requirement" +COM_JEDCHECKER_RULE_US1_DESC="The use of Update Servers is now required by JED." +COM_JEDCHECKER_ERROR_XML_UPDATE_SERVER_NOT_FOUND="Update Server tag missing or incorrect in this XML file" +COM_JEDCHECKER_ERROR_XML_UPDATE_SERVER_LINK_NOT_FOUND="Update Server link not found in this XML file" +COM_JEDCHECKER_INFO_XML_UPDATE_SERVER_LINK="The Update Server link in this XML file is: %s" +COM_JEDCHECKER_DELETE_FAILED="Can't delete temporary folder" +COM_JEDCHECKER_DELETE_SUCCESS="Temporary folder deleted!" +COM_JEDCHECKER_EMPTY_UPLOAD_FIELD="Please, select a zipped file to be uploaded" + diff --git a/administrator/components/com_jedchecker/language/en-US/en-US.com_jedchecker.sys.ini b/administrator/components/com_jedchecker/language/en-US/en-US.com_jedchecker.sys.ini new file mode 100644 index 0000000..bab631c --- /dev/null +++ b/administrator/components/com_jedchecker/language/en-US/en-US.com_jedchecker.sys.ini @@ -0,0 +1,3 @@ +; Language files have to start with semicolon (;) otherwise we have problems with transifex +COM_JEDCHECKER="JED Checker" + diff --git a/administrator/components/com_jedchecker/language/es-ES/es-ES.com_jedchecker.ini b/administrator/components/com_jedchecker/language/es-ES/es-ES.com_jedchecker.ini index 37d89c5..426dff3 100644 --- a/administrator/components/com_jedchecker/language/es-ES/es-ES.com_jedchecker.ini +++ b/administrator/components/com_jedchecker/language/es-ES/es-ES.com_jedchecker.ini @@ -3,15 +3,15 @@ COM_JEDCHECKER_CONFIGURATION="Configuración de JED Checker" COM_JEDCHECKER_UPLOAD_FILE="Subir archivo" COM_JEDCHECKER_UPLOAD_WAS_SUCCESSFUL="La subida fue exitosa, haga clic en el botón Descomprimir." COM_JEDCHECKER_ERROR_UNABLE_TO_UPLOAD_FILE="Se ha producido un error en la carga, asegúrese de que el directorio temporal puede escribirse." -COM_JEDCHECKER_UNZIP_SUCCESS="La descompresión se realizó correctamente, haga clic en el botón Comprobar". -COM_JEDCHECKER_UNZIP_FAILED="Error de descompresión" +COM_JEDCHECKER_UNZIP_SUCCESS="La descompresión se realizó correctamente, haga clic en el botón Comprobar\". +COM_JEDCHECKER_UNZIP_FAILED=" +COM_JEDCHECKER_UNZIP_FAILED="Unzip failed" COM_JEDCHECKER_RESULTS="Resultados de JED Checker" COM_JEDCHECKER_CONGRATS="Enhorabuena! Si usas este componente, entonces probablemente has desarrollado una extensión de Joomla! Ahora viene la parte 'hard' - que se encuentra en el Joomla Extension Directory (JED) .El JED tiene requisitos estrictos que deben Se cumplirá antes de que se publique una extensión en el directorio.Los requisitos se pueden encontrar aquí Este componente se ha construido con el objetivo de simplificar el desarrollo Proceso de verificación automática del código de errores comunes en extensiones. " COM_JEDCHECKER_CODE_STANDARDS="Sin embargo, este no es el único objetivo.También pretendemos tener controles de estándares de código, como los que tiene la JPlatform.Esto aseguraría que los desarrolladores de extensión de Joomla estén al tanto de los estándares de codificación JPlatform y esto podría elevar la calidad de la barra En nuestra comunidad de Joomla aún más alta.Para esto te necesitaremos - echa un vistazo a la página del proyecto Github . Envíenos sus pedidos de tracción! " COM_JEDCHECKER_HOW_TO_USE="Cómo comprobar su extensión con JED Checker:" COM_JEDCHECKER_STEP1="Cargue su archivo zip componente / plugin / módulo usando el formulario de carga abajo" COM_JEDCHECKER_STEP2="Haga clic en Unzip" -COM_JEDCHECKER_STEP3="Haga clic en Verificar y revisar los resultados" COM_JEDCHECKER_WALL_OF_HONOR="Muro de Honor" COM_JEDCHECKER_CONTRIBUTORS="Contribuidores" COM_JEDCHECKER_PEOPLE_THAT_HAVE_HELPED_WITH_THE_DEVELOPMENT="Personas que han ayudado con el desarrollo de este componente." @@ -36,11 +36,12 @@ COM_JEDCHECKER_RULE_ENCODING="Base64 u otro tipo de codificación en los archivo COM_JEDCHECKER_RULE_ENCODING_DESC="Como desarrolladores somos plenamente conscientes de que las funciones base64 y similares tienen un lugar válido en las extensiones (como redirecciones de direcciones URL o almacenamiento de datos) .Sin embargo, si usas estas funciones para que sea más difícil para los usuarios leer tu código o enmascarar backlinks El JED no aceptará el envío de su listado (esto no está en el espíritu de GPL de todos modos!) Un editor revisará su código y determinará si la forma de usar el base64 coincide con las reglas del JED. Así que la regla de oro es - no hacer cosas de pescado y evitar la codificación de su código si es posible! " COM_JEDCHECKER_ERROR_ERRORREPORTING="Ha utilizado error_reporting(0) en este archivo." COM_JEDCHECKER_RULE_ERRORREPORTING="error_reporting(0) en los archivos" -COM_JEDCHECKER_RULE_ERRORREPORTING_DESC="Se desaconseja el uso de error_reporting(0) ya que Joomla proporciona una opción error_reporting en la configuración global". -COM_JEDCHECKER_LEAVE_A_REVIEW_JED="Si utiliza este componente, publique una calificación y una revisión en el Joomla! Extensions Directory ". +COM_JEDCHECKER_RULE_ERRORREPORTING_DESC="Se desaconseja el uso de error_reporting(0) ya que Joomla proporciona una opción error_reporting en la configuración global\". +COM_JEDCHECKER_LEAVE_A_REVIEW_JED=" +COM_JEDCHECKER_LEAVE_A_REVIEW_JED="If you use this component, please post a rating and a review at the Joomla! Extensions Directory." COM_JEDCHECKER_INFO="Información" COM_JEDCHECKER_INFO_XML="Información sobre archivos xml de extensión" -COM_JEDCHECKER_INFO_XML_DESC="El nombre de la instalación de su extensión debe coincidir con su nombre de la lista en JED.Examinamos los archivos xml y encontrar el valor de la etiqueta de nombre.Información útil para el" nombre de archivo e instalar como "campos en el formulario de envío jed" +COM_JEDCHECKER_INFO_XML_DESC="El nombre de la instalación de su extensión debe coincidir con su nombre de la lista en JED.Examinamos los archivos xml y encontrar el valor de la etiqueta de nombre.Información útil para el\" nombre de archivo e instalar como \"campos en el formulario de envío jed" COM_JEDCHECKER_INFO_XML_NAME_XML="La etiqueta de nombre en este archivo es: %s" COM_JEDCHECKER_INFO_XML_VERSION_XML="La etiqueta de la versión tiene el valor: %s" COM_JEDCHECKER_INFO_XML_CREATIONDATE_XML="La etiqueta creationDate tiene el valor: %s" @@ -66,13 +67,20 @@ COM_JEDCHECKER_ERROR_FRAMEWORK_ERRORLOG="error_log y var_dump" COM_JEDCHECKER_ERROR_FRAMEWORK_DEPRECATED="JRequest está obsoleto, debe usar JFactory::getApplication()->input;" COM_JEDCHECKER_ERROR_FRAMEWORK_TODO="Declaración TODO detectada" COM_JEDCHECKER_ERROR_FRAMEWORK_GIT="Se han detectado carpetas de control de código" +COM_JEDCHECKER_ERROR_FRAMEWORK_STRICT="PHP Strict Standards: Only variables should be assigned by reference" COM_JEDCHECKER_RULE_JAMSS="JAMSS - Escritura de exploración de Joomla! Anti-Malware" COM_JEDCHECKER_RULE_JAMSS_DESC="JAMSS levantará muchas banderas para el uso de métodos potencialmente peligrosos, además de comprobar algunas firmas de ataque conocidas.Más información sobre el Página de inicio del proyecto
La salida de JAMSS es muy detallada y muy útil, se ciernen sobre cualquier línea para ver los detalles. -COM_JEDCHECKER_ERROR_JAMSS_SUSPICIOUS_FILENAME="Nombre de archivo sospechoso encontrado:" +COM_JEDCHECKER_ERROR_JAMSS_SUSPICIOUS_FILENAME=" +COM_JEDCHECKER_ERROR_JAMSS_SUSPICIOUS_FILENAME="Suspicious filename found :" COM_JEDCHECKER_ERROR_JAMSS_CANNOT_OPEN="No se pudo comprobar" COM_JEDCHECKER_ERROR_JAMSS_PATTERN="Patrón encontrado" +COM_JEDCHECKER_ERROR_JAMSS_STRING="String found" COM_JEDCHECKER_RULE_US1="Requisito de servidor de actualización" COM_JEDCHECKER_RULE_US1_DESC="El uso de los servidores de actualización ahora es requerido por JED." COM_JEDCHECKER_ERROR_XML_UPDATE_SERVER_NOT_FOUND="Actualizar la etiqueta del servidor ausente o incorrecta en este archivo XML" COM_JEDCHECKER_ERROR_XML_UPDATE_SERVER_LINK_NOT_FOUND="Actualizar enlace de servidor no encontrado en este archivo XML" COM_JEDCHECKER_INFO_XML_UPDATE_SERVER_LINK="El enlace de servidor de actualización en este archivo XML es: %s" +COM_JEDCHECKER_DELETE_FAILED="Can't delete temporary folder" +COM_JEDCHECKER_DELETE_SUCCESS="Temporary folder deleted!" +COM_JEDCHECKER_EMPTY_UPLOAD_FIELD="Please, select a zipped file to be uploaded" + diff --git a/administrator/components/com_jedchecker/language/es-ES/es-ES.com_jedchecker.sys.ini b/administrator/components/com_jedchecker/language/es-ES/es-ES.com_jedchecker.sys.ini index 4318513..bab631c 100644 --- a/administrator/components/com_jedchecker/language/es-ES/es-ES.com_jedchecker.sys.ini +++ b/administrator/components/com_jedchecker/language/es-ES/es-ES.com_jedchecker.sys.ini @@ -1,2 +1,3 @@ ; Language files have to start with semicolon (;) otherwise we have problems with transifex -COM_JEDCHECKER="JED Checker" \ No newline at end of file +COM_JEDCHECKER="JED Checker" + diff --git a/administrator/components/com_jedchecker/language/fi-FI/fi-FI.com_jedchecker.ini b/administrator/components/com_jedchecker/language/fi-FI/fi-FI.com_jedchecker.ini new file mode 100644 index 0000000..cb5098e --- /dev/null +++ b/administrator/components/com_jedchecker/language/fi-FI/fi-FI.com_jedchecker.ini @@ -0,0 +1,83 @@ +; Language files have to start with semicolon (;) otherwise we have problems with transifex +COM_JEDCHECKER_CONFIGURATION="JED Checker Configuration" +COM_JEDCHECKER_UPLOAD_FILE="Upload File" +COM_JEDCHECKER_UPLOAD_WAS_SUCCESSFUL="Upload was successful, next click the Unzip button." +COM_JEDCHECKER_ERROR_UNABLE_TO_UPLOAD_FILE="Upload has failed, ensure that the temporary directory is writable." +COM_JEDCHECKER_UNZIP_SUCCESS="Unzip was successful, next click the Check button." +COM_JEDCHECKER_UNZIP_FAILED="Unzip failed" +COM_JEDCHECKER_RESULTS="JED Checker Results" +COM_JEDCHECKER_CONGRATS="Congratulations! If you use this component then you've most probably developed a Joomla! extension. Now comes the "hard" part - getting it listed in the Joomla Extension Directory (JED). The JED has strict requirements that must be complied with before an extension will be published in the directory. Those requirements can be found here. This component has been built with the aim of simplifying the development process by automatically checking the code for common errors in extensions." +COM_JEDCHECKER_CODE_STANDARDS="However, this is not the only goal. We also aim to have code standards checks, such as those that the JPlatform has. This would ensure that Joomla extension developers are aware of the JPlatform coding standards and this could raise the quality bar in our Joomla community even higher. For this we will need you - have a look at the Github project page. Fork the component, add your code checks and send us your pull requests!" +COM_JEDCHECKER_HOW_TO_USE="How to check your extension using the JED Checker:" +COM_JEDCHECKER_STEP1="Upload your component/plugin/module zip file by using the upload form below" +COM_JEDCHECKER_STEP2="Click on Check and review the results" +COM_JEDCHECKER_WALL_OF_HONOR="Wall of Honour" +COM_JEDCHECKER_CONTRIBUTORS="Contributors" +COM_JEDCHECKER_PEOPLE_THAT_HAVE_HELPED_WITH_THE_DEVELOPMENT="People that have helped with the development of this component." +COM_JEDCHECKER_HOW_TO_INTERPRET_RESULTS="How to Interpret the Results" +COM_JEDCHECKER_RULE_PH2="PHP Files missing JEXEC security" +COM_JEDCHECKER_RULE_PH2_DESC="All the PHP files in your extension needs to have a defined('_JEXEC') or die(); statement in the beginning of each file. This ensures that the file cannot be opened outside of the joomla installation and increases the security of your site." +COM_JEDCHECKER_RULE_PH3="License tag missing or incorrect in XML install file" +COM_JEDCHECKER_RULE_PH3_DESC="An install file should include the license information in a license-tag. The license must be GPL or GPL compatible." +COM_JEDCHECKER_EVERYTHING_SEEMS_TO_BE_FINE_WITH_THAT_RULE="Congratulations, everything seems to be fine with that rule!" +COM_JEDCHECKER_DEVELOPED_BY="JED Checker is a JED proyect." +COM_JEDCHECKER_PHP_VERSION_INCOMPATIBLE="JED Checker is incompatible with the PHP version that you run on this site: %s. You would need at least PHP Version %s. Aborting installation" +COM_JEDCHECKER_ERROR_HTML_INDEX_NOT_FOUND="Missing index.html in this directory." +COM_JEDCHECKER_ERROR_JEXEC_NOT_FOUND="The JEXEC security check was not found in this file." +COM_JEDCHECKER_ERROR_XML_LICENSE_NOT_FOUND="No license tag was found in this XML file." +COM_JEDCHECKER_ERROR_XML_LICENSE_NOT_GPL="Please check if the license in this file is compatible with the GPL." +COM_JEDCHECKER_RULE="Rule" +COM_JEDCHECKER_ERRORS="Errors" +COM_JEDCHECKER_COMPAT_ISSUES="Compatibility Issues" +COM_JEDCHECKER_IN_LINE="in line" +COM_JEDCHECKER_ERROR_ENCODING="You've used encoding in this file. This is not an error, but a JED editor will have to review this file." +COM_JEDCHECKER_RULE_ENCODING="Base64 or other type of encoding in the files" +COM_JEDCHECKER_RULE_ENCODING_DESC="As developers we are fully aware that the base64 and similar functions have a valid place in extensions (such as URL redirects or data storage). However if you use those to make it harder for users to read your code or to mask backlinks the JED will not accept your listing submission (this is not in the spirit of GPL anyway!). An editor will review your code and determine if the way you use the base64 matches the rules of the JED. This might slow your listing review time. So the rule of thumb is - don't do fishy stuff and avoid encoding your code if possible!" +COM_JEDCHECKER_ERROR_ERRORREPORTING="You've used error_reporting(0) in this file." +COM_JEDCHECKER_RULE_ERRORREPORTING="error_reporting(0) in the files" +COM_JEDCHECKER_RULE_ERRORREPORTING_DESC="Use of error_reporting(0) is discouraged as Joomla provides an error_reporting option in the Global Configuration." +COM_JEDCHECKER_LEAVE_A_REVIEW_JED="If you use this component, please post a rating and a review at the Joomla! Extensions Directory." +COM_JEDCHECKER_INFO="Info" +COM_JEDCHECKER_INFO_XML="Information about extension xml files" +COM_JEDCHECKER_INFO_XML_DESC="The install name of your extension must match your listing name on JED. We scan the xml files and find the value of the name tag. Useful information for the "filename and install as" fields in the jed submission form" +COM_JEDCHECKER_INFO_XML_NAME_XML="The name tag in this file is: %s" +COM_JEDCHECKER_INFO_XML_VERSION_XML="Version tag has the value: %s" +COM_JEDCHECKER_INFO_XML_CREATIONDATE_XML="The creationDate tag has the value: %s" +COM_JEDCHECKER_RULE_PH1="PHP Headers missing GPL License Notice" +COM_JEDCHECKER_RULE_PH1_DESC="A notice is required on each PHP file stating that the file is licensed GPL (or other compatible accepted license). For more information, please click here." +COM_JEDCHECKER_ERROR_GPL_NOT_FOUND="GPL or compatible license was not found" +COM_JEDCHECKER_PH1_LICENSE_FOUND="GPL license was found" +COM_JEDCHECKER_GPL_COMPATIBLE_LICENSE_WAS_FOUND="GPL compatible license was found" +COM_JEDCHECKER_WARNING="Warning" +COM_JEDCHECKER_OLD_RULE_X_INI_FILE_NOT_REMOVED="'ini' file for '%s' rule could not be removed, manual removal recommended." +COM_JEDCHECKER_OLD_RULE_X_PHP_FILE_NOT_REMOVED="PHP file for '%s' rule could not be removed, manual removal recommended." +COM_JEDCHECKER_OLD_RULE_X_PHP_FILE_REMOVED="Removed PHP file for '%s' rule." +COM_JEDCHECKER_OLD_RULE_X_INI_FILE_REMOVED="Removed 'ini' file for '%s' rule." +COM_JEDCHECKER_RULE_FRAMEWORK="Joomla Framework deprecated and unsafe" +COM_JEDCHECKER_RULE_FRAMEWORK_DESC="Warns about Find more info on Joomla backward compatibility for Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_SUPERGLOBALS="Use of superglobals is strongly discouraged" +COM_JEDCHECKER_ERROR_FRAMEWORK_DIRECTDB="Use of direct database access is strongly discouraged" +COM_JEDCHECKER_RULE_FRAMEWORK_NOTINJ3="Functions deprecated in Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_NOTINJ3="deprecated in Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_DS="DS is deprecated in Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_JERR="JError is deprecated, you should use JFactory::getApplication()->enqueueMessage();" +COM_JEDCHECKER_ERROR_FRAMEWORK_ERRORLOG="error_log and var_dump" +COM_JEDCHECKER_ERROR_FRAMEWORK_DEPRECATED="JRequest is deprecated, you should use JFactory::getApplication()->input;" +COM_JEDCHECKER_ERROR_FRAMEWORK_TODO="TODO statement detected" +COM_JEDCHECKER_ERROR_FRAMEWORK_GIT="Code-versioning folders detected" +COM_JEDCHECKER_ERROR_FRAMEWORK_STRICT="PHP Strict Standards: Only variables should be assigned by reference" +COM_JEDCHECKER_RULE_JAMSS="JAMSS - Joomla! Anti-Malware Scan Script" +COM_JEDCHECKER_RULE_JAMSS_DESC="JAMSS will raise many flags for use of potentially dangerous methods, additionally checking for some known attack signatures. Find out more on the Project's homepage
JAMSS output is very verbose and very useful, hover over any lines to see the details." +COM_JEDCHECKER_ERROR_JAMSS_SUSPICIOUS_FILENAME="Suspicious filename found :" +COM_JEDCHECKER_ERROR_JAMSS_CANNOT_OPEN="Could not check" +COM_JEDCHECKER_ERROR_JAMSS_PATTERN="Pattern found" +COM_JEDCHECKER_ERROR_JAMSS_STRING="String found" +COM_JEDCHECKER_RULE_US1="Update Server Requirement" +COM_JEDCHECKER_RULE_US1_DESC="The use of Update Servers is now required by JED." +COM_JEDCHECKER_ERROR_XML_UPDATE_SERVER_NOT_FOUND="Update Server tag missing or incorrect in this XML file" +COM_JEDCHECKER_ERROR_XML_UPDATE_SERVER_LINK_NOT_FOUND="Update Server link not found in this XML file" +COM_JEDCHECKER_INFO_XML_UPDATE_SERVER_LINK="The Update Server link in this XML file is: %s" +COM_JEDCHECKER_DELETE_FAILED="Can't delete temporary folder" +COM_JEDCHECKER_DELETE_SUCCESS="Temporary folder deleted!" +COM_JEDCHECKER_EMPTY_UPLOAD_FIELD="Please, select a zipped file to be uploaded" + diff --git a/administrator/components/com_jedchecker/language/fi-FI/fi-FI.com_jedchecker.sys.ini b/administrator/components/com_jedchecker/language/fi-FI/fi-FI.com_jedchecker.sys.ini new file mode 100644 index 0000000..bab631c --- /dev/null +++ b/administrator/components/com_jedchecker/language/fi-FI/fi-FI.com_jedchecker.sys.ini @@ -0,0 +1,3 @@ +; Language files have to start with semicolon (;) otherwise we have problems with transifex +COM_JEDCHECKER="JED Checker" + diff --git a/administrator/components/com_jedchecker/language/fr-FR/fr-FR.com_jedchecker.ini b/administrator/components/com_jedchecker/language/fr-FR/fr-FR.com_jedchecker.ini new file mode 100644 index 0000000..cb5098e --- /dev/null +++ b/administrator/components/com_jedchecker/language/fr-FR/fr-FR.com_jedchecker.ini @@ -0,0 +1,83 @@ +; Language files have to start with semicolon (;) otherwise we have problems with transifex +COM_JEDCHECKER_CONFIGURATION="JED Checker Configuration" +COM_JEDCHECKER_UPLOAD_FILE="Upload File" +COM_JEDCHECKER_UPLOAD_WAS_SUCCESSFUL="Upload was successful, next click the Unzip button." +COM_JEDCHECKER_ERROR_UNABLE_TO_UPLOAD_FILE="Upload has failed, ensure that the temporary directory is writable." +COM_JEDCHECKER_UNZIP_SUCCESS="Unzip was successful, next click the Check button." +COM_JEDCHECKER_UNZIP_FAILED="Unzip failed" +COM_JEDCHECKER_RESULTS="JED Checker Results" +COM_JEDCHECKER_CONGRATS="Congratulations! If you use this component then you've most probably developed a Joomla! extension. Now comes the "hard" part - getting it listed in the Joomla Extension Directory (JED). The JED has strict requirements that must be complied with before an extension will be published in the directory. Those requirements can be found here. This component has been built with the aim of simplifying the development process by automatically checking the code for common errors in extensions." +COM_JEDCHECKER_CODE_STANDARDS="However, this is not the only goal. We also aim to have code standards checks, such as those that the JPlatform has. This would ensure that Joomla extension developers are aware of the JPlatform coding standards and this could raise the quality bar in our Joomla community even higher. For this we will need you - have a look at the Github project page. Fork the component, add your code checks and send us your pull requests!" +COM_JEDCHECKER_HOW_TO_USE="How to check your extension using the JED Checker:" +COM_JEDCHECKER_STEP1="Upload your component/plugin/module zip file by using the upload form below" +COM_JEDCHECKER_STEP2="Click on Check and review the results" +COM_JEDCHECKER_WALL_OF_HONOR="Wall of Honour" +COM_JEDCHECKER_CONTRIBUTORS="Contributors" +COM_JEDCHECKER_PEOPLE_THAT_HAVE_HELPED_WITH_THE_DEVELOPMENT="People that have helped with the development of this component." +COM_JEDCHECKER_HOW_TO_INTERPRET_RESULTS="How to Interpret the Results" +COM_JEDCHECKER_RULE_PH2="PHP Files missing JEXEC security" +COM_JEDCHECKER_RULE_PH2_DESC="All the PHP files in your extension needs to have a defined('_JEXEC') or die(); statement in the beginning of each file. This ensures that the file cannot be opened outside of the joomla installation and increases the security of your site." +COM_JEDCHECKER_RULE_PH3="License tag missing or incorrect in XML install file" +COM_JEDCHECKER_RULE_PH3_DESC="An install file should include the license information in a license-tag. The license must be GPL or GPL compatible." +COM_JEDCHECKER_EVERYTHING_SEEMS_TO_BE_FINE_WITH_THAT_RULE="Congratulations, everything seems to be fine with that rule!" +COM_JEDCHECKER_DEVELOPED_BY="JED Checker is a JED proyect." +COM_JEDCHECKER_PHP_VERSION_INCOMPATIBLE="JED Checker is incompatible with the PHP version that you run on this site: %s. You would need at least PHP Version %s. Aborting installation" +COM_JEDCHECKER_ERROR_HTML_INDEX_NOT_FOUND="Missing index.html in this directory." +COM_JEDCHECKER_ERROR_JEXEC_NOT_FOUND="The JEXEC security check was not found in this file." +COM_JEDCHECKER_ERROR_XML_LICENSE_NOT_FOUND="No license tag was found in this XML file." +COM_JEDCHECKER_ERROR_XML_LICENSE_NOT_GPL="Please check if the license in this file is compatible with the GPL." +COM_JEDCHECKER_RULE="Rule" +COM_JEDCHECKER_ERRORS="Errors" +COM_JEDCHECKER_COMPAT_ISSUES="Compatibility Issues" +COM_JEDCHECKER_IN_LINE="in line" +COM_JEDCHECKER_ERROR_ENCODING="You've used encoding in this file. This is not an error, but a JED editor will have to review this file." +COM_JEDCHECKER_RULE_ENCODING="Base64 or other type of encoding in the files" +COM_JEDCHECKER_RULE_ENCODING_DESC="As developers we are fully aware that the base64 and similar functions have a valid place in extensions (such as URL redirects or data storage). However if you use those to make it harder for users to read your code or to mask backlinks the JED will not accept your listing submission (this is not in the spirit of GPL anyway!). An editor will review your code and determine if the way you use the base64 matches the rules of the JED. This might slow your listing review time. So the rule of thumb is - don't do fishy stuff and avoid encoding your code if possible!" +COM_JEDCHECKER_ERROR_ERRORREPORTING="You've used error_reporting(0) in this file." +COM_JEDCHECKER_RULE_ERRORREPORTING="error_reporting(0) in the files" +COM_JEDCHECKER_RULE_ERRORREPORTING_DESC="Use of error_reporting(0) is discouraged as Joomla provides an error_reporting option in the Global Configuration." +COM_JEDCHECKER_LEAVE_A_REVIEW_JED="If you use this component, please post a rating and a review at the Joomla! Extensions Directory." +COM_JEDCHECKER_INFO="Info" +COM_JEDCHECKER_INFO_XML="Information about extension xml files" +COM_JEDCHECKER_INFO_XML_DESC="The install name of your extension must match your listing name on JED. We scan the xml files and find the value of the name tag. Useful information for the "filename and install as" fields in the jed submission form" +COM_JEDCHECKER_INFO_XML_NAME_XML="The name tag in this file is: %s" +COM_JEDCHECKER_INFO_XML_VERSION_XML="Version tag has the value: %s" +COM_JEDCHECKER_INFO_XML_CREATIONDATE_XML="The creationDate tag has the value: %s" +COM_JEDCHECKER_RULE_PH1="PHP Headers missing GPL License Notice" +COM_JEDCHECKER_RULE_PH1_DESC="A notice is required on each PHP file stating that the file is licensed GPL (or other compatible accepted license). For more information, please click here." +COM_JEDCHECKER_ERROR_GPL_NOT_FOUND="GPL or compatible license was not found" +COM_JEDCHECKER_PH1_LICENSE_FOUND="GPL license was found" +COM_JEDCHECKER_GPL_COMPATIBLE_LICENSE_WAS_FOUND="GPL compatible license was found" +COM_JEDCHECKER_WARNING="Warning" +COM_JEDCHECKER_OLD_RULE_X_INI_FILE_NOT_REMOVED="'ini' file for '%s' rule could not be removed, manual removal recommended." +COM_JEDCHECKER_OLD_RULE_X_PHP_FILE_NOT_REMOVED="PHP file for '%s' rule could not be removed, manual removal recommended." +COM_JEDCHECKER_OLD_RULE_X_PHP_FILE_REMOVED="Removed PHP file for '%s' rule." +COM_JEDCHECKER_OLD_RULE_X_INI_FILE_REMOVED="Removed 'ini' file for '%s' rule." +COM_JEDCHECKER_RULE_FRAMEWORK="Joomla Framework deprecated and unsafe" +COM_JEDCHECKER_RULE_FRAMEWORK_DESC="Warns about Find more info on Joomla backward compatibility for Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_SUPERGLOBALS="Use of superglobals is strongly discouraged" +COM_JEDCHECKER_ERROR_FRAMEWORK_DIRECTDB="Use of direct database access is strongly discouraged" +COM_JEDCHECKER_RULE_FRAMEWORK_NOTINJ3="Functions deprecated in Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_NOTINJ3="deprecated in Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_DS="DS is deprecated in Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_JERR="JError is deprecated, you should use JFactory::getApplication()->enqueueMessage();" +COM_JEDCHECKER_ERROR_FRAMEWORK_ERRORLOG="error_log and var_dump" +COM_JEDCHECKER_ERROR_FRAMEWORK_DEPRECATED="JRequest is deprecated, you should use JFactory::getApplication()->input;" +COM_JEDCHECKER_ERROR_FRAMEWORK_TODO="TODO statement detected" +COM_JEDCHECKER_ERROR_FRAMEWORK_GIT="Code-versioning folders detected" +COM_JEDCHECKER_ERROR_FRAMEWORK_STRICT="PHP Strict Standards: Only variables should be assigned by reference" +COM_JEDCHECKER_RULE_JAMSS="JAMSS - Joomla! Anti-Malware Scan Script" +COM_JEDCHECKER_RULE_JAMSS_DESC="JAMSS will raise many flags for use of potentially dangerous methods, additionally checking for some known attack signatures. Find out more on the Project's homepage
JAMSS output is very verbose and very useful, hover over any lines to see the details." +COM_JEDCHECKER_ERROR_JAMSS_SUSPICIOUS_FILENAME="Suspicious filename found :" +COM_JEDCHECKER_ERROR_JAMSS_CANNOT_OPEN="Could not check" +COM_JEDCHECKER_ERROR_JAMSS_PATTERN="Pattern found" +COM_JEDCHECKER_ERROR_JAMSS_STRING="String found" +COM_JEDCHECKER_RULE_US1="Update Server Requirement" +COM_JEDCHECKER_RULE_US1_DESC="The use of Update Servers is now required by JED." +COM_JEDCHECKER_ERROR_XML_UPDATE_SERVER_NOT_FOUND="Update Server tag missing or incorrect in this XML file" +COM_JEDCHECKER_ERROR_XML_UPDATE_SERVER_LINK_NOT_FOUND="Update Server link not found in this XML file" +COM_JEDCHECKER_INFO_XML_UPDATE_SERVER_LINK="The Update Server link in this XML file is: %s" +COM_JEDCHECKER_DELETE_FAILED="Can't delete temporary folder" +COM_JEDCHECKER_DELETE_SUCCESS="Temporary folder deleted!" +COM_JEDCHECKER_EMPTY_UPLOAD_FIELD="Please, select a zipped file to be uploaded" + diff --git a/administrator/components/com_jedchecker/language/fr-FR/fr-FR.com_jedchecker.sys.ini b/administrator/components/com_jedchecker/language/fr-FR/fr-FR.com_jedchecker.sys.ini new file mode 100644 index 0000000..bab631c --- /dev/null +++ b/administrator/components/com_jedchecker/language/fr-FR/fr-FR.com_jedchecker.sys.ini @@ -0,0 +1,3 @@ +; Language files have to start with semicolon (;) otherwise we have problems with transifex +COM_JEDCHECKER="JED Checker" + diff --git a/administrator/components/com_jedchecker/language/he-IL/he-IL.com_jedchecker.ini b/administrator/components/com_jedchecker/language/he-IL/he-IL.com_jedchecker.ini new file mode 100644 index 0000000..cb5098e --- /dev/null +++ b/administrator/components/com_jedchecker/language/he-IL/he-IL.com_jedchecker.ini @@ -0,0 +1,83 @@ +; Language files have to start with semicolon (;) otherwise we have problems with transifex +COM_JEDCHECKER_CONFIGURATION="JED Checker Configuration" +COM_JEDCHECKER_UPLOAD_FILE="Upload File" +COM_JEDCHECKER_UPLOAD_WAS_SUCCESSFUL="Upload was successful, next click the Unzip button." +COM_JEDCHECKER_ERROR_UNABLE_TO_UPLOAD_FILE="Upload has failed, ensure that the temporary directory is writable." +COM_JEDCHECKER_UNZIP_SUCCESS="Unzip was successful, next click the Check button." +COM_JEDCHECKER_UNZIP_FAILED="Unzip failed" +COM_JEDCHECKER_RESULTS="JED Checker Results" +COM_JEDCHECKER_CONGRATS="Congratulations! If you use this component then you've most probably developed a Joomla! extension. Now comes the "hard" part - getting it listed in the Joomla Extension Directory (JED). The JED has strict requirements that must be complied with before an extension will be published in the directory. Those requirements can be found here. This component has been built with the aim of simplifying the development process by automatically checking the code for common errors in extensions." +COM_JEDCHECKER_CODE_STANDARDS="However, this is not the only goal. We also aim to have code standards checks, such as those that the JPlatform has. This would ensure that Joomla extension developers are aware of the JPlatform coding standards and this could raise the quality bar in our Joomla community even higher. For this we will need you - have a look at the Github project page. Fork the component, add your code checks and send us your pull requests!" +COM_JEDCHECKER_HOW_TO_USE="How to check your extension using the JED Checker:" +COM_JEDCHECKER_STEP1="Upload your component/plugin/module zip file by using the upload form below" +COM_JEDCHECKER_STEP2="Click on Check and review the results" +COM_JEDCHECKER_WALL_OF_HONOR="Wall of Honour" +COM_JEDCHECKER_CONTRIBUTORS="Contributors" +COM_JEDCHECKER_PEOPLE_THAT_HAVE_HELPED_WITH_THE_DEVELOPMENT="People that have helped with the development of this component." +COM_JEDCHECKER_HOW_TO_INTERPRET_RESULTS="How to Interpret the Results" +COM_JEDCHECKER_RULE_PH2="PHP Files missing JEXEC security" +COM_JEDCHECKER_RULE_PH2_DESC="All the PHP files in your extension needs to have a defined('_JEXEC') or die(); statement in the beginning of each file. This ensures that the file cannot be opened outside of the joomla installation and increases the security of your site." +COM_JEDCHECKER_RULE_PH3="License tag missing or incorrect in XML install file" +COM_JEDCHECKER_RULE_PH3_DESC="An install file should include the license information in a license-tag. The license must be GPL or GPL compatible." +COM_JEDCHECKER_EVERYTHING_SEEMS_TO_BE_FINE_WITH_THAT_RULE="Congratulations, everything seems to be fine with that rule!" +COM_JEDCHECKER_DEVELOPED_BY="JED Checker is a JED proyect." +COM_JEDCHECKER_PHP_VERSION_INCOMPATIBLE="JED Checker is incompatible with the PHP version that you run on this site: %s. You would need at least PHP Version %s. Aborting installation" +COM_JEDCHECKER_ERROR_HTML_INDEX_NOT_FOUND="Missing index.html in this directory." +COM_JEDCHECKER_ERROR_JEXEC_NOT_FOUND="The JEXEC security check was not found in this file." +COM_JEDCHECKER_ERROR_XML_LICENSE_NOT_FOUND="No license tag was found in this XML file." +COM_JEDCHECKER_ERROR_XML_LICENSE_NOT_GPL="Please check if the license in this file is compatible with the GPL." +COM_JEDCHECKER_RULE="Rule" +COM_JEDCHECKER_ERRORS="Errors" +COM_JEDCHECKER_COMPAT_ISSUES="Compatibility Issues" +COM_JEDCHECKER_IN_LINE="in line" +COM_JEDCHECKER_ERROR_ENCODING="You've used encoding in this file. This is not an error, but a JED editor will have to review this file." +COM_JEDCHECKER_RULE_ENCODING="Base64 or other type of encoding in the files" +COM_JEDCHECKER_RULE_ENCODING_DESC="As developers we are fully aware that the base64 and similar functions have a valid place in extensions (such as URL redirects or data storage). However if you use those to make it harder for users to read your code or to mask backlinks the JED will not accept your listing submission (this is not in the spirit of GPL anyway!). An editor will review your code and determine if the way you use the base64 matches the rules of the JED. This might slow your listing review time. So the rule of thumb is - don't do fishy stuff and avoid encoding your code if possible!" +COM_JEDCHECKER_ERROR_ERRORREPORTING="You've used error_reporting(0) in this file." +COM_JEDCHECKER_RULE_ERRORREPORTING="error_reporting(0) in the files" +COM_JEDCHECKER_RULE_ERRORREPORTING_DESC="Use of error_reporting(0) is discouraged as Joomla provides an error_reporting option in the Global Configuration." +COM_JEDCHECKER_LEAVE_A_REVIEW_JED="If you use this component, please post a rating and a review at the Joomla! Extensions Directory." +COM_JEDCHECKER_INFO="Info" +COM_JEDCHECKER_INFO_XML="Information about extension xml files" +COM_JEDCHECKER_INFO_XML_DESC="The install name of your extension must match your listing name on JED. We scan the xml files and find the value of the name tag. Useful information for the "filename and install as" fields in the jed submission form" +COM_JEDCHECKER_INFO_XML_NAME_XML="The name tag in this file is: %s" +COM_JEDCHECKER_INFO_XML_VERSION_XML="Version tag has the value: %s" +COM_JEDCHECKER_INFO_XML_CREATIONDATE_XML="The creationDate tag has the value: %s" +COM_JEDCHECKER_RULE_PH1="PHP Headers missing GPL License Notice" +COM_JEDCHECKER_RULE_PH1_DESC="A notice is required on each PHP file stating that the file is licensed GPL (or other compatible accepted license). For more information, please click here." +COM_JEDCHECKER_ERROR_GPL_NOT_FOUND="GPL or compatible license was not found" +COM_JEDCHECKER_PH1_LICENSE_FOUND="GPL license was found" +COM_JEDCHECKER_GPL_COMPATIBLE_LICENSE_WAS_FOUND="GPL compatible license was found" +COM_JEDCHECKER_WARNING="Warning" +COM_JEDCHECKER_OLD_RULE_X_INI_FILE_NOT_REMOVED="'ini' file for '%s' rule could not be removed, manual removal recommended." +COM_JEDCHECKER_OLD_RULE_X_PHP_FILE_NOT_REMOVED="PHP file for '%s' rule could not be removed, manual removal recommended." +COM_JEDCHECKER_OLD_RULE_X_PHP_FILE_REMOVED="Removed PHP file for '%s' rule." +COM_JEDCHECKER_OLD_RULE_X_INI_FILE_REMOVED="Removed 'ini' file for '%s' rule." +COM_JEDCHECKER_RULE_FRAMEWORK="Joomla Framework deprecated and unsafe" +COM_JEDCHECKER_RULE_FRAMEWORK_DESC="Warns about Find more info on Joomla backward compatibility for Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_SUPERGLOBALS="Use of superglobals is strongly discouraged" +COM_JEDCHECKER_ERROR_FRAMEWORK_DIRECTDB="Use of direct database access is strongly discouraged" +COM_JEDCHECKER_RULE_FRAMEWORK_NOTINJ3="Functions deprecated in Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_NOTINJ3="deprecated in Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_DS="DS is deprecated in Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_JERR="JError is deprecated, you should use JFactory::getApplication()->enqueueMessage();" +COM_JEDCHECKER_ERROR_FRAMEWORK_ERRORLOG="error_log and var_dump" +COM_JEDCHECKER_ERROR_FRAMEWORK_DEPRECATED="JRequest is deprecated, you should use JFactory::getApplication()->input;" +COM_JEDCHECKER_ERROR_FRAMEWORK_TODO="TODO statement detected" +COM_JEDCHECKER_ERROR_FRAMEWORK_GIT="Code-versioning folders detected" +COM_JEDCHECKER_ERROR_FRAMEWORK_STRICT="PHP Strict Standards: Only variables should be assigned by reference" +COM_JEDCHECKER_RULE_JAMSS="JAMSS - Joomla! Anti-Malware Scan Script" +COM_JEDCHECKER_RULE_JAMSS_DESC="JAMSS will raise many flags for use of potentially dangerous methods, additionally checking for some known attack signatures. Find out more on the Project's homepage
JAMSS output is very verbose and very useful, hover over any lines to see the details." +COM_JEDCHECKER_ERROR_JAMSS_SUSPICIOUS_FILENAME="Suspicious filename found :" +COM_JEDCHECKER_ERROR_JAMSS_CANNOT_OPEN="Could not check" +COM_JEDCHECKER_ERROR_JAMSS_PATTERN="Pattern found" +COM_JEDCHECKER_ERROR_JAMSS_STRING="String found" +COM_JEDCHECKER_RULE_US1="Update Server Requirement" +COM_JEDCHECKER_RULE_US1_DESC="The use of Update Servers is now required by JED." +COM_JEDCHECKER_ERROR_XML_UPDATE_SERVER_NOT_FOUND="Update Server tag missing or incorrect in this XML file" +COM_JEDCHECKER_ERROR_XML_UPDATE_SERVER_LINK_NOT_FOUND="Update Server link not found in this XML file" +COM_JEDCHECKER_INFO_XML_UPDATE_SERVER_LINK="The Update Server link in this XML file is: %s" +COM_JEDCHECKER_DELETE_FAILED="Can't delete temporary folder" +COM_JEDCHECKER_DELETE_SUCCESS="Temporary folder deleted!" +COM_JEDCHECKER_EMPTY_UPLOAD_FIELD="Please, select a zipped file to be uploaded" + diff --git a/administrator/components/com_jedchecker/language/he-IL/he-IL.com_jedchecker.sys.ini b/administrator/components/com_jedchecker/language/he-IL/he-IL.com_jedchecker.sys.ini new file mode 100644 index 0000000..bab631c --- /dev/null +++ b/administrator/components/com_jedchecker/language/he-IL/he-IL.com_jedchecker.sys.ini @@ -0,0 +1,3 @@ +; Language files have to start with semicolon (;) otherwise we have problems with transifex +COM_JEDCHECKER="JED Checker" + diff --git a/administrator/components/com_jedchecker/language/hu-HU/hu-HU.com_jedchecker.ini b/administrator/components/com_jedchecker/language/hu-HU/hu-HU.com_jedchecker.ini new file mode 100644 index 0000000..cb5098e --- /dev/null +++ b/administrator/components/com_jedchecker/language/hu-HU/hu-HU.com_jedchecker.ini @@ -0,0 +1,83 @@ +; Language files have to start with semicolon (;) otherwise we have problems with transifex +COM_JEDCHECKER_CONFIGURATION="JED Checker Configuration" +COM_JEDCHECKER_UPLOAD_FILE="Upload File" +COM_JEDCHECKER_UPLOAD_WAS_SUCCESSFUL="Upload was successful, next click the Unzip button." +COM_JEDCHECKER_ERROR_UNABLE_TO_UPLOAD_FILE="Upload has failed, ensure that the temporary directory is writable." +COM_JEDCHECKER_UNZIP_SUCCESS="Unzip was successful, next click the Check button." +COM_JEDCHECKER_UNZIP_FAILED="Unzip failed" +COM_JEDCHECKER_RESULTS="JED Checker Results" +COM_JEDCHECKER_CONGRATS="Congratulations! If you use this component then you've most probably developed a Joomla! extension. Now comes the "hard" part - getting it listed in the Joomla Extension Directory (JED). The JED has strict requirements that must be complied with before an extension will be published in the directory. Those requirements can be found here. This component has been built with the aim of simplifying the development process by automatically checking the code for common errors in extensions." +COM_JEDCHECKER_CODE_STANDARDS="However, this is not the only goal. We also aim to have code standards checks, such as those that the JPlatform has. This would ensure that Joomla extension developers are aware of the JPlatform coding standards and this could raise the quality bar in our Joomla community even higher. For this we will need you - have a look at the Github project page. Fork the component, add your code checks and send us your pull requests!" +COM_JEDCHECKER_HOW_TO_USE="How to check your extension using the JED Checker:" +COM_JEDCHECKER_STEP1="Upload your component/plugin/module zip file by using the upload form below" +COM_JEDCHECKER_STEP2="Click on Check and review the results" +COM_JEDCHECKER_WALL_OF_HONOR="Wall of Honour" +COM_JEDCHECKER_CONTRIBUTORS="Contributors" +COM_JEDCHECKER_PEOPLE_THAT_HAVE_HELPED_WITH_THE_DEVELOPMENT="People that have helped with the development of this component." +COM_JEDCHECKER_HOW_TO_INTERPRET_RESULTS="How to Interpret the Results" +COM_JEDCHECKER_RULE_PH2="PHP Files missing JEXEC security" +COM_JEDCHECKER_RULE_PH2_DESC="All the PHP files in your extension needs to have a defined('_JEXEC') or die(); statement in the beginning of each file. This ensures that the file cannot be opened outside of the joomla installation and increases the security of your site." +COM_JEDCHECKER_RULE_PH3="License tag missing or incorrect in XML install file" +COM_JEDCHECKER_RULE_PH3_DESC="An install file should include the license information in a license-tag. The license must be GPL or GPL compatible." +COM_JEDCHECKER_EVERYTHING_SEEMS_TO_BE_FINE_WITH_THAT_RULE="Congratulations, everything seems to be fine with that rule!" +COM_JEDCHECKER_DEVELOPED_BY="JED Checker is a JED proyect." +COM_JEDCHECKER_PHP_VERSION_INCOMPATIBLE="JED Checker is incompatible with the PHP version that you run on this site: %s. You would need at least PHP Version %s. Aborting installation" +COM_JEDCHECKER_ERROR_HTML_INDEX_NOT_FOUND="Missing index.html in this directory." +COM_JEDCHECKER_ERROR_JEXEC_NOT_FOUND="The JEXEC security check was not found in this file." +COM_JEDCHECKER_ERROR_XML_LICENSE_NOT_FOUND="No license tag was found in this XML file." +COM_JEDCHECKER_ERROR_XML_LICENSE_NOT_GPL="Please check if the license in this file is compatible with the GPL." +COM_JEDCHECKER_RULE="Rule" +COM_JEDCHECKER_ERRORS="Errors" +COM_JEDCHECKER_COMPAT_ISSUES="Compatibility Issues" +COM_JEDCHECKER_IN_LINE="in line" +COM_JEDCHECKER_ERROR_ENCODING="You've used encoding in this file. This is not an error, but a JED editor will have to review this file." +COM_JEDCHECKER_RULE_ENCODING="Base64 or other type of encoding in the files" +COM_JEDCHECKER_RULE_ENCODING_DESC="As developers we are fully aware that the base64 and similar functions have a valid place in extensions (such as URL redirects or data storage). However if you use those to make it harder for users to read your code or to mask backlinks the JED will not accept your listing submission (this is not in the spirit of GPL anyway!). An editor will review your code and determine if the way you use the base64 matches the rules of the JED. This might slow your listing review time. So the rule of thumb is - don't do fishy stuff and avoid encoding your code if possible!" +COM_JEDCHECKER_ERROR_ERRORREPORTING="You've used error_reporting(0) in this file." +COM_JEDCHECKER_RULE_ERRORREPORTING="error_reporting(0) in the files" +COM_JEDCHECKER_RULE_ERRORREPORTING_DESC="Use of error_reporting(0) is discouraged as Joomla provides an error_reporting option in the Global Configuration." +COM_JEDCHECKER_LEAVE_A_REVIEW_JED="If you use this component, please post a rating and a review at the Joomla! Extensions Directory." +COM_JEDCHECKER_INFO="Info" +COM_JEDCHECKER_INFO_XML="Information about extension xml files" +COM_JEDCHECKER_INFO_XML_DESC="The install name of your extension must match your listing name on JED. We scan the xml files and find the value of the name tag. Useful information for the "filename and install as" fields in the jed submission form" +COM_JEDCHECKER_INFO_XML_NAME_XML="The name tag in this file is: %s" +COM_JEDCHECKER_INFO_XML_VERSION_XML="Version tag has the value: %s" +COM_JEDCHECKER_INFO_XML_CREATIONDATE_XML="The creationDate tag has the value: %s" +COM_JEDCHECKER_RULE_PH1="PHP Headers missing GPL License Notice" +COM_JEDCHECKER_RULE_PH1_DESC="A notice is required on each PHP file stating that the file is licensed GPL (or other compatible accepted license). For more information, please click here." +COM_JEDCHECKER_ERROR_GPL_NOT_FOUND="GPL or compatible license was not found" +COM_JEDCHECKER_PH1_LICENSE_FOUND="GPL license was found" +COM_JEDCHECKER_GPL_COMPATIBLE_LICENSE_WAS_FOUND="GPL compatible license was found" +COM_JEDCHECKER_WARNING="Warning" +COM_JEDCHECKER_OLD_RULE_X_INI_FILE_NOT_REMOVED="'ini' file for '%s' rule could not be removed, manual removal recommended." +COM_JEDCHECKER_OLD_RULE_X_PHP_FILE_NOT_REMOVED="PHP file for '%s' rule could not be removed, manual removal recommended." +COM_JEDCHECKER_OLD_RULE_X_PHP_FILE_REMOVED="Removed PHP file for '%s' rule." +COM_JEDCHECKER_OLD_RULE_X_INI_FILE_REMOVED="Removed 'ini' file for '%s' rule." +COM_JEDCHECKER_RULE_FRAMEWORK="Joomla Framework deprecated and unsafe" +COM_JEDCHECKER_RULE_FRAMEWORK_DESC="Warns about Find more info on Joomla backward compatibility for Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_SUPERGLOBALS="Use of superglobals is strongly discouraged" +COM_JEDCHECKER_ERROR_FRAMEWORK_DIRECTDB="Use of direct database access is strongly discouraged" +COM_JEDCHECKER_RULE_FRAMEWORK_NOTINJ3="Functions deprecated in Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_NOTINJ3="deprecated in Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_DS="DS is deprecated in Joomla 3" +COM_JEDCHECKER_ERROR_FRAMEWORK_JERR="JError is deprecated, you should use JFactory::getApplication()->enqueueMessage();" +COM_JEDCHECKER_ERROR_FRAMEWORK_ERRORLOG="error_log and var_dump" +COM_JEDCHECKER_ERROR_FRAMEWORK_DEPRECATED="JRequest is deprecated, you should use JFactory::getApplication()->input;" +COM_JEDCHECKER_ERROR_FRAMEWORK_TODO="TODO statement detected" +COM_JEDCHECKER_ERROR_FRAMEWORK_GIT="Code-versioning folders detected" +COM_JEDCHECKER_ERROR_FRAMEWORK_STRICT="PHP Strict Standards: Only variables should be assigned by reference" +COM_JEDCHECKER_RULE_JAMSS="JAMSS - Joomla! Anti-Malware Scan Script" +COM_JEDCHECKER_RULE_JAMSS_DESC="JAMSS will raise many flags for use of potentially dangerous methods, additionally checking for some known attack signatures. Find out more on the Project's homepage
JAMSS output is very verbose and very useful, hover over any lines to see the details." +COM_JEDCHECKER_ERROR_JAMSS_SUSPICIOUS_FILENAME="Suspicious filename found :" +COM_JEDCHECKER_ERROR_JAMSS_CANNOT_OPEN="Could not check" +COM_JEDCHECKER_ERROR_JAMSS_PATTERN="Pattern found" +COM_JEDCHECKER_ERROR_JAMSS_STRING="String found" +COM_JEDCHECKER_RULE_US1="Update Server Requirement" +COM_JEDCHECKER_RULE_US1_DESC="The use of Update Servers is now required by JED." +COM_JEDCHECKER_ERROR_XML_UPDATE_SERVER_NOT_FOUND="Update Server tag missing or incorrect in this XML file" +COM_JEDCHECKER_ERROR_XML_UPDATE_SERVER_LINK_NOT_FOUND="Update Server link not found in this XML file" +COM_JEDCHECKER_INFO_XML_UPDATE_SERVER_LINK="The Update Server link in this XML file is: %s" +COM_JEDCHECKER_DELETE_FAILED="Can't delete temporary folder" +COM_JEDCHECKER_DELETE_SUCCESS="Temporary folder deleted!" +COM_JEDCHECKER_EMPTY_UPLOAD_FIELD="Please, select a zipped file to be uploaded" + diff --git a/administrator/components/com_jedchecker/language/hu-HU/hu-HU.com_jedchecker.sys.ini b/administrator/components/com_jedchecker/language/hu-HU/hu-HU.com_jedchecker.sys.ini new file mode 100644 index 0000000..bab631c --- /dev/null +++ b/administrator/components/com_jedchecker/language/hu-HU/hu-HU.com_jedchecker.sys.ini @@ -0,0 +1,3 @@ +; Language files have to start with semicolon (;) otherwise we have problems with transifex +COM_JEDCHECKER="JED Checker" + diff --git a/administrator/components/com_jedchecker/language/it-IT/it-IT.com_jedchecker.ini b/administrator/components/com_jedchecker/language/it-IT/it-IT.com_jedchecker.ini index b2d815d..269feb2 100644 --- a/administrator/components/com_jedchecker/language/it-IT/it-IT.com_jedchecker.ini +++ b/administrator/components/com_jedchecker/language/it-IT/it-IT.com_jedchecker.ini @@ -1,18 +1,18 @@ ; Language files have to start with semicolon (;) otherwise we have problems with transifex -COM_JEDCHECKER_CONFIGURATION="JED Checker Configurazione" +COM_JEDCHECKER_CONFIGURATION="Configurazione JED Checker" COM_JEDCHECKER_UPLOAD_FILE="Carica file" -COM_JEDCHECKER_UPLOAD_WAS_SUCCESSFUL="Upload ha avuto successo, il prossimo cliccare sul pulsante Unzip." -COM_JEDCHECKER_ERROR_UNABLE_TO_UPLOAD_FILE="caricamento non è riuscito, assicurarsi che la directory temporanea è scrivibile." -COM_JEDCHECKER_UNZIP_SUCCESS="Unzip ha avuto successo, il prossimo clic sul pulsante Controlla." -COM_JEDCHECKER_UNZIP_FAILED="Unzip non riuscita" -COM_JEDCHECKER_RESULTS="JED Checker Risultati" -COM_JEDCHECKER_CONGRATS="Congratulazioni Se si utilizza questo componente, allora avete molto probabilmente sviluppato una estensione di Joomla Ora arriva il " duro " parte - requisiti ottenerlo elencato nella Directory Estensione di Joomla (JED) La JED ha rigorose che devono. essere rispettate prima di un'estensione sarà pubblicato nella directory. Tali requisiti possono essere trovati qui . Questo componente è stato costruito con l'obiettivo di semplificare lo sviluppo processo controllando automaticamente il codice per gli errori più comuni nelle estensioni ". -COM_JEDCHECKER_CODE_STANDARDS="Tuttavia, questo non è l'unico obiettivo. Abbiamo anche lo scopo di avere il codice standard controlli, come quelli che il JPlatform ha. Ciò garantirebbe che gli sviluppatori di estensioni di Joomla sono a conoscenza degli standard di codifica JPlatform e questo potrebbe alzare il livello di qualità . nella nostra comunità Joomla ancora più elevato per questo avremo bisogno di voi -. avere uno sguardo alla Github pagina del progetto forcella componente, aggiungere il codice controlla e inviarci le vostre richieste tirare! " +COM_JEDCHECKER_UPLOAD_WAS_SUCCESSFUL="Upload completato, premere sul pulsante Unzip per continuare." +COM_JEDCHECKER_ERROR_UNABLE_TO_UPLOAD_FILE="Il caricamento non è riuscito, assicurarsi che la directory temporanea sia scrivibile." +COM_JEDCHECKER_UNZIP_SUCCESS="Decompressione completata, premi sul pulsante Controlla per continuare." +COM_JEDCHECKER_UNZIP_FAILED="Decompressione fallita" +COM_JEDCHECKER_RESULTS="Risultati JED Checker" +COM_JEDCHECKER_CONGRATS="Congratulazioni Se si utilizza questo componente, allora avete molto probabilmente sviluppato una estensione di Joomla Ora arriva il " duro " parte - requisiti ottenerlo elencato nella Directory Estensione di Joomla (JED) La JED ha rigorose che devono. essere rispettate prima di un'estensione sarà pubblicato nella directory. Tali requisiti possono essere trovati qui . Questo componente è stato costruito con l'obiettivo di semplificare lo sviluppo processo controllando automaticamente il codice per gli errori più comuni nelle estensioni \". +COM_JEDCHECKER_CODE_STANDARDS=" +COM_JEDCHECKER_CODE_STANDARDS="Tuttavia, questo non è l'unico obiettivo: puntiamo anche a controllare gli standard di codice, come quelli previsti dalla JPlatform . Ciò garantirebbe che gli sviluppatori di estensione Joomla siano consapevoli degli standard di codifica JPlatform e questo potrebbe aumentare la barra di qualità nella nostra comunità Joomla ancora più alta. Per questo abbiamo bisogno di te - dai un'occhiata alla pagina del progetto Github. Forcella il componente, aggiungi i tuoi controlli di codice e inviaci le tue richieste di pull!" COM_JEDCHECKER_HOW_TO_USE="Come controllare il proprio interno utilizzando il JED Checker:" COM_JEDCHECKER_STEP1="Carica il tuo / / file zip modulo plug componente utilizzando il modulo di upload di seguito" COM_JEDCHECKER_STEP2="Fare clic su Unzip" -COM_JEDCHECKER_STEP3="Fare clic su Verifica e rivedere i risultati" -COM_JEDCHECKER_WALL_OF_HONOR="Wall of Honour" +COM_JEDCHECKER_WALL_OF_HONOR="Il muro dell'onore" COM_JEDCHECKER_CONTRIBUTORS="Contributori" COM_JEDCHECKER_PEOPLE_THAT_HAVE_HELPED_WITH_THE_DEVELOPMENT="Le persone che hanno contribuito allo sviluppo di questo componente." COM_JEDCHECKER_HOW_TO_INTERPRET_RESULTS="Come interpretare i risultati" @@ -26,53 +26,64 @@ COM_JEDCHECKER_PHP_VERSION_INCOMPATIBLE="JED Checker è incompatibile con la ver COM_JEDCHECKER_ERROR_HTML_INDEX_NOT_FOUND="Missing index.html in questa directory." COM_JEDCHECKER_ERROR_JEXEC_NOT_FOUND="Il controllo di sicurezza jexec non è stata trovata in questo file." COM_JEDCHECKER_ERROR_XML_LICENSE_NOT_FOUND="No tag di licenza è stato trovato in questo file XML." -COM_JEDCHECKER_ERROR_XML_LICENSE_NOT_GPL="Si prega di verificare se la licenza in questo file è compatibile con la GPL". +COM_JEDCHECKER_ERROR_XML_LICENSE_NOT_GPL="Si prega di verificare se la licenza in questo file è compatibile con la GPL\". +COM_JEDCHECKER_RULE=" COM_JEDCHECKER_RULE="Regola" COM_JEDCHECKER_ERRORS="Errori" COM_JEDCHECKER_COMPAT_ISSUES="Problemi di compatibilità" COM_JEDCHECKER_IN_LINE="in linea" COM_JEDCHECKER_ERROR_ENCODING="Hai usato la codifica in questo file. Questo non è un errore, ma un editor JED dovrà rivedere questo file." COM_JEDCHECKER_RULE_ENCODING="Base64 o altro tipo di codifica nei file" -COM_JEDCHECKER_RULE_ENCODING_DESC="Come sviluppatori siamo pienamente consapevoli che la Base64 e funzioni simili hanno un posto valido estensioni (come URL reindirizza o la memorizzazione dei dati). Tuttavia, se si utilizzano quelli per rendere più difficile per gli utenti di leggere il codice o per mascherare ritroso il JED non accetterà la vostra presentazione messa in vendita (questo non è nello spirito della GPL comunque!). Un redattore rivedrà il codice e determinare se il modo in cui si utilizza il base64 corrisponde alle regole del JED. questo potrebbe rallentare la tua opinione tempo listing . Quindi la regola generale è - non fare cose di pesce ed evitare la codifica del codice, se possibile "! +COM_JEDCHECKER_RULE_ENCODING_DESC="Come sviluppatori siamo pienamente consapevoli che la Base64 e funzioni simili hanno un posto valido estensioni (come URL reindirizza o la memorizzazione dei dati). Tuttavia, se si utilizzano quelli per rendere più difficile per gli utenti di leggere il codice o per mascherare ritroso il JED non accetterà la vostra presentazione messa in vendita (questo non è nello spirito della GPL comunque!). Un redattore rivedrà il codice e determinare se il modo in cui si utilizza il base64 corrisponde alle regole del JED. questo potrebbe rallentare la tua opinione tempo listing . Quindi la regola generale è - non fare cose di pesce ed evitare la codifica del codice, se possibile \"! +COM_JEDCHECKER_ERROR_ERRORREPORTING=" COM_JEDCHECKER_ERROR_ERRORREPORTING="Hai usato error_reporting(0) in questo file." COM_JEDCHECKER_RULE_ERRORREPORTING="error_reporting(0) nei file" COM_JEDCHECKER_RULE_ERRORREPORTING_DESC="Uso di error_reporting(0) è sconsigliato come Joomla fornisce un'opzione error_reporting nella configurazione globale." COM_JEDCHECKER_LEAVE_A_REVIEW_JED="Se si utilizza questo componente, si prega di inviare un rating e una revisione al Joomla! Extensions Directory ." -COM_JEDCHECKER_INFO="Info" +COM_JEDCHECKER_INFO="Informazioni" COM_JEDCHECKER_INFO_XML="Informazioni su file XML di estensione" COM_JEDCHECKER_INFO_XML_DESC=". Il nome di installazione della vostra estensione deve abbinare il vostro nome quotazione sul JED Abbiamo la scansione dei file XML e trovare il valore del tag nome Informazioni utili per il ". Il nome del file e installare come " campi del modulo di presentazione jed" COM_JEDCHECKER_INFO_XML_NAME_XML="Il tag nome in questo file è: %s" COM_JEDCHECKER_INFO_XML_VERSION_XML="tag versione ha il valore: %s" COM_JEDCHECKER_INFO_XML_CREATIONDATE_XML="Il tag creationDate ha il valore: %s" COM_JEDCHECKER_RULE_PH1="intestazioni PHP mancanti GPL License Notice" -COM_JEDCHECKER_RULE_PH1_DESC="Un avviso è richiesto su ogni file PHP che indica che il file è licenziato GPL (o altra licenza accettato compatibile) Per ulteriori informazioni, si prega di clicca qui ". +COM_JEDCHECKER_RULE_PH1_DESC="Un avviso è richiesto su ogni file PHP che indica che il file è licenziato GPL (o altra licenza accettato compatibile) Per ulteriori informazioni, si prega di clicca qui \". +COM_JEDCHECKER_ERROR_GPL_NOT_FOUND=" COM_JEDCHECKER_ERROR_GPL_NOT_FOUND="GPL o licenza compatibile non è stata trovata" -COM_JEDCHECKER_PH1_LICENSE_FOUND="licenza GPL è stato trovato" -COM_JEDCHECKER_GPL_COMPATIBLE_LICENSE_WAS_FOUND="licenza compatibile GPL è stato trovato" -COM_JEDCHECKER_WARNING="Attenzione" +COM_JEDCHECKER_PH1_LICENSE_FOUND="Licenza GPL trovata" +COM_JEDCHECKER_GPL_COMPATIBLE_LICENSE_WAS_FOUND="Licenza compatibile GPL trovata" +COM_JEDCHECKER_WARNING="Avviso" COM_JEDCHECKER_OLD_RULE_X_INI_FILE_NOT_REMOVED="file 'ini' per '%s' regola non poteva essere rimosso, la rimozione manuale consigliato." COM_JEDCHECKER_OLD_RULE_X_PHP_FILE_NOT_REMOVED="file PHP per '%s' regola non poteva essere rimosso, la rimozione manuale consigliato." -COM_JEDCHECKER_OLD_RULE_X_PHP_FILE_REMOVED="file PHP Rimosso per '%s' regola". -COM_JEDCHECKER_OLD_RULE_X_INI_FILE_REMOVED="Rimosso file 'ini' per '%s' regola". +COM_JEDCHECKER_OLD_RULE_X_PHP_FILE_REMOVED="file PHP Rimosso per '%s' regola\". +COM_JEDCHECKER_OLD_RULE_X_INI_FILE_REMOVED=" +COM_JEDCHECKER_OLD_RULE_X_INI_FILE_REMOVED="Rimosso il file 'ini' per la regola '%s." COM_JEDCHECKER_RULE_FRAMEWORK="Framework di Joomla deprecato e pericoloso" COM_JEDCHECKER_RULE_FRAMEWORK_DESC="mette in guardia su