# PHP Console Log. # Copyright (C) 2019 Marcus Viar # This file is distributed under the same license as the PACKAGE package. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PHP Console Log 1.0.0\n" "Report-Msgid-Bugs-To: marcus@marcusviar.com\n" "POT-Creation-Date: 2019-07-06 18:16-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" #: includes/php-console-log-menu.php:20 includes/php-console-log-menu.php:21 msgid "PHP Console Log Help" msgstr "" #: includes/php-console-log-menu.php:40 msgid "Help" msgstr "" #: includes/php-console-log-scripts.php:65 msgid "File" msgstr "" #: includes/php-console-log-scripts.php:66 msgid "Line" msgstr "" #: includes/php-console-log-scripts.php:67 msgid "Args" msgstr "" #: pages/php-console-log-page-help.php:39 msgid "None." msgstr "" #: pages/php-console-log-page-help.php:39 msgid "loads first." msgstr "" #: pages/php-console-log-page-help.php:77 msgid "Important:" msgstr "" #: pages/php-console-log-page-help.php:78 msgid "" "For security and performance on a production site, make sure to deactivate " "this plugin and remove all calls to" msgstr "" #: pages/php-console-log-page-help.php:78 #: pages/php-console-log-page-help.php:85 #: pages/php-console-log-page-help.php:207 #: pages/php-console-log-page-help.php:211 msgid "My String or Array" msgstr "" #: pages/php-console-log-page-help.php:78 msgid "" "from your PHP code before going live to avoid exposing your PHP variables to " "the public." msgstr "" #: pages/php-console-log-page-help.php:80 msgid "Plugins That Load Before PHP Console Log" msgstr "" #: pages/php-console-log-page-help.php:81 msgid "" "PHP Console Log's functions are not accessible to any plugins that load " "before PHP Console Log is loaded. Therefore, Any plugins listed here will " "not be able to use PHP Console Log features." msgstr "" #: pages/php-console-log-page-help.php:84 msgid "Examples:" msgstr "" #: pages/php-console-log-page-help.php:85 msgid "Place the" msgstr "" #: pages/php-console-log-page-help.php:85 msgid "" "function anywhere in your WordPress plugin PHP code. The value(s) " "you pass into" msgstr "" #: pages/php-console-log-page-help.php:85 msgid "will be logged to the web console in your browser." msgstr "" #: pages/php-console-log-page-help.php:88 msgid "Pass in a string:" msgstr "" #: pages/php-console-log-page-help.php:98 msgid "Pass in an array:" msgstr "" #: pages/php-console-log-page-help.php:111 msgid "Pass in an associative array:" msgstr "" #: pages/php-console-log-page-help.php:124 msgid "" "Pass in an unlimited number of arguments nested to an unlimited depth (multi-" "dimensional array):" msgstr "" #: pages/php-console-log-page-help.php:150 msgid "Opening Web Console in your browser:" msgstr "" #: pages/php-console-log-page-help.php:156 msgid "" "Press Command + Option + J (Mac) or Control + Shift + J (Windows, Linux, " "Chrome OS) to jump straight into the Console panel." msgstr "" #: pages/php-console-log-page-help.php:158 #: pages/php-console-log-page-help.php:167 #: pages/php-console-log-page-help.php:175 msgid "source" msgstr "" #: pages/php-console-log-page-help.php:163 msgid "" "Select Web Console from the Web Developer submenu in the Firefox Menu (or " "Tools menu if you display the menu bar or are on Mac OS X)." msgstr "" #: pages/php-console-log-page-help.php:165 msgid "OR" msgstr "" #: pages/php-console-log-page-help.php:166 msgid "" "Press the Ctrl + Shift + K (Command + Option + K on OS X) keyboard shortcut." msgstr "" #: pages/php-console-log-page-help.php:172 msgid "Select Develop menu in the menu bar, choose Show JavaScript Console." msgstr "" #: pages/php-console-log-page-help.php:174 msgid "" "If you dont see the Develop menu in the menu bar, choose Safari > " "Preferences, click Advanced, then select \"Show Develop menu in menu bar\"." msgstr "" #: pages/php-console-log-page-help.php:180 msgid "Troubleshooting:" msgstr "" #: pages/php-console-log-page-help.php:181 msgid "" "The most common reasons that cause PHP Console Log to fail when logging your " "information to the web console are:" msgstr "" #: pages/php-console-log-page-help.php:186 #: pages/php-console-log-page-help.php:196 #: pages/php-console-log-page-help.php:206 #: pages/php-console-log-page-help.php:216 msgid "Cause:" msgstr "" #: pages/php-console-log-page-help.php:187 msgid "The PHP Console log plugin is not activated." msgstr "" #: pages/php-console-log-page-help.php:190 #: pages/php-console-log-page-help.php:200 #: pages/php-console-log-page-help.php:210 #: pages/php-console-log-page-help.php:220 msgid "Solution:" msgstr "" #: pages/php-console-log-page-help.php:191 msgid "Activate the PHP Console Log Plugin." msgstr "" #: pages/php-console-log-page-help.php:197 msgid "" "Another plugin has changed the order in which your plugins load. Making the " "PHP Console Log functions not available yet." msgstr "" #: pages/php-console-log-page-help.php:201 msgid "" "PHP Console Log updates the order in which plugins are loaded any time a " "plugin is activated or deactivated. However, it is still possible for other " "plugins to change the order in which plugins load afterwards. Deactivate any " "plugins that change the order in which your plugins load." msgstr "" #: pages/php-console-log-page-help.php:207 msgid "was called inside a block of code that was not run." msgstr "" #: pages/php-console-log-page-help.php:211 msgid "Make sure the function you called" msgstr "" #: pages/php-console-log-page-help.php:211 msgid "in is run via an action or filter hook such as:" msgstr "" #: pages/php-console-log-page-help.php:211 msgid "Or call" msgstr "" #: pages/php-console-log-page-help.php:211 msgid "outside of any other functions in a file that you know is run." msgstr "" #: pages/php-console-log-page-help.php:217 msgid "PHP throws errors." msgstr "" #: pages/php-console-log-page-help.php:217 msgid "Side Note:" msgstr "" #: pages/php-console-log-page-help.php:217 msgid "Make sure you are using" msgstr "" #: pages/php-console-log-page-help.php:217 msgid "in your wp-config.php file so you can see PHP errors." msgstr "" #: pages/php-console-log-page-help.php:221 msgid "Fix the error that PHP is showing you. Then try again." msgstr ""