Changeset 2253

Show
Ignore:
Timestamp:
2008-07-21 19:19:46 (6 months ago)
Author:
mosipov
Message:

ASSIGNED - #2361: Provide interface for locale resolution

Location:
FCKeditor.Java/trunk
Files:
5 modified

Legend:

Unmodified
Added
Removed
  • FCKeditor.Java/trunk/java-core/src/main/resources/META-INF/FCKeditor.tld

    r2227 r2253  
    1818                        Creates a FCKeditor instance with the given parameters. Any 
    1919                        parameter except instanceName which is empty or contains 
    20                         whitespaces only will be ignored. 
     20                        whitespace only will be ignored. 
    2121                </description> 
    2222                <display-name>editor</display-name> 
     
    104104                <description> 
    105105                        Displays session-dependent and compatibility-related 
    106                         information. This tag is intended for developers only. 
    107                         Response messages cannot be localized, they are English 
    108                         only. 
     106                        information. The messages can be localized. 
    109107                </description> 
    110108                <display-name>check</display-name> 
     
    115113                        <description> 
    116114                                Provide the feature name you want to check. Valid 
    117                                 features are [FileUpload, FileBrowsing, 
    118                                 CompatibleBrowser] 
     115                                features are [FileUpload, FileBrowsing, CompatibleBrowser, 
     116                                FolderCreation] 
    119117                        </description> 
    120118                        <name>command</name> 
  • FCKeditor.Java/trunk/src/site/apt/ext_overview.apt

    r2250 r2253  
    2424Overview 
    2525 
    26   dddd 
     26  The Java integration provides you several ways to extend and adapt itself 
     27  to your needs. 
     28 
     29  * <<UserAction>>: Gives you full control over any action the user can do in the 
     30    File Browser. 
     31 
     32  * <<UserPathBuilder>>: Enables you to construct a user-dependent file path. 
     33 
     34  * <<Internationalization>>: You can localize any message returned by tags and 
     35    the connector. 
     36 
     37  [] 
     38  Please read the extending parts carefully if you intend to deploy the FCKeditor 
     39  in a particular system! 
  • FCKeditor.Java/trunk/src/site/apt/i18n.apt

    r2248 r2253  
    2424Internationalization 
    2525 
    26   dddd 
     26   
  • FCKeditor.Java/trunk/src/site/apt/properties.apt

    r2213 r2253  
    141141|                                                               |                                                                                       | implementation                        |                                                                                                       | 
    142142*-------------------------------+-------------------------------------------+---------------------------+---------------------------------------------------+ 
     143 
     144* Messages 
     145 
     146  sss 
     147 
     148*-----------------------------------+-------------------------------------------+---------------+---------------------------------------------------+ 
     149|| Property                             || Default                                                                      || Valid Values || Description                                     || 
     150*-----------------------------------+-------------------------------------------+---------------+---------------------------------------------------+ 
     151| message.compatible_browser.yes        | Your browser is fully compatible                      | any string    | Indicates that the browser is fully compatible.       | 
     152*-----------------------------------+-------------------------------------------+---------------+---------------------------------------------------+ 
     153| message.compatible_browser.no         | Your browser is not compatible                        | any string    | Indicates that the browser is not compatible.         | 
     154*-----------------------------------+-------------------------------------------+---------------+---------------------------------------------------+ 
     155| message.connector.fileUpload.         | You are authorized to upload files!           | any string    | Responds the user can upload files.                           | 
     156| enabled                                                       |                                                                                       |                               |                                                                                                       | 
     157*-----------------------------------+-------------------------------------------+---------------+---------------------------------------------------+ 
     158| message.connector.fileUpload.         | You are not authorized to upload files!       | any string    | Responds the user cannot upload files.                        | 
     159| disabled                                                      |                                                                                       |                               |                                                                                                       | 
     160*-----------------------------------+-------------------------------------------+---------------+---------------------------------------------------+ 
     161| message.connector.                            | You are authorized to browse files!           | any string    | Responds the user can browse files.                           | 
     162| fileBrowsing.enabled                          |                                                                                       |                               |                                                                                                       | 
     163*-----------------------------------+-------------------------------------------+---------------+---------------------------------------------------+ 
     164| message.connector.                            | You are not authorized to browse files!       | any string    | Responds the user cannot browse files.                        | 
     165| fileBrowsing.disabled                         |                                                                                       |                               |                                                                                                       | 
     166*-----------------------------------+-------------------------------------------+---------------+---------------------------------------------------+ 
     167| message.connector.                            | Invalid command specified                                     | any string    | The provided command was invalid/does not exist.      | 
     168| invalid_command_specified                     |                                                                                       |                               |                                                                                                       | 
     169*-----------------------------------+-------------------------------------------+---------------+---------------------------------------------------+ 
     170| message.connector.                            | Invalid resource type specified                       | any string    | The provided type was invalid/does not exist.         | 
     171| invalid_type_specified                        |                                                                                       |                               |                                                                                                       | 
     172*-----------------------------------+-------------------------------------------+---------------+---------------------------------------------------+ 
     173| message.connector.                            | Invalid current folder specified                      | any string    | The provided current folder was invalid/does          | 
     174| invalid_current_folder_speficied      |                                                                                       |                               | not exist.                                                                            | 
     175*-----------------------------------+-------------------------------------------+---------------+---------------------------------------------------+ 
  • FCKeditor.Java/trunk/src/site/site.xml

    r2248 r2253  
    3434                </menu> 
    3535                <menu name="Extending the Library"> 
    36                         <item name="Overview" href="ext_overview.html"/> 
     36                        <item name="Overview" href="/ext_overview.html"/> 
    3737                        <item name="UserAction" /> 
    3838                        <item name="UserPathBuilder" />