Index: openacs-4/packages/acs-core-docs/www/i18n-introduction.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/i18n-introduction.adp,v diff -u -N -r1.1.2.9 -r1.1.2.10 --- openacs-4/packages/acs-core-docs/www/i18n-introduction.adp 21 Apr 2017 15:07:52 -0000 1.1.2.9 +++ openacs-4/packages/acs-core-docs/www/i18n-introduction.adp 19 May 2017 16:49:42 -0000 1.1.2.10 @@ -79,8 +79,7 @@ #package_key.message_key#

The advantage of the short syntax is that it's short. It's as simple as inserting the value of a variable. Example: - -<span>#</span>forum.title# +#forum.title#

  • The verbose: @@ -156,8 +155,8 @@ are). In those cases, follow these steps:

    Then, depending on how we retrieve the value, here's what we @@ -244,8 +242,7 @@ parameter::get -localize -parameter departments_pretty_nameAbteilung -parameter::get -parameter departments_pretty_name -<span>#</span>departments_pretty_name# +parameter::get -parameter departments_pretty_name#departments_pretty_name#

    The value in the rightmost column in the table above is the Index: openacs-4/packages/acs-core-docs/www/i18n-introduction.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/i18n-introduction.html,v diff -u -N -r1.18.2.9 -r1.18.2.10 --- openacs-4/packages/acs-core-docs/www/i18n-introduction.html 21 Apr 2017 15:07:52 -0000 1.18.2.9 +++ openacs-4/packages/acs-core-docs/www/i18n-introduction.html 19 May 2017 16:49:42 -0000 1.18.2.10 @@ -54,7 +54,7 @@

    The advantage of the short syntax is that it's short. It's as simple as inserting the value of a variable. Example: - <span>#</span>forum.title# + #forum.title#

  • The verbose: <trn key="package_key.message_key" @@ -127,7 +127,7 @@

    @@ -154,7 +154,7 @@ ad_return_complaint 1 [_ dotlrn.class_may_not_be_deleted $msg_subst_list]

    - When we were done going through the tcl files we ran the following + When we were done going through the Tcl files we ran the following commands to check for mistakes:

     # Message tags should usually not be in curly braces since then the message lookup may not be
    @@ -165,7 +165,7 @@
     # Check if you've forgotten space between default key and text in message tags (should return nothing)
     find -iname '*.tcl'|xargs egrep -i '<#_[^ ]'
     
    -# Review the list of tcl files with no message lookups
    +# Review the list of Tcl files with no message lookups
     for tcl_file in $(find -iname '*.tcl'); do egrep -L '(<#|\[_)' $tcl_file; done
     

    When you feel ready you may vist your package in the @@ -197,9 +197,9 @@

    Here are a couple of examples. Say we have the following two parameters, taken directly from the dotlrn package. -

    Parameter NameParameter Value
    class_instance_pages_csv<span>#</span>dotlrn.class_page_home_title#,Simple 2-Column;<span>#</span>dotlrn.class_page_calendar_title#,Simple 1-Column;<span>#</span>dotlrn.class_page_file_storage_title#,Simple 1-Column
    departments_pretty_name<span>#</span>departments_pretty_name#

    +

    Parameter NameParameter Value
    class_instance_pages_csv#dotlrn.class_page_home_title#,Simple 2-Column;#dotlrn.class_page_calendar_title#,Simple 1-Column;#dotlrn.class_page_file_storage_title#,Simple 1-Column
    departments_pretty_name#departments_pretty_name#

    Then, depending on how we retrieve the value, here's what we get: -

    Command used to retrieve ValueRetrieved Value
    parameter::get -localize -parameter class_instances_pages_csvKurs Startseite,Simple 2-Column;Kalender,Simple 1-Column;Dateien,Simple 1-Column
    parameter::get -localize -parameter departments_pretty_nameAbteilung
    parameter::get -parameter departments_pretty_name<span>#</span>departments_pretty_name#

    +

    Command used to retrieve ValueRetrieved Value
    parameter::get -localize -parameter class_instances_pages_csvKurs Startseite,Simple 2-Column;Kalender,Simple 1-Column;Dateien,Simple 1-Column
    parameter::get -localize -parameter departments_pretty_nameAbteilung
    parameter::get -parameter departments_pretty_name#departments_pretty_name#

    The value in the rightmost column in the table above is the value returned by an invocation of parameter::get. Note that for localization to happen you must use the -localize flag.