Changes between Version 4 and Version 5 of TranslationManagerPlugin


Ignore:
Timestamp:
Feb 9, 2015, 9:09:56 AM (9 years ago)
Author:
Franz
Comment:

Added sample configuration and permissions (as valid for version 0.1.1)

Legend:

Unmodified
Added
Removed
Modified
  • TranslationManagerPlugin

    v4 v5  
    55== Description
    66
    7 ''The project is currently in specification phase. It will start in Autumn 2014.''
     7''The plugin is currently in beta test phase.''
    88
    9 The goal of this Trac plugin is to manage translations of your source code in different languages.
     9The goal of this Trac plugin is to manage translations of your source code for different languages.
    1010
    1111The intention is to support different file formats such as:
    1212- Java [http://en.wikipedia.org/wiki/Java_resource_bundle resource bundle], ''currently the main goal''
    13 - [http://en.wikipedia.org/wiki/Gettext GNU Gettext] (Portable Objects - PO), used for Pyton, C
     13- [http://en.wikipedia.org/wiki/Gettext GNU Gettext] (Portable Objects - PO), used for Python, C
    1414
    1515=== Specification
     
    3333||= Permission =||= Used for =||
    3434|| TM_VIEW || only viewing translations ||
    35 || TM_EDIT || edit translations (creating patch files) ||
    36 || TM_COMMIT || commit translation to version control ||
     35|| TM_EDIT || edit translations and submitting to SVN ||
     36|| TM_IMPORT || import from file ||
     37|| TM_EXPORT || export to file ||
     38|| TM_ADMIN ('''missing''') || all above ||
    3739
    3840==== Needed configuration
    3941
    4042{{{#!ini
    41 [translation-mgr]
    42 file_dest = C:\Projekte\Trac\translations\WebApp,C:\Projekte\Trac\translations\Database
     43[translationmanager]
     44checkout_folder = /var/local/transman/checkout
     45default_comment = {function} von Trac Translationmanager
     46destination_descriptions = Webapp
     47destination_folders = /path/to/webapp
     48svn_password = svn_pwd
     49svn_repository = /SVN_Repo_Name
     50svn_url = http://svn_server_name_or_ip/svn
     51svn_username = svn_user
    4352}}}
    4453