123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- <?php
- /*
- FusionPBX
- Version: MPL 1.1
- The contents of this file are subject to the Mozilla Public License Version
- 1.1 (the "License"); you may not use this file except in compliance with
- the License. You may obtain a copy of the License at
- http://www.mozilla.org/MPL/
- Software distributed under the License is distributed on an "AS IS" basis,
- WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
- for the specific language governing rights and limitations under the
- License.
- The Original Code is FusionPBX
- The Initial Developer of the Original Code is
- Mark J Crane <[email protected]>
- Portions created by the Initial Developer are Copyright (C) 2008-2012
- the Initial Developer. All Rights Reserved.
- Contributor(s):
- Matthew Vale <[email protected]>
- */
- require_once "root.php";
- require_once "resources/require.php";
- //check permissions
- require_once "resources/check_auth.php";
- if (permission_exists('languages_view')) {
- //access granted
- }
- else {
- echo "access denied";
- exit;
- }
- if (count($_POST) > 0) {
- //set the variables
- $detect_all_languages = check_str($_POST["detect_all_languages"]);
- }
- //add multi-lingual support
- $language = new text;
- $text = $language->get();
- $language_totals = $language->language_totals();
- if($detect_all_languages){
- $language->detect_all_languages(true);
- messages::add("Detected all Languages");
- }
- //additional includes
- require_once "resources/header.php";
- require_once "resources/paging.php";
- function lineargradient($ra,$ga,$ba,$rz,$gz,$bz,$iterationnr) {
- $colorindex = array();
- for($iterationc=1; $iterationc<=$iterationnr; $iterationc++) {
- $iterationdiff = $iterationnr-$iterationc;
- $colorindex[] = sprintf('#%02x%02x%02x',
- (($ra*$iterationc)+($rz*$iterationdiff))/$iterationnr,
- (($ga*$iterationc)+($gz*$iterationdiff))/$iterationnr,
- (($ba*$iterationc)+($bz*$iterationdiff))/$iterationnr);
- }
- return $colorindex;
- }
- $colorindex = lineargradient(
- 0, 200, 0, // rgb of the start color
- 200, 0, 0, // rgb of the end color
- 101 // number of colors in your linear gradient
- );
- //show the content
- echo "<table width='100%' cellpadding='0' cellspacing='0' border='0'>\n";
- echo " <tr>\n";
- echo " <td width='50%' align='left' nowrap='nowrap'><b>".$text['title-languages']."</b></td>\n";
- echo " <td width='50%' align='right'> </td>\n";
- echo " </tr>\n";
- echo " <tr>\n";
- echo " <td align='left' colspan='2'>\n";
- echo " ".$text['description-languages']."<br /><br />\n";
- echo " </td>\n";
- echo " </tr>\n";
- echo "</table>\n";
- echo "<form method='post' name='frm' action=''>\n";
- echo " <button type='submit' id='organize_app' name='detect_all_languages' value='1'>Detect all languages</button>\n";
- echo "</form>\n";
- //table headers
- echo "<table class='tr_hover' width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
- echo "<tr>\n";
- echo "<th nowrap='' style='width:2em'>".$text['label-flag']."</th>\n";
- echo "<th nowrap='' style='width:4em'>".$text['label-culture_code']."</th>\n";
- echo "<th nowrap='' style='width:4em'>".$text['label-translations']."</th>\n";
- echo "<th nowrap='' style='width:4em'>".$text['label-menu_items']."</th>\n";
- echo "<th nowrap='' style='width:4em'>".$text['label-app_descriptions']."</th>\n";
- echo "<th nowrap='' style='width:4em'>".$text['label-overall']."</th>\n";
- echo "<th nowrap=''>".$text['label-name']."</th>\n";
- echo "</tr>\n";
- $c = 0;
- $warn_about_wrong_culture = false;
- foreach($language->languages as $lang_code){
- $complete['languages'] = sprintf("%.1f", $language_totals['languages'][$lang_code] / $language_totals['languages']['total'] * 100 );
- $complete['menu_items'] = sprintf("%.1f", $language_totals['menu_items'][$lang_code] / $language_totals['menu_items']['total'] * 100 );
- $complete['app_descriptions'] = sprintf("%.1f", $language_totals['app_descriptions'][$lang_code] / $language_totals['app_descriptions']['total'] * 100 );
- $complete['overall'] = sprintf("%.1f",
- ( $language_totals['languages'][$lang_code] + $language_totals['menu_items'][$lang_code] + $language_totals['app_descriptions'][$lang_code] )
- / ($language_totals['languages']['total'] + $language_totals['menu_items']['total'] + $language_totals['app_descriptions']['total'] )
- * 100
- );
- $tr_link = "href='languages_compare.php?target_language=$lang_code'";
- echo "<tr $tr_link>\n";
- echo "<td class='row_style".($c%2)."'>";
- echo "<img src='".PROJECT_PATH."/core/install/resources/images/flags/$lang_code.png' alt='$lang_code'/></td>";
- echo "<td class='row_style".($c%2)."'>$lang_code";
- if(strlen($lang_code) < 5){
- $warn_about_wrong_culture = true;
- echo "$nbsp;<sup>*1</sup>";
- }
- echo "</td>";
- echo "<td class='row_style".($c%2)."' style='color:".$colorindex[intval($complete['languages'])]."'>".$complete['languages']."%</td>";
- echo "<td class='row_style".($c%2)."' style='color:".$colorindex[intval($complete['menu_items'])]."'>".$complete['menu_items']."%</td>";
- echo "<td class='row_style".($c%2)."' style='color:".$colorindex[intval($complete['app_descriptions'])]."'>".$complete['app_descriptions']."%</td>";
- echo "<td class='row_style".($c%2)."' style='color:".$colorindex[intval($complete['overall'])]."'>".$complete['overall']."%</td>";
- echo "<td class='row_style".($c%2)."'>".$text["language-$lang_code"]."</td>";
- echo "</tr>\n";
- $c++;
- }
- //complete the content
- echo "</table>";
- if($warn_about_wrong_culture){
- $lang_code = $_SESSION['domain']['language']['code'];
- echo "<p><sup>*1</sup> ".$text['warning-incorrect_language_culture_code']."<a href='https://msdn.microsoft.com/$lang_code/library/ee825488%28v=cs.20%29.aspx'>https://msdn.microsoft.com/$lang_code/library/ee825488%28v=cs.20%29.aspx</a></p>";
- }
- //include the footer
- require_once "resources/footer.php";
- ?>
|