diff options
| author | Max Kremmel <xing@synapse.plus.com> | 2007-01-16 11:40:38 +0000 |
|---|---|---|
| committer | Max Kremmel <xing@synapse.plus.com> | 2007-01-16 11:40:38 +0000 |
| commit | a0c1101f13a16af2361d067f481b11849a381430 (patch) | |
| tree | 71c6f0505eed0ffed6d66c2640399ab5451e2cab /templates/import_languages.tpl | |
| parent | b87bf4080877af8b004c9af763ad8c75aa937810 (diff) | |
| download | languages-a0c1101f13a16af2361d067f481b11849a381430.tar.gz languages-a0c1101f13a16af2361d067f481b11849a381430.tar.bz2 languages-a0c1101f13a16af2361d067f481b11849a381430.zip | |
prefix languages kernel_config settings with i18n_ and clean up some language exort related issues - see SchemaChangelog for details
Diffstat (limited to 'templates/import_languages.tpl')
| -rw-r--r-- | templates/import_languages.tpl | 24 |
1 files changed, 18 insertions, 6 deletions
diff --git a/templates/import_languages.tpl b/templates/import_languages.tpl index 82d5b07..b98d145 100644 --- a/templates/import_languages.tpl +++ b/templates/import_languages.tpl @@ -52,7 +52,7 @@ <br/> <label><input type="radio" name="overwrite" value="y" /> {tr}Overwrite changes in the local database{/tr}</label> - <br/> + <br/> <label><input type="radio" name="overwrite" value="r" checked="checked" /> {tr}Manually resolve conflicts between database and import file{/tr}</label> {/forminput} @@ -78,20 +78,32 @@ {/forminput} </div> + {$gBitSystem->isFeatureActive( 'i18n_track_translation_usage' )} + <div class="row"> + {formlabel label="Export All Translations" for="all_trans"} + {forminput} + <input type="checkbox" name="all_trans" id="all_trans" checked="checked" value="y" /> + {formhelp note="This will export strings for all versions of bitweaver. It is generally a good idea to export these."} + {/forminput} + </div> + {else} + <input type="hidden" name="all_trans" value="y" /> + {/if} + <div class="row"> - {formlabel label="Export All Translations" for="all_trans"} + {formlabel label="Include Empty" for="include_empty"} {forminput} - <input type="checkbox" name="all_trans" id="all_trans" {if $allTrans}checked="checked"{/if} value="y" /> - {formhelp note="This will export all strings, even ones that are not in use. if you have not modified these strings, there isn't really much point in including them."} + <input type="checkbox" name="include_empty" id="include_empty" value="y" /> + {formhelp note="This will include empty translation strings as well. This is generally not needed."} {/forminput} </div> <div class="row"> {formlabel label="Destination" for="is_disabled"} {forminput} - <input type="radio" name="target" value="temp" />Save to temporary file<br/> + <label><input type="radio" name="target" value="temp" /> {tr}Save to temporary file{/tr}</label><br /> {formhelp note="This will save the file to a temporary location on the server."} - <input type="radio" name="target" value="download" checked="checked" />Download translation file<br/> + <label><input type="radio" name="target" value="download" checked="checked" /> {tr}Download translation file{/tr}</label><br/> {formhelp note="Save this to languages/lang/(lang_code)/language.php where lang_code is the language your are downloading."} {/forminput} </div> |
