cancel
Showing results for 
Search instead for 
Did you mean: 

creating new personalized categories

pedro
Champ in-the-making
Champ in-the-making
Hi,

I'm learn about this excelent software. I ask for create a new personalized categorie for my business documents, as example: orders, employees live pages, and others. How I can do it?

Thanks

Pedro
11 REPLIES 11

pedro
Champ in-the-making
Champ in-the-making
Hi,

Where I place the ResourceBundle file like "ExampleModelResourceBundle" and which is their extension (.properties, not dot)

Thanks

Pedro

serv
Champ in-the-making
Champ in-the-making
Hi !

I've found a solution.
You have to declare your ExampleResourceBundle as said in http://wiki.alfresco.com/wiki/Data_Dictionary_Guide#Step_by_Step_Model_Definition :
<bean id="extension.dictionaryBootstrap" …
        …
        <property name="labels">
            <list>
                <value>ExampleModelResourceBundle</value>
            </list>
        </property>
        …
    </bean>

You have to place this code in the same file you have already registered your model.

Now, you have to create in the alfresco/extension directory 2 files. One named ExampleResourceBundle.properties with the default messages (in english) and then another one named ExampleResourceBundle_fr_FR.properties if you have a locale_fr_FR.

Alfresco would choose the right file in agreement with the current locale.