mirror of
https://git.code.sf.net/p/projectlibre/code
synced 2024-11-01 03:21:46 +01:00
New mac package for OS X 10.6, 10.7, 10.8 and 10.9. minor fixes.
language update
This commit is contained in:
parent
f7b485c9cc
commit
a4b0d2a079
29 changed files with 257 additions and 85 deletions
|
@ -26,25 +26,28 @@ macapp=ProjectLibre.app
|
|||
wixbuild=projectlibre_wix
|
||||
|
||||
|
||||
version_name=1.5.7
|
||||
version=1.5.7
|
||||
version_name=1.5.8
|
||||
version=1.5.8
|
||||
|
||||
#windows
|
||||
numericVersion3=1.5.17
|
||||
numericVersion3=1.5.18
|
||||
|
||||
#mac
|
||||
numericVersion4=1.5.17.0
|
||||
numericVersion4=1.5.18.0
|
||||
|
||||
#Linux
|
||||
rpm_version=1.5.7
|
||||
rpm_version=1.5.8
|
||||
rpm_revision=1
|
||||
deb_version=1.5.7
|
||||
deb_version=1.5.8
|
||||
deb_revision=1
|
||||
|
||||
#rpm_builds=redhat,suse,mageia
|
||||
rpm_builds=mageia
|
||||
|
||||
|
||||
jvm_name=jdk1.7.0_45.jdk
|
||||
#jvm_name=jdk1.8.0.jdk
|
||||
|
||||
#version_name=1.5_beta5
|
||||
#version=1.5_beta5
|
||||
##windows
|
||||
|
|
|
@ -395,21 +395,116 @@
|
|||
<target name="deb" depends="deb-binary,deb-create"/>
|
||||
<!-- ant rpm-package then rpmbuild -bb - -buildroot /root/rpm/INSTALL /root/rpm/SPECS/openproj.spec can be also used -->
|
||||
|
||||
<!--target name="mac">
|
||||
<property environment="env"/>
|
||||
<taskdef name="bundleapp" classname="com.oracle.appbundler.AppBundlerTask" classpath="ant-lib/appbundler-1.0.jar"/>
|
||||
<fileset dir="${dist}" id="appbundle.class.path">
|
||||
<include name="projectlibre.jar"/>
|
||||
<include name="lib/*.jar"/>
|
||||
</fileset>
|
||||
<bundleapp outputdirectory="${packages}"
|
||||
name="ProjectLibre"
|
||||
displayname="ProjectLibre"
|
||||
identifier="com.projectlibre.pm.Desktop"
|
||||
applicationCategory="public.app-category.productivity"
|
||||
shortversion="${numericVersion3}"
|
||||
copyright="2013 ProjectLibre Inc."
|
||||
icon="${resources}/mac/projectlibre.icns"
|
||||
signature="plib"
|
||||
mainclassname="com/projity/main/Main">
|
||||
<runtime dir="/Library/Java/JavaVirtualMachines/${jvm_name}/Contents/Home" />
|
||||
<option value="-Xms128m"/>
|
||||
<option value="-Xmx768m"/>
|
||||
<classpath refid="appbundle.class.path"/>
|
||||
</bundleapp>
|
||||
</target-->
|
||||
|
||||
<target name="mac-embeded" depends="dist">
|
||||
<mkdir dir="${packages}/mac-embeded/${macapp}" />
|
||||
<mkdir dir="${packages}/mac-embeded/${macapp}/Contents" />
|
||||
<mkdir dir="${packages}/mac-embeded/${macapp}/Contents/MacOS" />
|
||||
<mkdir dir="${packages}/mac-embeded/${macapp}/Contents/Resources" />
|
||||
<mkdir dir="${packages}/mac-embeded/${macapp}/Contents/Java" />
|
||||
|
||||
<target name="mac" depends="dist">
|
||||
<mkdir dir="${packages}/${macapp}" />
|
||||
<mkdir dir="${packages}/${macapp}/Contents" />
|
||||
<mkdir dir="${packages}/${macapp}/Contents/MacOS" />
|
||||
<mkdir dir="${packages}/${macapp}/Contents/Resources" />
|
||||
<mkdir dir="${packages}/${macapp}/Contents/Resources/Java" />
|
||||
|
||||
<copy todir="${packages}/${macapp}/Contents" file="${resources}/mac/Info.plist" >
|
||||
<copy todir="${packages}/mac-embeded/${macapp}/Contents" file="${resources}/mac/new/Info.plist" >
|
||||
<filterset>
|
||||
<filter token="version" value="${numericVersion3}"/>
|
||||
</filterset>
|
||||
</copy>
|
||||
<copy todir="${packages}/${macapp}/Contents" file="${resources}/mac/PkgInfo" />
|
||||
<copy todir="${packages}/${macapp}/Contents/Resources" >
|
||||
<copy todir="${packages}/mac-embeded/${macapp}/Contents" file="${resources}/mac/new/PkgInfo" />
|
||||
<copy todir="${packages}/mac-embeded/${macapp}/Contents/Resources" >
|
||||
<fileset dir="${resources}/mac">
|
||||
<include name="projectlibre.icns"/>
|
||||
</fileset>
|
||||
</copy>
|
||||
<copy todir="${packages}/mac-embeded/${macapp}/Contents/Java" >
|
||||
<fileset dir=".">
|
||||
<include name="license/**"/>
|
||||
</fileset>
|
||||
<fileset dir="${dist}">
|
||||
<include name="projectlibre.jar"/>
|
||||
<include name="lib/*.jar"/>
|
||||
</fileset>
|
||||
</copy>
|
||||
<!-- to preserve permissions -->
|
||||
<exec executable="cp">
|
||||
<arg value="${resources}/mac/JavaAppLauncher"/>
|
||||
<arg value="${packages}/mac-embeded/${macapp}/Contents/MacOS"/>
|
||||
</exec>
|
||||
|
||||
|
||||
<mkdir dir="${packages}/mac-embeded/${macapp}/Contents/Plugins" />
|
||||
<mkdir dir="${packages}/mac-embeded/${macapp}/Contents/Plugins/${jvm_name}" />
|
||||
<mkdir dir="${packages}/mac-embeded/${macapp}/Contents/Plugins/${jvm_name}/Contents" />
|
||||
<mkdir dir="${packages}/mac-embeded/${macapp}/Contents/Plugins/${jvm_name}/Contents/Home" />
|
||||
<exec executable="cp">
|
||||
<arg value="-a"/>
|
||||
<arg value="/Library/Java/JavaVirtualMachines/${jvm_name}/Contents/Info.plist"/>
|
||||
<arg value="${packages}/mac-embeded/${macapp}/Contents/Plugins/${jvm_name}/Contents/"/>
|
||||
</exec>
|
||||
<exec executable="cp">
|
||||
<arg value="-a"/>
|
||||
<arg value="/Library/Java/JavaVirtualMachines/${jvm_name}/Contents/Home/jre"/>
|
||||
<arg value="${packages}/mac-embeded/${macapp}/Contents/Plugins/${jvm_name}/Contents/Home/"/>
|
||||
</exec>
|
||||
<exec executable="rm">
|
||||
<arg value="-rf"/>
|
||||
<arg value="${packages}/mac-embeded/${macapp}/Contents/Plugins/${jvm_name}/Contents/Home/jre/bin"/>
|
||||
<arg value="${packages}/mac-embeded/${macapp}/Contents/Plugins/${jvm_name}/Contents/Home/jre/lib/applet"/>
|
||||
<arg value="${packages}/mac-embeded/${macapp}/Contents/Plugins/${jvm_name}/Contents/Home/jre/lib/deploy"/>
|
||||
<arg value="${packages}/mac-embeded/${macapp}/Contents/Plugins/${jvm_name}/Contents/Home/jre/lib/deploy.jar"/>
|
||||
<arg value="${packages}/mac-embeded/${macapp}/Contents/Plugins/${jvm_name}/Contents/Home/jre/lib/javaws.jar"/>
|
||||
<arg value="${packages}/mac-embeded/${macapp}/Contents/Plugins/${jvm_name}/Contents/Home/jre/lib/libdeploy.dylib"/>
|
||||
<arg value="${packages}/mac-embeded/${macapp}/Contents/Plugins/${jvm_name}/Contents/Home/jre/lib/libnpjp2.dylib"/>
|
||||
<arg value="${packages}/mac-embeded/${macapp}/Contents/Plugins/${jvm_name}/Contents/Home/jre/lib/plugin.jar"/>
|
||||
<arg value="${packages}/mac-embeded/${macapp}/Contents/Plugins/${jvm_name}/Contents/Home/jre/lib/security/javaws.policy"/>
|
||||
</exec>
|
||||
|
||||
|
||||
<exec executable="chmod"> <!-- remove group write permissions -->
|
||||
<arg value="-R"/>
|
||||
<arg value="g-w"/>
|
||||
<arg value="${packages}/mac-embeded/${macapp}"/>
|
||||
</exec>
|
||||
|
||||
|
||||
</target>
|
||||
|
||||
|
||||
<target name="mac-old" depends="dist">
|
||||
<mkdir dir="${packages}/mac-old/${macapp}" />
|
||||
<mkdir dir="${packages}/mac-old/${macapp}/Contents" />
|
||||
<mkdir dir="${packages}/mac-old/${macapp}/Contents/MacOS" />
|
||||
<mkdir dir="${packages}/mac-old/${macapp}/Contents/Resources" />
|
||||
<mkdir dir="${packages}/mac-old/${macapp}/Contents/Resources/Java" />
|
||||
|
||||
<copy todir="${packages}/mac-old/${macapp}/Contents" file="${resources}/mac/old/Info.plist" >
|
||||
<filterset>
|
||||
<filter token="version" value="${numericVersion3}"/>
|
||||
</filterset>
|
||||
</copy>
|
||||
<copy todir="${packages}/mac-old/${macapp}/Contents" file="${resources}/mac/PkgInfo" />
|
||||
<copy todir="${packages}/mac-old/${macapp}/Contents/Resources" >
|
||||
<fileset dir="${resources}/mac">
|
||||
<include name="projectlibre.icns"/>
|
||||
</fileset>
|
||||
|
@ -417,7 +512,7 @@
|
|||
<include name="license/**"/>
|
||||
</fileset>
|
||||
</copy>
|
||||
<copy todir="${packages}/${macapp}/Contents/Resources/Java" >
|
||||
<copy todir="${packages}/mac-old/${macapp}/Contents/Resources/Java" >
|
||||
<fileset dir="${dist}">
|
||||
<include name="projectlibre.jar"/>
|
||||
<include name="lib/*.jar"/>
|
||||
|
@ -426,7 +521,7 @@
|
|||
<!-- to preserve permissions -->
|
||||
<exec executable="cp">
|
||||
<arg value="${resources}/mac/JavaApplicationStub"/>
|
||||
<arg value="${packages}/${macapp}/Contents/MacOS"/>
|
||||
<arg value="${packages}/mac-old/${macapp}/Contents/MacOS"/>
|
||||
</exec>
|
||||
<!--exec executable="ln">
|
||||
<arg value="-s"/>
|
||||
|
@ -438,7 +533,7 @@
|
|||
<exec executable="chmod"> <!-- remove group write permissions -->
|
||||
<arg value="-R"/>
|
||||
<arg value="g-w"/>
|
||||
<arg value="${packages}/${macapp}"/>
|
||||
<arg value="${packages}/mac-old/${macapp}"/>
|
||||
</exec>
|
||||
|
||||
|
||||
|
@ -487,7 +582,7 @@
|
|||
|
||||
</target>
|
||||
|
||||
<target name="mac-tar" depends="mac">
|
||||
<target name="mac-tar" depends="mac-old">
|
||||
<exec executable="tar"> <!-- to preserve permissions -->
|
||||
<arg value="--numeric-owner"/>
|
||||
<arg value="--owner=0"/>
|
||||
|
@ -542,7 +637,7 @@
|
|||
|
||||
|
||||
|
||||
<target name="all" depends="dir,tar,zip,mac,mac-new,wix,readme,rpm,deb">
|
||||
<target name="all" depends="dir,tar,zip,mac-embeded,mac-new,mac-old,wix,readme,rpm,deb">
|
||||
</target>
|
||||
|
||||
|
||||
|
|
89
openproj_build/resources/mac/embeded/Info.plist
Normal file
89
openproj_build/resources/mac/embeded/Info.plist
Normal file
|
@ -0,0 +1,89 @@
|
|||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleDocumentTypes</key>
|
||||
<array>
|
||||
<dict>
|
||||
<key>CFBundleTypeExtensions</key>
|
||||
<array>
|
||||
<string>pod</string>
|
||||
</array>
|
||||
<key>CFBundleTypeIconFile</key>
|
||||
<string>projectlibre.icns</string>
|
||||
<key>CFBundleTypeName</key>
|
||||
<string>ProjectLibre</string>
|
||||
<key>CFBundleTypeOSTypes</key>
|
||||
<array>
|
||||
<string>****</string>
|
||||
</array>
|
||||
<key>CFBundleTypeRole</key>
|
||||
<string>Editor</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>CFBundleTypeExtensions</key>
|
||||
<array>
|
||||
<string>mpp</string>
|
||||
</array>
|
||||
<key>CFBundleTypeName</key>
|
||||
<string>Microsoft Project</string>
|
||||
<key>CFBundleTypeOSTypes</key>
|
||||
<array>
|
||||
<string>****</string>
|
||||
</array>
|
||||
<key>CFBundleTypeRole</key>
|
||||
<string>Editor</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>CFBundleTypeExtensions</key>
|
||||
<array>
|
||||
<string>xml</string>
|
||||
</array>
|
||||
<key>CFBundleTypeName</key>
|
||||
<string>Microsoft Project</string>
|
||||
<key>CFBundleTypeOSTypes</key>
|
||||
<array>
|
||||
<string>****</string>
|
||||
</array>
|
||||
<key>CFBundleTypeRole</key>
|
||||
<string>Editor</string>
|
||||
</dict>
|
||||
</array>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>JavaAppLauncher</string>
|
||||
<key>CFBundleIconFile</key>
|
||||
<string>projectlibre.icns</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.projectlibre.pm.Desktop</string>
|
||||
<key>CFBundleDisplayName</key>
|
||||
<string>ProjectLibre</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>ProjectLibre</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>@version@</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>plib</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1</string>
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
<string>2012 ProjectLibre Inc.</string>
|
||||
<key>LSApplicationCategoryType</key>
|
||||
<string>public.app-category.productivity</string>
|
||||
<key>JVMRuntime</key>
|
||||
<string>@jdk_name@</string>
|
||||
<key>JVMMainClassName</key>
|
||||
<string>com/projity/main/Main</string>
|
||||
<key>JVMOptions</key>
|
||||
<array>
|
||||
</array>
|
||||
<key>JVMArguments</key>
|
||||
<array>
|
||||
</array>
|
||||
</dict>
|
||||
</plist>
|
|
@ -30,7 +30,7 @@ in Exhibits A and B of the license at http://www.projity.com/license. You should
|
|||
use the latest text at http://www.projity.com/license for your modifications.
|
||||
You may not remove this license text from the source files.]
|
||||
|
||||
Attribution Information: Attribution Copyright Notice: Copyright <EFBFBD> 2006, 2007
|
||||
Attribution Information: Attribution Copyright Notice: Copyright (c) 2006, 2007
|
||||
Projity, Inc. Attribution Phrase (not exceeding 10 words): Powered by OpenProj,
|
||||
an open source solution from Projity. Attribution URL: http://www.projity.com
|
||||
Graphic Image as provided in the Covered Code as file: openproj_logo.png with
|
||||
|
@ -67,7 +67,7 @@ public class Settings {
|
|||
public static final String CLUSTER_NODES="jnp://localhost:1100";
|
||||
public static final String SITE_HOME = "http://www.projectlibre.com";
|
||||
// public static final String HELP_HOME = "http://projectlibre.org/wiki/index.php?title=";
|
||||
public static final String HELP_HOME = "http://projectlibre.com";
|
||||
public static final String HELP_HOME = "http://projectlibre.com/online_help/";
|
||||
public static final String WEB_APP= "web";
|
||||
public static final String WEB_HOME = SITE_HOME + "/" + WEB_APP;
|
||||
|
||||
|
|
|
@ -86,7 +86,7 @@
|
|||
|
||||
|
||||
AboutDialog.About=About
|
||||
AboutDialog.copyright=Copyright 2012 ProjectLibre Inc. All Rights Reserved
|
||||
AboutDialog.copyright=Copyright 2012,2013 ProjectLibre Inc. All Rights Reserved
|
||||
AccessControlPolicy.PUBLIC=All Resources (except Customer/Partner)
|
||||
AccessControlPolicy.RESTRICTED=Based on Project Role in resources view
|
||||
AccrualType.End=End
|
||||
|
@ -1131,11 +1131,13 @@ WorkRangeException.EndMustBeAfterStart=The range's end time must be greater than
|
|||
WorkRangeException.RangeIncomplete=A work range must have both a start and an end
|
||||
WorkRangeException.RangesCannotOverlap=You cannot have overlapping work ranges.
|
||||
WorkRangeException.RangesMustBeOrdered=The start of a work range must be after the preceding one
|
||||
tip.1.description= You can become a member of the ProjectLibre community at http://www.projectlibre.org We will have updates, information and community events.
|
||||
|
||||
|
||||
tip.1.description= It is important you become a member of the ProjectLibre community at http://www.projectlibre.org We make important announcements, critical updates and community updates.
|
||||
tip.1.name=ProjectLibre community Join
|
||||
tip.2.description= You can right-click on the Gantt Chart, Spreadsheet Cells, Spreadsheet Headers, and the upper left corner of the Spreadsheet to get context-sensitive menus for modifying the view.
|
||||
tip.2.name=Modify views
|
||||
tip.3.description=You can contribute to ProjectLibre! We're looking for translators and developers to make ProjectLibre better and better. Contact partners@projectlibre.org.
|
||||
tip.2.description= PPMLIbre is a compliment to ProjectLIbre and coming soon. PPMLIbre is a portfolio project management solution looking to replace Microsoft Project Server. Contact: info@ProjectLibre.org for more info.
|
||||
tip.2.name=PPMLIbre
|
||||
tip.3.description=You can contribute to ProjectLibre! We're looking for technical writers, translators and developers to make ProjectLibre better and better. Contact partners@projectlibre.org.
|
||||
tip.3.name=Contribute to ProjectLibre
|
||||
tip.4.description=The histogram and charts are dynamic and depend on what tasks you have selected above.
|
||||
tip.4.name=Dynamic charts
|
||||
|
@ -1145,28 +1147,11 @@ tip.6.description=You can indent and outdent tasks to make a hierarchy for your
|
|||
tip.6.name=Make a project hierarchy
|
||||
tip.7.description=You can use the mouse to link tasks, extend them, complete them, move them, and split them.
|
||||
tip.7.name=Mouse operations
|
||||
tip.8.description=Usually you'll want to keep the default FS (Finish-Start) links between tasks. Occasionally you may want SS and FF, but SF are very rare. You can change the link type by clicking on it. You can also set a lag.
|
||||
tip.8.name=Link types
|
||||
tip.9.description=It is always a good idea to save a baseline for your project. ProjectLibre lets you save up to 11 of them which you can display on the Gantt and use for Earned Value Analysis.
|
||||
tip.9.name=Baselines
|
||||
tip.10.description=You can adjust printing to a page by zooming the gantt in/out and resizing or hiding columns. Use Print Preview to verify.
|
||||
tip.10.name=Printing to a page
|
||||
tip.11.description=You can open files created by Microsoft Project in ProjectLibre, and you can also save them back out to Microsoft's XML format.
|
||||
tip.11.name=MS Project compatibility
|
||||
tip.8.description=You can open files created by Microsoft Project in ProjectLibre, and you can also save them back out to Microsoft's XML format.
|
||||
tip.8.name=MS Project compatibility
|
||||
tip.12.description=ProjectLibre has lots of user-defined fields at your disposal. Try right clicking on a spreadsheet header and see.
|
||||
tip.12.name=User defined fields
|
||||
tip.13.description=You can assign calendars to tasks, resources, and projects so as to take into account holidays.
|
||||
tip.13.name=Calendars
|
||||
tip.14.description=
|
||||
tip.14.name=
|
||||
tip.15.description=
|
||||
tip.15.name=
|
||||
tip.16.description=
|
||||
tip.16.name=
|
||||
tip.17.description=
|
||||
tip.17.name=
|
||||
tip.18.description=
|
||||
tip.18.name=
|
||||
|
||||
|
||||
Text.badJavaVersion=Your Java version is "{0}". To run ProjectLibre, you need Java 1.6 or later.
|
||||
Text.badJavaVendor=Your Java vendor is "{0}". To run ProjectLibre, you need the Sun Java implementation.
|
||||
|
|
|
@ -86,7 +86,7 @@
|
|||
|
||||
|
||||
AboutDialog.About=O aplikaci
|
||||
AboutDialog.copyright=Copyright 2012 ProjectLibre Inc. V\u0161echna pr\u00E1va vyhrazena
|
||||
AboutDialog.copyright=Copyright 2012,2013 ProjectLibre Inc. V\u0161echna pr\u00E1va vyhrazena
|
||||
AccessControlPolicy.PUBLIC=V\u0161echny zdroje (krom\u011B Z\u00E1kazn\u00EDk/partner)
|
||||
AccessControlPolicy.RESTRICTED=Na z\u00E1klad\u011B \u00DAkolu projektu v Zobrazen\u00ED zdroj\u016F
|
||||
AccrualType.End=Konec
|
||||
|
|
|
@ -87,7 +87,7 @@
|
|||
|
||||
|
||||
AboutDialog.About=Über
|
||||
AboutDialog.copyright=Copyright 2012 ProjectLibre Inc. Alle Rechte vorbehalten
|
||||
AboutDialog.copyright=Copyright 2012,2013 ProjectLibre Inc. Alle Rechte vorbehalten
|
||||
AccessControlPolicy.PUBLIC=Alle Ressourcen (ausgenommen Kunden/Partner)
|
||||
AccessControlPolicy.RESTRICTED=Basiert auf Projektrolle in Ressourcen-Ansicht
|
||||
AccrualType.End=Ende
|
||||
|
|
|
@ -113,7 +113,7 @@
|
|||
|
||||
|
||||
AboutDialog.About=Acerca de
|
||||
AboutDialog.copyright=Copyright 2012 ProjectLibre Inc. Todos los derechos reservados
|
||||
AboutDialog.copyright=Copyright 2012,2013 ProjectLibre Inc. Todos los derechos reservados
|
||||
AccessControlPolicy.PUBLIC=Todos los Recursos (excepto Clientes/Asociados)
|
||||
AccessControlPolicy.RESTRICTED=Basado en el Rol en el Proyecto en vista de recursos
|
||||
AccrualType.End=Fin
|
||||
|
|
|
@ -113,7 +113,7 @@
|
|||
|
||||
|
||||
AboutDialog.About=Acerca
|
||||
AboutDialog.copyright=Copyright 2012 ProjectLibre Inc. Todos los Derechos Reservados
|
||||
AboutDialog.copyright=Copyright 2012,2013 ProjectLibre Inc. Todos los Derechos Reservados
|
||||
AccessControlPolicy.PUBLIC=All Resources (except Customer/Partner)
|
||||
AccessControlPolicy.RESTRICTED=Based on Project Role in resources view
|
||||
AccrualType.End=End
|
||||
|
|
|
@ -86,7 +86,7 @@
|
|||
|
||||
|
||||
AboutDialog.About=Tietoja
|
||||
AboutDialog.copyright=Copyright 2012 ProjectLibre Inc. Kaikki oikeudet pidätetään
|
||||
AboutDialog.copyright=Copyright 2012,2013 ProjectLibre Inc. Kaikki oikeudet pidätetään
|
||||
AccessControlPolicy.PUBLIC=Kaikki resurssit (paitsi Asiakas/Kumppani)
|
||||
AccessControlPolicy.RESTRICTED=Perustuu resurssinäkymän projektirooliin
|
||||
AccrualType.End=Lopetus
|
||||
|
|
|
@ -114,7 +114,7 @@
|
|||
|
||||
|
||||
AboutDialog.About=À propos
|
||||
AboutDialog.copyright=Copyright 2012 ProjectLibre Inc. Tous droits réservés
|
||||
AboutDialog.copyright=Copyright 2012,2013 ProjectLibre Inc. Tous droits réservés
|
||||
AccessControlPolicy.PUBLIC=Toutes les ressources (sauf client/partenaire)
|
||||
AccessControlPolicy.RESTRICTED=Basé sur le rôle du projet dans la vue des ressources
|
||||
AccrualType.End=Fin
|
||||
|
|
|
@ -86,7 +86,7 @@
|
|||
|
||||
|
||||
AboutDialog.About=A propos de
|
||||
AboutDialog.copyright=Copyright 2012 ProjectLibre Inc. Tous droits réservés
|
||||
AboutDialog.copyright=Copyright 2012,2013 ProjectLibre Inc. Tous droits réservés
|
||||
AccessControlPolicy.PUBLIC=Toutes les ressource (sauf Client/Partenaire)
|
||||
AccessControlPolicy.RESTRICTED=Basé sur le rôle du projet dans la vue ressource
|
||||
AccrualType.End=Fin
|
||||
|
|
|
@ -51,7 +51,7 @@
|
|||
|
||||
|
||||
AboutDialog.About=Acerca de
|
||||
AboutDialog.copyright=Copyright 2012 ProjectLibre Inc. Todos os dereitos reservados
|
||||
AboutDialog.copyright=Copyright 2012,2013 ProjectLibre Inc. Todos os dereitos reservados
|
||||
AccessControlPolicy.PUBLIC=Todos os recursos (agás os clientes/socios)
|
||||
AccessControlPolicy.RESTRICTED=Baseado no Rol de proxecto na vista de recursos
|
||||
AccrualType.End=Fin
|
||||
|
|
|
@ -81,7 +81,7 @@
|
|||
#WBS =\u0935\u0930\u094D\u0915 \u092C\u094D\u0930\u0947\u0915\u094D\u0921\u093E\u0909\u0928 \u0938\u094D\u091F\u094D\u0930\u0915\u094D\u091A\u0930
|
||||
#RBS = \u0930\u0940\u0938\u094B\u0930\u094D\u0938 \u092C\u094D\u0930\u0947\u0915\u094D\u0921\u093E\u0909\u0928 \u0938\u094D\u091F\u094D\u0930\u0915\u094D\u091A\u0930
|
||||
AboutDialog.About=\u0905\u092C\u093E\u0909\u091F
|
||||
AboutDialog.copyright=Copyright 2012 ProjectLibre Inc. \u0911\u0932 \u0930\u093E\u0907\u091F\u094D\u0938 \u0930\u093F\u091C\u093C\u0930\u094D\u0935\u094D\u0921
|
||||
AboutDialog.copyright=Copyright 2012,2013 ProjectLibre Inc. \u0911\u0932 \u0930\u093E\u0907\u091F\u094D\u0938 \u0930\u093F\u091C\u093C\u0930\u094D\u0935\u094D\u0921
|
||||
AccessControlPolicy.PUBLIC=\u0911\u0932 \u0930\u0940\u0938\u094B\u0930\u094D\u0938 (\u0907\u0915\u094D\u0938\u0947\u092A\u094D\u091F \u0915\u0938\u094D\u091F\u092E\u0930/\u092A\u093E\u0930\u094D\u091F\u094D\u0928\u0930)
|
||||
AccessControlPolicy.RESTRICTED=\u092C\u0948\u0938\u094D\u091F \u0911\u0928 \u092A\u094D\u0930\u094B\u091C\u0948\u0915\u094D\u091F \u0930\u094B\u0932 \u0907\u0928 \u0930\u0940\u0938\u094B\u0930\u094D\u0938 \u0935\u094D\u092F\u0942
|
||||
AccrualType.End=\u090F\u0928\u094D\u0921
|
||||
|
|
|
@ -114,7 +114,7 @@
|
|||
|
||||
|
||||
AboutDialog.About=About
|
||||
AboutDialog.copyright=Copyright 2012 ProjectLibre Inc. Tutti i diritti riservati.
|
||||
AboutDialog.copyright=Copyright 2012,2013 ProjectLibre Inc. Tutti i diritti riservati.
|
||||
AccessControlPolicy.PUBLIC=Tutte le risorse (eccetto clienti/partner)
|
||||
AccessControlPolicy.RESTRICTED=Based on Project Role in resources view
|
||||
AccrualType.End=Fine
|
||||
|
|
|
@ -113,7 +113,7 @@
|
|||
|
||||
|
||||
AboutDialog.About=\u30d0\u30fc\u30b8\u30e7\u30f3\u60c5\u5831
|
||||
AboutDialog.copyright=Copyright 2012 ProjectLibre Inc. All Rights Reserved
|
||||
AboutDialog.copyright=Copyright 2012,2013 ProjectLibre Inc. All Rights Reserved
|
||||
AccessControlPolicy.PUBLIC=\u3059\u3079\u3066\u306e\u30ea\u30bd\u30fc\u30b9 (\u9867\u5ba2/\u30d1\u30fc\u30c8\u30ca\u30fc\u3092\u9664\u304f)
|
||||
AccessControlPolicy.RESTRICTED=\u30ea\u30bd\u30fc\u30b9 \u30d3\u30e5\u30fc\u306e\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u5f79\u5272\u306b\u57fa\u3065\u304f
|
||||
AccrualType.End=\u7d42\u4e86\u65e5
|
||||
|
|
|
@ -60,7 +60,7 @@ Units.eday.plural=ed|edys|edays|ed
|
|||
Spreadsheet.Task.variance=Variance
|
||||
Spreadsheet.Task.schedule=\uC77C\uC815
|
||||
Field.canLevel=Can Level
|
||||
AboutDialog.copyright=Copyright 2012 ProjectLibre Inc. All Rights Reserved
|
||||
AboutDialog.copyright=Copyright 2012,2013 ProjectLibre Inc. All Rights Reserved
|
||||
Text.resetRoles="\uBAA8\uB4E0 \uC790\uC6D0" \uC635\uC158\uC740 "\uD611\uB825\uC0AC/\uACE0\uAC1D"\uC744 \uC81C\uC678\uD55C \uB2F9\uC2E0 \uD68C\uC0AC\uC758 \uBAA8\uB4E0 \uC0AC\uC6A9\uC790\uAC00 \uD504\uB85C\uC81D\uD2B8\uC5D0 \uC811\uADFC\uD558\uAC8C \uD574 \uC124\uC815\uD569\uB2C8\uB2E4.\n\uC790\uC6D0 \uBCF4\uAE30\uC5D0 \uC785\uB825\uD558\uC2E0 \uD504\uB85C\uC81D\uD2B8\uC758 \uC81C\uC57D\uC0AC\uD56D\uC740 \uBAA8\uB450 \uCD08\uAE30\uD654 \uB429\uB2C8\uB2E4.
|
||||
ScheduleDialogBox.Months=\uB2EC
|
||||
Category.timesheetSpreadsheet=\uC2DC\uAC04 \uC2DC\uD2B8
|
||||
|
|
|
@ -113,7 +113,7 @@
|
|||
|
||||
|
||||
AboutDialog.About=Info
|
||||
AboutDialog.copyright=Copyright 2012 ProjectLibre Inc. All Rights Reserved
|
||||
AboutDialog.copyright=Copyright 2012,2013 ProjectLibre Inc. All Rights Reserved
|
||||
AccessControlPolicy.PUBLIC=Alle Resources (Uitgezonderd Klant/Partner)
|
||||
AccessControlPolicy.RESTRICTED=Gebaseerd op Project Rol in resources weergave
|
||||
AccrualType.End=Eind
|
||||
|
|
|
@ -117,7 +117,7 @@
|
|||
|
||||
|
||||
AboutDialog.About=Sobre
|
||||
AboutDialog.copyright=Copyright 2012 ProjectLibre Inc. Todos os Direitos Reservados
|
||||
AboutDialog.copyright=Copyright 2012,2013 ProjectLibre Inc. Todos os Direitos Reservados
|
||||
AccessControlPolicy.PUBLIC=Todos os Recursos (excepto de cliente / parceiro)
|
||||
AccessControlPolicy.RESTRICTED=Com base na função do projeto tendo em vista os recursos
|
||||
AccrualType.End=Final
|
||||
|
|
|
@ -88,7 +88,7 @@
|
|||
|
||||
|
||||
AboutDialog.About=Sobre
|
||||
AboutDialog.copyright=Copyright 2012 ProjectLibre Inc. Todos os direitos reservados.
|
||||
AboutDialog.copyright=Copyright 2012,2013 ProjectLibre Inc. Todos os direitos reservados.
|
||||
AccessControlPolicy.PUBLIC=All Resources (except Customer/Partner)
|
||||
AccessControlPolicy.RESTRICTED=Based on Project Role in resources view
|
||||
AccrualType.End=Fim
|
||||
|
|
|
@ -89,7 +89,7 @@
|
|||
|
||||
|
||||
AboutDialog.About=\u041E \u043F\u0440\u043E\u0433\u0440\u0430\u043C\u043C\u0435
|
||||
AboutDialog.copyright=Copyright 2012 ProjectLibre Inc. \u0412\u0441\u0435 \u043F\u0440\u0430\u0432\u0430 \u0437\u0430\u0449\u0438\u0449\u0435\u043D\u044B
|
||||
AboutDialog.copyright=Copyright 2012,2013 ProjectLibre Inc. \u0412\u0441\u0435 \u043F\u0440\u0430\u0432\u0430 \u0437\u0430\u0449\u0438\u0449\u0435\u043D\u044B
|
||||
AccessControlPolicy.PUBLIC=\u0412\u0441\u0435 \u0440\u0435\u0441\u0443\u0440\u0441\u044B (\u043A\u0440\u043E\u043C\u0435 \u043A\u043B\u0438\u0435\u043D\u0442\u043E\u0432 \u0438 \u043F\u0430\u0440\u0442\u043D\u0451\u0440\u043E\u0432)
|
||||
AccessControlPolicy.RESTRICTED=\u041E\u0441\u043D\u043E\u0432\u044B\u0432\u0430\u044F\u0441\u044C \u043D\u0430 \u0420\u043E\u043B\u044F\u0445 \u041F\u0440\u043E\u0435\u043A\u0442\u0430 \u0432 \u0432\u0438\u0434\u0435 \u0440\u0435\u0441\u0443\u0440\u0441\u043E\u0432
|
||||
AccrualType.End=\u041A\u043E\u043D\u0435\u0446
|
||||
|
|
|
@ -86,7 +86,7 @@
|
|||
|
||||
|
||||
AboutDialog.About=O aplik\u00E1cii
|
||||
AboutDialog.copyright=Copyright 2012 ProjectLibre Inc. V\u0161etky pr\u00E1va vyhraden\u00E9
|
||||
AboutDialog.copyright=Copyright 2012,2013 ProjectLibre Inc. V\u0161etky pr\u00E1va vyhraden\u00E9
|
||||
AccessControlPolicy.PUBLIC=V\u0161etky zdroje (okrem Z\u00E1kazn\u00EDk/partner)
|
||||
AccessControlPolicy.RESTRICTED=Na z\u00E1klade \u00DAlohy projektu v Zobrazen\u00ED zdrojov
|
||||
AccrualType.End=Koniec
|
||||
|
|
|
@ -108,7 +108,7 @@
|
|||
|
||||
|
||||
AboutDialog.About=Om
|
||||
AboutDialog.copyright=Copyright 2012 ProjectLibre Inc. Alla R\u00E4ttigheter f\u00F6rbeh\u00E5llna.\n\n (Svensk \u00F6vers\u00E4ttning\: Patrik Jarl)
|
||||
AboutDialog.copyright=Copyright 2012,2013 ProjectLibre Inc. Alla R\u00E4ttigheter f\u00F6rbeh\u00E5llna.\n\n (Svensk \u00F6vers\u00E4ttning\: Patrik Jarl)
|
||||
AccessControlPolicy.PUBLIC=Alla Resurser (f\u00F6rutom Kunder/Deltagare)
|
||||
AccessControlPolicy.RESTRICTED=Baserat p\u00E5 Projektroll i resursvyn
|
||||
AccrualType.End=Slut
|
||||
|
|
|
@ -113,7 +113,7 @@
|
|||
|
||||
|
||||
AboutDialog.About=\u0BAA\u0BB1\u0BCD\u0BB1\u0BBF
|
||||
AboutDialog.copyright=Copyright 2012 ProjectLibre Inc. All Rights Reserved
|
||||
AboutDialog.copyright=Copyright 2012,2013 ProjectLibre Inc. All Rights Reserved
|
||||
AccessControlPolicy.PUBLIC=\u0B8E\u0BB2\u0BCD\u0BB2\u0BBE \u0BB5\u0BB3\u0B99\u0BCD\u0B95\u0BB3\u0BC1\u0BAE\u0BCD (\u0BB5\u0BBE\u0B9F\u0BBF\u0B95\u0BCD\u0B95\u0BC8\u0BAF\u0BBE\u0BB3\u0BB0\u0BCD, \u0BAA\u0B99\u0BCD\u0B95\u0BBE\u0BB3\u0BBF \u0BA4\u0BB5\u0BBF\u0BB0)
|
||||
AccessControlPolicy.RESTRICTED= \u0BA4\u0BBF\u0B9F\u0BCD\u0B9F\u0BAA\u0BCD \u0BAA\u0B99\u0BCD\u0B95\u0BBF\u0BA9\u0BCD \u0BB5\u0BB3\u0B99\u0BCD\u0B95\u0BB3\u0BBF\u0BA9\u0BCD \u0B95\u0BBE\u0B9F\u0BCD\u0B9A\u0BBF\u0BAF\u0BC8\u0B9A\u0BCD \u0B9A\u0BBE\u0BB0\u0BCD\u0BA8\u0BCD\u0BA4\u0BC1\u0BB3\u0BCD\u0BB3\u0BA4\u0BC1
|
||||
AccrualType.End= \u0BAE\u0BC1\u0B9F\u0BBF\u0BB5\u0BC1
|
||||
|
|
|
@ -87,7 +87,7 @@
|
|||
|
||||
|
||||
AboutDialog.About=\u041F\u0440\u043E \u043F\u0440\u043E\u0433\u0440\u0430\u043C\u0443
|
||||
AboutDialog.copyright=Copyright 2012 ProjectLibre Inc. \u0423\u0441\u0456 \u043F\u0440\u0430\u0432\u0430 \u0437\u0430\u0445\u0438\u0449\u0435\u043D\u0456
|
||||
AboutDialog.copyright=Copyright 2012,2013 ProjectLibre Inc. \u0423\u0441\u0456 \u043F\u0440\u0430\u0432\u0430 \u0437\u0430\u0445\u0438\u0449\u0435\u043D\u0456
|
||||
AccessControlPolicy.PUBLIC=\u0423\u0441\u0456 \u0440\u0435\u0441\u0443\u0440\u0441\u0438 (\u043A\u0440\u0456\u043C \u043A\u043B\u0456\u0454\u043D\u0442\u0456\u0432 \u0456 \u043F\u0430\u0440\u0442\u043D\u0435\u0440\u0456\u0432)
|
||||
AccessControlPolicy.RESTRICTED=\u0490\u0440\u0443\u043D\u0442\u0443\u044E\u0447\u0438\u0441\u044C \u043D\u0430 \u0420\u043E\u043B\u044F\u0445 \u041F\u0440\u043E\u0435\u043A\u0442\u0443 \u0443 \u0432\u0438\u0434\u0456 \u0440\u0435\u0441\u0443\u0440\u0441\u0456\u0432
|
||||
AccrualType.End=\u041A\u0456\u043D\u0435\u0446\u044C
|
||||
|
|
|
@ -76,7 +76,7 @@ import com.projity.util.VersionUtils;
|
|||
public final class HelpDialog extends AbstractDialog {
|
||||
private static final long serialVersionUID = 1L;
|
||||
// private static final String helpUrl = "http://www.projectlibre.com/doc.html"; //$NON-NLS-1$
|
||||
private static final String helpUrl = "http://www.projectlibre.org/wiki/projectlibre-manual-community-contributed-wiki-manual-0"; //$NON-NLS-1$
|
||||
private static final String helpUrl = "http://www.projectlibre.org/online_help/"; //$NON-NLS-1$
|
||||
// private static final String videosUrl = Settings.SITE_HOME + "/demos.html"; //$NON-NLS-1$
|
||||
private static final String videosUrl = Settings.SITE_HOME; //$NON-NLS-1$
|
||||
public static final String donateUrl = "http://www.projectlibre.com";
|
||||
|
|
|
@ -86,7 +86,7 @@
|
|||
|
||||
ProjectRibbonTask.title = Archivo
|
||||
TaskRibbonTask.title = Tarea
|
||||
ResourceRibbonTask.title = Proyecto
|
||||
ResourceRibbonTask.title = Recurso
|
||||
ViewRibbonTask.title = Vista
|
||||
FileRibbonBand.title = Archivo
|
||||
PrintRibbonBand.title = Imprimir
|
||||
|
@ -141,12 +141,12 @@ RibbonLink.text=Vincular
|
|||
RibbonLink.tooltip=Vincular
|
||||
RibbonUnlink.text=Desvincular
|
||||
RibbonUnlink.tooltip=Desvincular
|
||||
RibbonTaskInformation.text =Informacion
|
||||
RibbonTaskInformation.tooltip =Informacion de la tarea
|
||||
RibbonResourceInformation.text =Informacion
|
||||
RibbonResourceInformation.tooltip =Informacion del recurso
|
||||
RibbonProjectInformation.text =Informacion
|
||||
RibbonProjectInformation.tooltip =Informacion del Proyecto
|
||||
RibbonTaskInformation.text =Información
|
||||
RibbonTaskInformation.tooltip =Información de la tarea
|
||||
RibbonResourceInformation.text =Información
|
||||
RibbonResourceInformation.tooltip =Información del recurso
|
||||
RibbonProjectInformation.text =Información
|
||||
RibbonProjectInformation.tooltip =Información del Proyecto
|
||||
RibbonChangeWorkingTime.text=Calendario
|
||||
RibbonChangeWorkingTime.tooltip=Cambiar calendario laboral
|
||||
RibbonNotes.text =Notas
|
||||
|
@ -155,7 +155,7 @@ RibbonInsert.text =Insertar
|
|||
RibbonInsert.tooltip =Insertar
|
||||
RibbonAssignResources.text=Asignar recursos
|
||||
RibbonAssignResources.tooltip=Asignar recursos
|
||||
RibbonProjectsDialog.text =Dialogo de projectos
|
||||
RibbonProjectsDialog.text =Diálogo de projectos
|
||||
RibbonProjectsDialog.tooltip =Projectos
|
||||
RibbonUpdateTasks.text =Actualizar
|
||||
RibbonUpdateTasks.tooltip =Actualizar tareas...
|
||||
|
|
|
@ -84,12 +84,12 @@
|
|||
# .accelerator (normally CTRL+first letter of .text)
|
||||
#
|
||||
|
||||
ProjectRibbonTask.title = Arkiv
|
||||
ProjectRibbonTask.title = Uppgift
|
||||
TaskRibbonTask.title = Uppgift
|
||||
ResourceRibbonTask.title = Resurs
|
||||
ViewRibbonTask.title = Visa
|
||||
FileRibbonBand.title = Arkiv
|
||||
PrintRibbonBand.title = Skriv ur
|
||||
PrintRibbonBand.title = Skriv ut
|
||||
ClipboardRibbonBand.title = Utklippshanteraren
|
||||
TaskRibbonBand.title = Uppgift
|
||||
ResourceRibbonBand.title = Resurs
|
||||
|
@ -157,21 +157,21 @@ RibbonAssignResources.text=Tilldela Resurser
|
|||
RibbonAssignResources.tooltip=Tilldela Resurser
|
||||
RibbonProjectsDialog.text =Projektdialog
|
||||
RibbonProjectsDialog.tooltip =Projekt
|
||||
RibbonUpdateTasks.text =Updatera
|
||||
RibbonUpdateTasks.tooltip =Updatera Uppgifter...
|
||||
RibbonUpdateTasks.text =Uppdatera
|
||||
RibbonUpdateTasks.tooltip =Uppdatera Uppgifter...
|
||||
RibbonUpdateTasks.mnemonic = T
|
||||
RibbonUpdateProject.text =Updatera
|
||||
RibbonUpdateProject.tooltip =Updatera Projekt...
|
||||
RibbonUpdateProject.text =Uppdatera
|
||||
RibbonUpdateProject.tooltip =Uppdatera Projekt...
|
||||
RibbonUpdateProject.mnemonic = P
|
||||
RibbonSaveBaseline.text =Spara Baslinje
|
||||
RibbonSaveBaseline.tooltip =Save Baseline...
|
||||
RibbonSaveBaseline.tooltip =Spara Baseline...
|
||||
RibbonSaveBaseline.mnemonic = S
|
||||
RibbonClearBaseline.text =Rensa Baslinje
|
||||
RibbonClearBaseline.tooltip =Rensa Baslinje...
|
||||
RibbonClearBaseline.mnemonic = C
|
||||
RibbonGantt.text=Gantt
|
||||
RibbonGantt.tooltip=Gantt
|
||||
RibbonTrackingGantt.text=Sp\u00E5ning Gantt
|
||||
RibbonTrackingGantt.text=Sp\u00E5rning Gantt
|
||||
RibbonTrackingGantt.tooltip=Sp\u00E5rning Gantt
|
||||
RibbonTaskUsageDetail.text=Uppgiftsanv\u00E4ndning
|
||||
RibbonTaskUsageDetail.tooltip=Uppgiftsanv\u00E4ndning
|
||||
|
|
Loading…
Reference in a new issue