Ignore:
Timestamp:
Jan 17, 2016, 12:10:35 PM (8 years ago)
Author:
chronos
Message:
  • Renamed: .htaccess file is different for each installation so provide just example in .htacces.sample file.
  • Renamed: File global.php and system.php to first uppercase letter for naming unification.
  • Modified: More translatable strings.
  • Added: Translation group items translatable.
  • Renamed: admin directory is not Application directory where all application related files should be placed.

This is different to includes directory where just general libraries should be placed.
Version.php file should be located in Application directory.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Export/Page.php

    r847 r848  
    481481    //    array('Name' => 'DBCFileName', 'Title' => 'DBC soubor'),
    482482    //    array('Name' => 'LuaFileName', 'Title' => 'Lua soubor'),
    483         array('Name' => '', 'Title' => T('Items of tranlation')),
     483        array('Name' => '', 'Title' => T('Items of translation')),
    484484    );
    485485    $Order = GetOrderTableHeader($TableColumns, 'Name');
     
    511511      $Columns = '';
    512512      foreach($TranslationTree[$Group['Id']]['Items'] as $Column) {
    513         if ($Column['Visible'])  $Columns .= CheckBox('item'.$Column['Id'], !isset($GroupItems[$Column['Id']]), '', 'CheckBox', !$Editable).' '.$Column['Name'].' <br />';
     513        if ($Column['Visible']) $Columns .= CheckBox('item'.$Column['Id'],
     514          !isset($GroupItems[$Column['Id']]), '', 'CheckBox', !$Editable).' '.T($Column['Name']).' <br/>';
    514515      }
    515516      $Checked = $Group['ExportGroupId'] != '';
Note: See TracChangeset for help on using the changeset viewer.