New translations added. New dialog to configure Locales. Bug fixes.

This commit is contained in:
claur 2021-01-08 00:59:12 +01:00
parent 9c4aea639d
commit 18695ec399
50 changed files with 18319 additions and 5470 deletions

View file

@ -27,19 +27,19 @@ macapp=ProjectLibre.app
wixbuild=projectlibre_wix
version_name=1.9.2
version=1.9.2
version_name=1.9.3
version=1.9.3
#windows
numericVersion3=1.9.2
numericVersion3=1.9.3
#mac
numericVersion4=1.9.2.0
numericVersion4=1.9.3.0
#Linux
rpm_version=1.9.2
rpm_version=1.9.3
rpm_revision=1
deb_version=1.9.2
deb_version=1.9.3
deb_revision=1
#rpm_builds=redhat,suse,mageia

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -29,5 +29,6 @@
<classpathentry kind="lib" path="/projectlibre_contrib/lib/l2fprod-common-totd.jar"/>
<classpathentry kind="lib" path="/projectlibre_contrib/lib/nachocalendar.jar"/>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/3"/>
<classpathentry kind="lib" path="/projectlibre_contrib/lib/exchange/jaxb-api.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>

View file

@ -1,7 +1,13 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=1.6
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.release=disabled
org.eclipse.jdt.core.compiler.source=1.6

View file

@ -95,4 +95,6 @@ public class Settings {
public static boolean SHOW_HELP_LINKS = true;
public static String VERSION_TYPE_STANDALONE="standalone";
public static String VERSION_TYPE_SERVER="server";
public static String LANGUAGES = "default"; //defaults are set in configuration.xml
}

View file

@ -90,6 +90,13 @@
<name>com.projectlibre1.util.SpecialDateFormat.DATE_FORMAT</name>
<value>EEE MM/dd/yy H:mm</value>
</String>
<String>
<name>
com.projectlibre1.configuration.Settings.LANGUAGES
</name>
<value>default;ar;cs;da;de;el;en;es;fa;fi;fr;gl;hi;it;ja;kh;km;ko;nl;pt;ru;sk;sv;ta;th;tr;uk;ur;vi;zh</value>
</String>
</constants>

View file

@ -57,9 +57,19 @@ package com.projectlibre1.preference;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLClassLoader;
import java.util.Locale;
import java.util.Properties;
import java.util.PropertyResourceBundle;
import java.util.ResourceBundle;
import java.util.StringTokenizer;
import java.util.prefs.Preferences;
import com.projectlibre1.session.FileHelper;
public class ConfigurationFile {
@ -86,6 +96,12 @@ public class ConfigurationFile {
private static final String OPENPROJ_CONF_FILE="projectlibre.conf";
private static Properties confProps;
public static String getProperty(String key){
if ("locale".equals(key)) {
String locale=Preferences.userNodeForPackage(ConfigurationFile.class).get("locale","default");
if (!"default".equals(locale)) {
return locale;
}
}
if (confProps==null){
File confDir=getConfDir();
if (confDir==null) return null;
@ -106,32 +122,55 @@ public class ConfigurationFile {
if (locale==null){
String l=getProperty("locale");
if (l==null) locale=Locale.getDefault();
else{
String language=null;
String country=null;
String variant=null;
StringTokenizer st=new StringTokenizer(l,"_-");
if (!st.hasMoreTokens()) locale=Locale.getDefault();
else{
language=st.nextToken();
if (!st.hasMoreTokens()) locale=new Locale(language);
else{
country=st.nextToken();
if (!st.hasMoreTokens()) locale=new Locale(language,country);
else{
variant=st.nextToken();
locale=new Locale(language,country,variant);
}
}
}
}
else locale=getLocale(l);
}
return locale;
}
public static Locale getLocale(String code){
Locale defaultLocale=Locale.getDefault();
String language=null;
String country=null;
String variant=null;
StringTokenizer st=new StringTokenizer(code,"_-");
if (!st.hasMoreTokens()) locale=defaultLocale;
else{
language=st.nextToken();
if (!st.hasMoreTokens()) locale=new Locale(language,defaultLocale.getCountry());
else{
country=st.nextToken();
if (!st.hasMoreTokens()) locale=new Locale(language,country);
else{
variant=st.nextToken();
locale=new Locale(language,country,variant);
}
}
}
return locale;
}
public static String[] getLocaleCodes(String code){
Locale defaultLocale=Locale.getDefault();
String language=null;
String country=null;
String variant=null;
StringTokenizer st=new StringTokenizer(code,"_-");
if (!st.hasMoreTokens()) locale=defaultLocale;
else{
language=st.nextToken();
if (!st.hasMoreTokens()) locale=new Locale(language,defaultLocale.getCountry());
else{
country=st.nextToken();
if (!st.hasMoreTokens()) locale=new Locale(language,country);
else{
variant=st.nextToken();
}
}
}
return new String[] {language, country, variant};
}
private static final String OPENPROJ_RUN_CONF_FILE="run.conf";
private static Properties runProps;
@ -150,6 +189,65 @@ public class ConfigurationFile {
}
return runProps.getProperty(key);
}
public static File getGeneratedDirectory(String externalDirectory) {
File directory=new File(externalDirectory,"import");
return directory.isDirectory()?directory:null;
// File directory=null;
// Preferences pref=Preferences.userNodeForPackage(ConfigurationFile.class);
// if (pref.getBoolean("useExternalLocales",false)) {
// String dir=pref.get("externalLocalesDirectory","");
// directory=new File(dir,"generated");
// if (!directory.isDirectory())
// return null;
// }
// return directory;
}
public static File getExportDirectory(String externalDirectory) {
File directory=new File(externalDirectory,"export");
return directory.isDirectory()?directory:null;
}
public static ResourceBundle getDirectoryBundle(String name) {
File directory=null;
Preferences pref=Preferences.userNodeForPackage(ConfigurationFile.class);
if (pref.getBoolean("useExternalLocales",false)) {
String dir=pref.get("externalLocalesDirectory","");
directory=new File(dir,"import");
if (!directory.isDirectory())
return null;
}
// if (directory==null)
// directory=getConfDir();
try {
URL[] urls={directory.toURI().toURL()};
ClassLoader cl=new URLClassLoader(urls);
ResourceBundle rb=ResourceBundle.getBundle(name, Locale.getDefault(), cl);
return rb;
} catch (MalformedURLException e1) {
e1.printStackTrace();
}
// Locale locale=Locale.getDefault();
// try {
//// FileReader in = new FileReader(dir+File.separator+"client_"+locale+".properties");
// FileInputStream in = new FileInputStream(dir+File.separator+name+"_"+locale+".properties");
// return new PropertyResourceBundle(in);
// } catch (FileNotFoundException e) {
// // TODO Auto-generated catch block
// e.printStackTrace();
// } catch (IOException e) {
// // TODO Auto-generated catch block
// e.printStackTrace();
// }
return null;
}
}

View file

@ -60,6 +60,7 @@ import java.io.DataInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.InputStream;
import java.util.Locale;
import com.projectlibre1.preference.ConfigurationFile;
@ -82,13 +83,14 @@ public class DirectoryClassLoader extends ClassLoader{
protected Class findClass(String name) throws ClassNotFoundException{
if (directory==null) throw new ClassNotFoundException(name);
try {
File file = new File(directory, name);
File file = new File(directory, name+".properties");
DataInputStream in = new DataInputStream(new FileInputStream(file));
byte b[] = new byte[(int)file.length()];
in.readFully(b);
in.close();
return defineClass(name, b, 0, b.length);
} catch (Exception e) {
e.printStackTrace();
throw new ClassNotFoundException(name);
}
@ -96,7 +98,7 @@ public class DirectoryClassLoader extends ClassLoader{
public InputStream getResourceAsStream(String name) { //used by resourceBundle
if (directory==null) return null;
try {
File file = new File(directory, name);
File file = new File(directory, name+"_"+Locale.getDefault()+".properties");
DataInputStream in = new DataInputStream(new FileInputStream(file));
return in;
} catch (Exception e) {

View file

@ -56,11 +56,8 @@
package com.projectlibre1.strings;
import java.text.MessageFormat;
import java.util.ArrayList;
import java.util.Enumeration;
import java.util.LinkedList;
import java.util.List;
import java.util.ListIterator;
import java.util.Locale;
import java.util.MissingResourceException;
import java.util.Properties;
@ -68,8 +65,7 @@ import java.util.ResourceBundle;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;
import org.apache.commons.collections.CollectionUtils;
import com.projectlibre1.preference.ConfigurationFile;
import com.projectlibre1.util.ClassLoaderUtils;
import com.projectlibre1.util.Environment;
@ -99,7 +95,6 @@ public class Messages {
}
static LinkedList<ResourceBundle> bundles = null;
static DirectoryClassLoader directoryClassLoader=new DirectoryClassLoader();
static Lock lock=new ReentrantLock();
private static ResourceBundle[] bundleArray = null;
@ -114,30 +109,37 @@ public class Messages {
if (bundles==null){ //if it hasn't been initialized by an other thread
String bundleNames[] = getMetaString("ResourceBundles").split(";");
String directoryBundleNames[] = getMetaString("DirectoryResourceBundles").split(";");
if (directoryClassLoader.isValid()){
//foundBundles=new ArrayList<String>(bundleNames.length+directoryBundleNames.length);
for (int i =0; i < directoryBundleNames.length;i++) {
try {
ResourceBundle bundle=ResourceBundle.getBundle(directoryBundleNames[i],Locale.getDefault(),directoryClassLoader);
buns.add(bundle);
foundBundles.add("com.projectlibre1.strings."+directoryBundleNames[i]);
}catch (Exception e) {}
for (int i =0; i < directoryBundleNames.length;i++) {
try {
ResourceBundle bundle=ConfigurationFile.getDirectoryBundle(directoryBundleNames[i]);
if (bundle==null)
continue;
buns.add(bundle);
foundBundles.add("com.projectlibre1.strings."+directoryBundleNames[i]);
}catch (Exception e) {
e.printStackTrace();
}
}else buns=new LinkedList<ResourceBundle>();
}
for (int i =bundleNames.length-1; i >=0; i--) { // reverse order since the later ones should be searched first
String bname=bundleNames[i];
//find right position to insert in bundles
int j=0;
int pos=0;
boolean found=false;
for (String b : foundBundles){
if (bname.equals(b))
if (bname.equals(b)) {
found=true;
break;
}
pos++;
}
buns.add(pos,ResourceBundle.getBundle(bname,Locale.getDefault(),ClassLoaderUtils.getLocalClassLoader()/*Messages.class.getClassLoader()*/));
foundBundles.add(pos,bname);
if (!found) {
buns.add(pos,ResourceBundle.getBundle(bname,Locale.getDefault(),ClassLoaderUtils.getLocalClassLoader()/*Messages.class.getClassLoader()*/));
foundBundles.add(pos,bname);
}
}
}
} finally {

View file

@ -1229,3 +1229,23 @@ T_VIEW=View
Message.saveError=An error occured while saving.
Message.saveErrorTmpFile=An error occured while saving. The new file has been saved as:
Message.localeChange=Locale change will take effect at restart
Message.badLocaleDirectory=Locale directory is invalid
Text.Language=Language:
Text.Locales=Locales:
Text.Country=Country:
Text.DefaultLocale=default
Text.ExternalLocale=Custom locales
Text.ExternalLocaleUse=Use custom locales
Text.ExternalLocaleDirectory=Locale directory:
Text.ExternalLocaleDirectorySet=Set
Text.ExternalLocaleDirectoryUpdate=Import
Text.ExternalLocaleDirectoryExport=Export
LocaleDialog.Language=Locale:
LocaleDialog.FileStatusOk=OK
LocaleDialog.FileStatusFormatError=Format error
LocaleDialog.FileStatusMissing=Missing file

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -1044,7 +1044,7 @@ Text.modifiedInParentheses=(modifi
Text.thousandsAbbreviation=K
Text.millionsAbbreviation=M
Text.newServerProject=Projet de serveur
Text.openProject=Projet ouvert
Text.openProject=Ouvrir le projet
Text.predecessor=prédécesseur
# {0} is the name of the thing to rename
Text.rename.mf=Renommer {0}
@ -1234,3 +1234,7 @@ T_CANCEL=Annuler
T_SAVE=Sauvegarder
T_REFRESH=Rafra\u00eechir
T_VIEW=Vue
Message.languageChange=Language change will take effect at restart\nApply change?

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -1220,3 +1220,6 @@ Text.rightClickForOptions=Right click for options
Message.unableToLaunchBrowser=Error. Unable to launch web browser
Text.Locale=Locale

View file

@ -1,13 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="var" path="JUNIT_HOME/junit.jar"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER">
<attributes>
<attribute name="module" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="lib" path="/projectlibre_contrib/lib/jasperreports/bsh.jar"/>
<classpathentry kind="lib" path="/projectlibre_contrib/lib/jasperreports/jasperreports.jar"/>
<classpathentry kind="lib" path="/projectlibre_contrib/lib/jasperreports/jdt-compiler.jar"/>
<classpathentry combineaccessrules="false" kind="src" path="/projectlibre_contrib"/>
<classpathentry combineaccessrules="false" kind="src" path="/projectlibre_core"/>
<classpathentry kind="lib" path="/projectlibre_contrib/lib/commons-collections.jar"/>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
<classpathentry kind="output" path="bin"/>
</classpath>

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
<classpathentry kind="lib" path="/projectlibre_contrib/lib/itext.jar"/>
<classpathentry kind="lib" path="/projectlibre_contrib/lib/trident-6.2.jar"/>
<classpathentry combineaccessrules="false" exported="true" kind="src" path="/projectlibre_contrib"/>

View file

@ -1,12 +1,12 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=1.6
org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.6
org.eclipse.jdt.core.compiler.source=1.8

View file

@ -227,6 +227,8 @@ public class ProjectLibreRibbonUI extends RibbonUI {
// "Panel.background");
protected int fileSelectorOffsetX = 300;
protected int languageSelectorWidth = 50;
protected int projectViewsOffsetX = 600;
@ -489,6 +491,8 @@ public class ProjectLibreRibbonUI extends RibbonUI {
// ribbon.add(ribbon.getProjectLibreLogo());
ribbon.add(ribbon.getFileSelector());
ribbon.add(ribbon.getLanguageSelector());
ribbon.add(ribbon.getProjectViews());
@ -560,6 +564,9 @@ public class ProjectLibreRibbonUI extends RibbonUI {
if (ribbon.getFileSelector() != null)
ribbon.remove(ribbon.getFileSelector());
if (ribbon.getLanguageSelector() != null)
ribbon.remove(ribbon.getLanguageSelector());
if (ribbon.getProjectViews() != null)
ribbon.remove(ribbon.getProjectViews());
@ -948,8 +955,14 @@ public class ProjectLibreRibbonUI extends RibbonUI {
taskBarPanel.setBounds(0, 0, 0, 0);
}
ribbon.getFileSelector().setBounds(fileSelectorOffsetX, ins.top,
width - ins.right - fileSelectorOffsetX, taskbarHeight);
width - ins.right - fileSelectorOffsetX - languageSelectorWidth, taskbarHeight);
if (languageSelectorWidth>0)
ribbon.getLanguageSelector().setBounds(width - ins.right - languageSelectorWidth , ins.top,
languageSelectorWidth, taskbarHeight);
// projectViews.setBounds(width-ins.right-300, ins.top, 280,
// taskbarHeight);

View file

@ -0,0 +1,893 @@
/*******************************************************************************
* The contents of this file are subject to the Common Public Attribution License
* Version 1.0 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.projectlibre.com/license . The License is based on the Mozilla Public
* License Version 1.1 but Sections 14 and 15 have been added to cover use of
* software over a computer network and provide for limited attribution for the
* Original Developer. In addition, Exhibit A has been modified to be consistent
* with Exhibit B.
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
* specific language governing rights and limitations under the License. The
* Original Code is ProjectLibre. The Original Developer is the Initial Developer
* and is ProjectLibre Inc. All portions of the code written by ProjectLibre are
* Copyright (c) 2012-2019. All Rights Reserved. All portions of the code written by
* ProjectLibre are Copyright (c) 2012-2019. All Rights Reserved. Contributor
* ProjectLibre, Inc.
*
* Alternatively, the contents of this file may be used under the terms of the
* ProjectLibre End-User License Agreement (the ProjectLibre License) in which case
* the provisions of the ProjectLibre License are applicable instead of those above.
* If you wish to allow use of your version of this file only under the terms of the
* ProjectLibre License and not to allow others to use your version of this file
* under the CPAL, indicate your decision by deleting the provisions above and
* replace them with the notice and other provisions required by the ProjectLibre
* License. If you do not delete the provisions above, a recipient may use your
* version of this file under either the CPAL or the ProjectLibre Licenses.
*
*
* [NOTE: The text of this Exhibit A may differ slightly from the text of the notices
* in the Source Code files of the Original Code. You should use the text of this
* Exhibit A rather than the text found in the Original Code Source Code for Your
* Modifications.]
*
* EXHIBIT B. Attribution Information for ProjectLibre required
*
* Attribution Copyright Notice: Copyright (c) 2012-2019, ProjectLibre, Inc.
* Attribution Phrase (not exceeding 10 words):
* ProjectLibre, open source project management software.
* Attribution URL: http://www.projectlibre.com
* Graphic Image as provided in the Covered Code as file: projectlibre-logo.png with
* alternatives listed on http://www.projectlibre.com/logo
*
* Display of Attribution Information is required in Larger Works which are defined
* in the CPAL as a work which combines Covered Code or portions thereof with code
* not governed by the terms of the CPAL. However, in addition to the other notice
* obligations, all copies of the Covered Code in Executable and Source Code form
* distributed must, as a form of attribution of the original author, include on
* each user interface screen the "ProjectLibre" logo visible to all users.
* The ProjectLibre logo should be located horizontally aligned with the menu bar
* and left justified on the top left of the screen adjacent to the File menu. The
* logo must be at least 144 x 31 pixels. When users click on the "ProjectLibre"
* logo it must direct them back to http://www.projectlibre.com.
*******************************************************************************/
package com.projectlibre1.dialog;
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Frame;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileFilter;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.net.URL;
import java.nio.ByteBuffer;
import java.nio.CharBuffer;
import java.nio.charset.Charset;
import java.nio.charset.CharsetEncoder;
import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
import java.util.Enumeration;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.Set;
import java.util.TreeMap;
import java.util.TreeSet;
import java.util.Vector;
import java.util.prefs.Preferences;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import javax.swing.ButtonGroup;
import javax.swing.JButton;
import javax.swing.JCheckBox;
import javax.swing.JComboBox;
import javax.swing.JComponent;
import javax.swing.JFileChooser;
import javax.swing.JLabel;
import javax.swing.JList;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JRadioButton;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.JTextArea;
import javax.swing.JTextField;
import javax.swing.JTextPane;
import javax.swing.event.DocumentEvent;
import javax.swing.event.DocumentListener;
import javax.swing.event.TableModelListener;
import javax.swing.filechooser.FileSystemView;
import javax.swing.table.AbstractTableModel;
import javax.swing.table.TableModel;
import javax.swing.text.AttributeSet;
import javax.swing.text.BadLocationException;
import javax.swing.text.DefaultStyledDocument;
import javax.swing.text.SimpleAttributeSet;
import javax.swing.text.StyleConstants;
import javax.swing.text.StyleContext;
import javax.swing.text.rtf.RTFEditorKit;
import org.apache.commons.lang.StringEscapeUtils;
import com.jgoodies.forms.builder.DefaultFormBuilder;
import com.jgoodies.forms.layout.CellConstraints;
import com.jgoodies.forms.layout.FormLayout;
import com.projectlibre.ui.ribbon.ProjectLibreRibbonUI;
import com.projectlibre1.pm.graphic.frames.GraphicManager;
import com.projectlibre1.configuration.Settings;
import com.projectlibre1.pm.snapshot.SnapshottableImpl;
import com.projectlibre1.preference.ConfigurationFile;
import com.projectlibre1.strings.Messages;
import com.projectlibre1.util.Alert;
import net.sf.mpxj.common.RtfHelper;
public final class LocaleDialog extends AbstractDialog {
private static final long serialVersionUID = 1L;
JComboBox<String> languageCombo;
JComboBox<Country> countryCombo;
JCheckBox externalCheckbox=new JCheckBox(Messages.getString("Text.ExternalLocaleUse"));
JTextField directoryField=new JTextField();
JButton directorySetButton=new JButton(Messages.getString("Text.ExternalLocaleDirectorySet"));
JButton directoryUpdateButton=new JButton(Messages.getString("Text.ExternalLocaleDirectoryUpdate"));
JButton directoryExportButton=new JButton(Messages.getString("Text.ExternalLocaleDirectoryExport"));
JTextPane messageArea;
JTable externalList;
AbstractTableModel externalListModel;
String[] externalListColumns={"code", "client.properties", "menu.properties"};
ArrayList<LanguageProperties> files=new ArrayList<LanguageProperties>();
public enum FileStatus {
OK(Messages.getString("LocaleDialog.FileStatusOk")),
MISSING(Messages.getString("LocaleDialog.FileStatusMissing")),
ERROR(Messages.getString("LocaleDialog.FileStatusFormatError"));
public final String message;
private FileStatus(String message) {
this.message = message;
}
}
class LanguageProperties implements Comparable<String>{
String code;
File client;
FileStatus clientStatus;
File menu;
FileStatus menuStatus;
/**
* @param code
* @param client
* @param clientStatus
* @param menu
* @param menuStatus
*/
public LanguageProperties(String code, File client, FileStatus clientStatus, File menu, FileStatus menuStatus) {
super();
this.code = code;
this.client = client;
this.clientStatus = clientStatus;
this.menu = menu;
this.menuStatus = menuStatus;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public File getClient() {
return client;
}
public void setClient(File client) {
this.client = client;
}
public File getMenu() {
return menu;
}
public void setMenu(File menu) {
this.menu = menu;
}
public FileStatus getClientStatus() {
return clientStatus;
}
public void setClientStatus(FileStatus clientStatus) {
this.clientStatus = clientStatus;
}
public FileStatus getMenuStatus() {
return menuStatus;
}
public void setMenuStatus(FileStatus menuStatus) {
this.menuStatus = menuStatus;
}
@Override
public int compareTo(String o) {
return code.compareTo(o);
}
}
String[] slocales=Settings.LANGUAGES.split(";");
Set<String> allLocales=new TreeSet();
Map<String, String> transOri=new HashMap<String, String>();
Map<String, String> oriTrans=new HashMap<String, String>();
protected boolean bind(boolean get) {
Preferences pref=Preferences.userNodeForPackage(ConfigurationFile.class);
if (get) {
updateLocales(true);
boolean custom=pref.getBoolean("useExternalLocales",false);
externalCheckbox.setSelected(custom);
directoryField.setEnabled(custom);
directorySetButton.setEnabled(custom);
directoryUpdateButton.setEnabled(custom);
directoryExportButton.setEnabled(custom);
directoryField.setText(pref.get("externalLocalesDirectory",""));
} else {
String language=(String)languageCombo.getSelectedItem();
String country=((Country)countryCombo.getSelectedItem()).getCode();
String trans=transOri.get(language);
String code=trans==null?language:trans;
if (!"".equals(country))
code+="_"+country;
pref.put("locale",code);
pref.putBoolean("useExternalLocales", externalCheckbox.isSelected());
pref.put("externalLocalesDirectory", directoryField.getText());
}
return true;
}
static class Country implements Comparable<Country>{
String code;
String name;
public Country() {
super();
this.code = "";
this.name = "";
}
/**
* @param code
* @param name
*/
public Country(String code, String name) {
super();
this.code = code;
this.name = name;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Override
public int hashCode() {
return code.hashCode();
}
@Override
public String toString() {
return name.toString();
}
@Override
public int compareTo(Country o) {
return code.compareTo(o.getCode());
}
@Override
public boolean equals(Object o) {
if (o==null || ! (o instanceof Country))
return false;
else return code.equals(((Country)o).getCode());
}
}
public static final Country DEFAULT_COUNTRY=new Country();
public void updateLocales(boolean init) {
String currentLocaleCode=Preferences.userNodeForPackage(ConfigurationFile.class).get("locale","default");
String currentLanguage;
Country currentCountry;
if ("default".equals(currentLocaleCode)) {
currentLanguage=currentLocaleCode;
currentCountry=DEFAULT_COUNTRY;
}else {
String[] codes=ConfigurationFile.getLocaleCodes(currentLocaleCode);
currentLanguage=codes[0];
String code=codes[1];
if (code==null ||
"".equals(code))
currentCountry=DEFAULT_COUNTRY;
else {
Locale locale = new Locale("en", code);
currentCountry=new Country(code, locale.getDisplayCountry(locale));
}
}
if (init/*countryCombo.getItemCount()==0*/) { //only set once
TreeSet<Country> countrySet=new TreeSet<Country>();
countrySet.add(DEFAULT_COUNTRY);
String[] countryCodes=Locale.getISOCountries();
for (String countryCode: countryCodes) {
Locale locale = new Locale("en", countryCode);
countrySet.add(new Country(countryCode, locale.getDisplayCountry(locale)));
}
for (Country country: countrySet) {
countryCombo.addItem(country);
}
countryCombo.setSelectedItem(currentCountry);
}
for (String locale:slocales) {
String trans;
if ("default".equals(locale))
trans=Messages.getString("Text.DefaultLocale");
else trans=locale;
oriTrans.put(locale, trans);
transOri.put(trans, locale);
}
String selectedItem;
if (init){
String trans=oriTrans.get(currentLanguage);
selectedItem=trans==null? currentLanguage: trans;
}else selectedItem=(String)languageCombo.getSelectedItem();
allLocales.clear();
languageCombo.removeAllItems();
//add custom locales
for (LanguageProperties file:files) {
if (file.getClientStatus()==FileStatus.OK ||
file.getMenuStatus()==FileStatus.OK)
allLocales.add(file.code);
}
//add preference locale if missing
boolean found=false;
String defaultLocale=null;
for (String locale:slocales) {
if ("default".equals(locale)) {
defaultLocale=locale;
continue;
}
allLocales.add(locale);
if (locale.equals(currentLanguage)) {
found=true;
}
}
if (!found)
allLocales.add(currentLanguage);
if (defaultLocale!=null)
languageCombo.addItem(oriTrans.get(defaultLocale));
for (String locale: allLocales) {
String trans=oriTrans.get(locale);
if (!"default".equals(locale))
languageCombo.addItem(trans==null?locale:trans);
}
languageCombo.setSelectedItem(selectedItem);
}
public static LocaleDialog getInstance(GraphicManager graphicManager) {
LocaleDialog instance =null;
if (instance == null) {
instance = new LocaleDialog(graphicManager.getFrame());
} else
instance.setTitle(Messages.getString("Text.LocaleDialog"));
instance.addDocHelp("Locale_Dialog");
return instance;
}
private LocaleDialog(Frame owner) {
super(owner, "", true);
languageCombo=new JComboBox();
countryCombo=new JComboBox();
messageArea=new JTextPane();
messageArea.setBackground(null);
externalList=new JTable();
}
protected void displayMessage(String message) {
StyleContext sc = StyleContext.getDefaultStyleContext();
AttributeSet attr = sc.addAttribute(SimpleAttributeSet.EMPTY, StyleConstants.Foreground, Color.RED);
attr = sc.addAttribute(attr, StyleConstants.Alignment, StyleConstants.ALIGN_JUSTIFIED);
attr = sc.addAttribute(attr, StyleConstants.Italic, true);
messageArea.setCaretPosition(0);
messageArea.selectAll();
messageArea.setCharacterAttributes(attr, false);
messageArea.replaceSelection(message);
}
protected void displayChangeMessage() {
displayMessage(Messages.getString("Message.localeChange"));
}
protected void initControls() {
bind(true);
languageCombo.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
displayChangeMessage();
}
});
countryCombo.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
displayChangeMessage();
}
});
externalCheckbox.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
directoryField.setEnabled(externalCheckbox.isSelected());
directorySetButton.setEnabled(externalCheckbox.isSelected());
directoryUpdateButton.setEnabled(externalCheckbox.isSelected());
directoryExportButton.setEnabled(externalCheckbox.isSelected());
displayChangeMessage();
}
});
directoryField.getDocument().addDocumentListener(new DocumentListener() {
@Override
public void removeUpdate(DocumentEvent e) {
displayChangeMessage();
}
@Override
public void insertUpdate(DocumentEvent e) {
displayChangeMessage();
}
@Override
public void changedUpdate(DocumentEvent e) {
displayChangeMessage();
}
});
directorySetButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
String spath=directoryField.getText();
File path;
if (spath==null || spath=="")
path=FileSystemView.getFileSystemView().getHomeDirectory();
else {
path=new File(spath);
if (!path.isDirectory())
path=FileSystemView.getFileSystemView().getHomeDirectory();
}
JFileChooser fileChooser = new JFileChooser(path);
fileChooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
if (fileChooser.showOpenDialog(LocaleDialog.this) == JFileChooser.APPROVE_OPTION) {
displayChangeMessage();
File selectedFile = fileChooser.getSelectedFile();
directoryField.setText(selectedFile.getPath());
refreshFiles();
}
}
});
directoryUpdateButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
displayChangeMessage();
refreshFiles();
}
});
directoryExportButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
displayChangeMessage();
refreshExportFiles();
}
});
externalListModel=new AbstractTableModel() {
@Override
public String getColumnName(int col) {
return externalListColumns[col];
}
@Override
public Object getValueAt(int row, int col) {
if (row<0 ||
col<0 ||
row>=getRowCount() ||
col>=getColumnCount())
return null;
LanguageProperties prop=files.get(row);
if (col==0)
return prop.getCode();
else if (col==1)
return prop.getClientStatus();
else return prop.getMenuStatus();
}
@Override
public int getRowCount() {
return files.size();
}
@Override
public int getColumnCount() {
return 3;
}
};
externalList.setModel(externalListModel);
externalList.setEnabled(false);
// refreshFiles();
}
public void exportResourceFile(String packageDir, String file) {
File generatedDir=ConfigurationFile.getGeneratedDirectory(directoryField.getText());
if (generatedDir==null)
return;
ClassLoader cl = getClass().getClassLoader();
try {
InputStream in = cl.getResourceAsStream(packageDir+"/"+file+".properties");
if (in == null)
throw new FileNotFoundException();
byte[] buf = new byte[in.available()];
in.read(buf);
File target = new File(generatedDir,file+".properties");
OutputStream out = new FileOutputStream(target);
out.write(buf);
out.close();
} catch (IOException e) {
e.printStackTrace();
}
}
public void exportResourceFileUTF8(String packageDir, String file) {
File generatedDir=ConfigurationFile.getExportDirectory(directoryField.getText());
if (generatedDir==null)
return;
ClassLoader cl = getClass().getClassLoader();
try {
InputStream in = cl.getResourceAsStream(packageDir+"/"+file+".properties");
if (in == null)
throw new FileNotFoundException();
String text=getFileContent(in, "ISO-8859-1",true);
File target = new File(generatedDir,file+".txt");
FileWriter out = new FileWriter(target);
out.write(text);
out.close();
} catch (IOException e) {
e.printStackTrace();
}
}
public void refreshFiles() {
files.clear();
File directory=new File(directoryField.getText());
if (!directory.isDirectory()) {
displayMessage(Messages.getString("Message.badLocaleDirectory"));
if (externalListModel!=null)
externalListModel.fireTableDataChanged();
return;
}
File generated=new File(directory, "import");
if (generated.exists()) {
if (!generated.isDirectory()) {
displayMessage(Messages.getString("Message.badLocaleDirectory"));
if (externalListModel!=null)
externalListModel.fireTableDataChanged();
return;
}
}else {
if (!generated.mkdir()) {
displayMessage(Messages.getString("Message.badLocaleDirectory"));
if (externalListModel!=null)
externalListModel.fireTableDataChanged();
return;
}
}
// Pattern clientPattern = Pattern.compile("client_([^_]{2,3}(_[^_]{2,3})?(_[^_]{2,3})?)(\\.properties)(\\.([^\\.]*))?$");
// Pattern menuPattern = Pattern.compile("menu_([^_]{2,3}(_[^_]{2,3})?(_[^_]{2,3})?)(\\.properties)(\\.([^\\.]*))?$");
final Pattern clientPattern = Pattern.compile("client_([^_]{2,3}(_[^_]{2,3})?(_[^_]{2,3})?)(\\.(properties|txt|rtf))$");
final Pattern menuPattern = Pattern.compile( "menu_([^_]{2,3}(_[^_]{2,3})?(_[^_]{2,3})?)(\\.(properties|txt|rtf))$");
File[] clientFiles=directory.listFiles(new FileFilter() {
@Override
public boolean accept(File f) {
if (f.isFile() &&
clientPattern.matcher(f.getName()).matches())
return true;
return false;
}
});
File[] menuFiles=directory.listFiles(new FileFilter() {
@Override
public boolean accept(File f) {
if (f.isFile() &&
menuPattern.matcher(f.getName()).matches())
return true;
return false;
}
});
exportResourceFile("com/projectlibre1/strings/","client");
Map<String, LanguageProperties> fileMap=new TreeMap<String, LanguageProperties>();
for (File file:clientFiles) {
Matcher m = clientPattern.matcher(file.getName());
if(m.matches()) {
String code=m.group(1);
String extension=m.group(5);
if (extension==null)
continue;
File generatedFile=null;
generatedFile=convertToPropertyFile(file,new File(generated,"client_"+code+".properties"),extension);
if (generatedFile==null)
continue;
if (fileMap.containsKey(code)) {
LanguageProperties p=fileMap.get(code);
p.setClient(file);
p.setClientStatus(generatedFile==null?
FileStatus.ERROR:
FileStatus.OK);
}else fileMap.put(code, new LanguageProperties(code,
file,
generatedFile==null?
FileStatus.ERROR:
FileStatus.OK,
null,
FileStatus.MISSING));
}
}
exportResourceFile("com/projectlibre1/menu/","menu");
for (File file:menuFiles) {
Matcher m = menuPattern.matcher(file.getName());
if(m.matches()) {
String code=m.group(1);
String extension=m.group(5);
if (extension==null)
continue;
File generatedFile=null;
generatedFile=convertToPropertyFile(file,new File(generated,"menu_"+code+".properties"),extension);
if (generatedFile==null)
continue;
if (fileMap.containsKey(code)) {
LanguageProperties p=fileMap.get(code);
p.setMenu(file);
p.setMenuStatus(generatedFile==null?
FileStatus.ERROR:
FileStatus.OK);
}else fileMap.put(code, new LanguageProperties(code,
null,
FileStatus.MISSING,
file,
generatedFile==null?
FileStatus.ERROR:
FileStatus.OK));
}
}
files.addAll(fileMap.values());
updateLocales(false);
externalListModel.fireTableDataChanged();
}
public void refreshExportFiles() {
File directory=new File(directoryField.getText());
if (!directory.isDirectory()) {
displayMessage(Messages.getString("Message.badLocaleDirectory"));
if (externalListModel!=null)
externalListModel.fireTableDataChanged();
return;
}
File export=new File(directory, "export");
if (export.exists()) {
if (!export.isDirectory()) {
displayMessage(Messages.getString("Message.badLocaleDirectory"));
if (externalListModel!=null)
externalListModel.fireTableDataChanged();
return;
}
}else {
if (!export.mkdir()) {
displayMessage(Messages.getString("Message.badLocaleDirectory"));
if (externalListModel!=null)
externalListModel.fireTableDataChanged();
return;
}
}
exportResourceFileUTF8("com/projectlibre1/strings/","client");
exportResourceFileUTF8("com/projectlibre1/menu/","menu");
for (String locale:slocales) {
if ("default".equals(locale))
continue;
exportResourceFileUTF8("com/projectlibre1/strings/","client_"+locale);
exportResourceFileUTF8("com/projectlibre1/menu/","menu_"+locale);
}
}
public static String getFileContent(InputStream in,String encoding ,boolean unescape) throws IOException {
BufferedReader br =new BufferedReader( new InputStreamReader(in, encoding ));
StringBuilder sb = new StringBuilder();
String line;
while(( line = br.readLine()) != null ) {
sb.append( unescape?unescape(line):line );
sb.append( '\n' );
}
return sb.toString();
}
public static String escapeProperties(String text) {
// CharsetEncoder targetEncoder = Charset.forName("US-ASCII").newEncoder();
CharsetEncoder targetEncoder = Charset.forName("ISO-8859-1").newEncoder();
final StringBuilder result = new StringBuilder();
for (Character character : text.toCharArray()) {
if (targetEncoder.canEncode(character)) {
result.append(character);
} else {
result.append("\\u");
result.append(Integer.toHexString(0x10000 | character).substring(1).toUpperCase()); //hack to add leading zeros
}
}
return result.toString();
}
public static String unescape(String text) {
text = StringEscapeUtils.unescapeJava(text);
return text;
}
public File convertToPropertyFile(File file, File newFile, String type) {
try {
FileInputStream in = new FileInputStream(file);
String text=null;
if ("rtf".equals(type)) {
try {
RTFEditorKit kit = new RTFEditorKit();
DefaultStyledDocument doc = new DefaultStyledDocument();
kit.read(in, doc, 0);
text = doc.getText(0, doc.getLength());
text=escapeProperties(text);
} catch (BadLocationException e) {
e.printStackTrace();
}
} else if ("txt".equals(type)) {
text=getFileContent(in, "UTF-8",false);
text=escapeProperties(text);
} else {
text=getFileContent(in, "ISO-8859-1", false);
}
if (text==null)
return null;
byte[] outputData = text.getBytes();
FileOutputStream out=new FileOutputStream(newFile);
out.write(outputData);
out.close();
return newFile;
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
return null;
}
public JComponent createContentPanel() {
initControls();
FormLayout dLayout = new FormLayout("default, 3dlu, fill:80dlu:grow, 3dlu, default", "p");
DefaultFormBuilder dbuilder = new DefaultFormBuilder(dLayout);
dbuilder.setDefaultDialogBorder();
dbuilder.append(Messages.getString("Text.ExternalLocaleDirectory"));
dbuilder.append(directoryField);
dbuilder.append(directorySetButton);
JComponent directoryPanel=dbuilder.getPanel();
FormLayout layout = new FormLayout("default, 3dlu, default, 3dlu, default, 3dlu, fill:80dlu:grow",
"p, 3dlu, p, 3dlu, p, 3dlu, p, 3dlu, p, 3dlu, p, 3dlu, 100dlu, 20dlu, p");
DefaultFormBuilder builder = new DefaultFormBuilder(layout);
builder.setDefaultDialogBorder();
CellConstraints cc = new CellConstraints();
builder.append(Messages.getString("Text.Language"));
builder.append(languageCombo);
builder.nextLine(2);
builder.append(Messages.getString("Text.Country"));
builder.append(countryCombo);
builder.nextLine(2);
builder.addSeparator(Messages.getString("Text.ExternalLocale"));
builder.nextLine(2);
builder.add(externalCheckbox,cc.xyw(builder.getColumn(), builder
.getRow(), 7));
builder.nextLine(2);
builder.add(directoryPanel,cc.xyw(builder.getColumn(), builder
.getRow(), 7));
builder.nextLine(2);
builder.append(Messages.getString("Text.Locales"));
builder.append(directoryUpdateButton);
builder.append(directoryExportButton);
builder.nextLine(2);
builder.add(new JScrollPane(externalList),cc.xyw(builder.getColumn(), builder
.getRow(), 7));
builder.nextLine(2);
builder.add(messageArea,cc.xyw(builder.getColumn(), builder
.getRow(), 7));
return builder.getPanel();
}
}

View file

@ -79,6 +79,8 @@ public class Main {
System.setProperty("projectlibre.firstRun", firstRun+"");
System.setProperty("projectlibre.projectLibreRunNumber", getProjectLibreRunNumber()+"");
System.setProperty("projectlibre.projectLibreFirstRun", getProjectLibreFirstRun()+"");
// System.setProperty("file.encoding", "UTF-8");
Environment.setStandAlone(true);
String[] formatedArgs;

View file

@ -144,6 +144,7 @@ public interface MenuActionConstants {
public static final String ACTION_UPDATE_PROJECT = "UpdateProject";
public static final String ACTION_SAVE_BASELINE = "SaveBaseline";
public static final String ACTION_CLEAR_BASELINE = "ClearBaseline";
public static final String ACTION_LOCALE = "LocaleAction";
public static final String ACTION_CALENDAR_OPTIONS = "CalendarOptions";

View file

@ -74,13 +74,12 @@ import javax.swing.JToolBar;
import org.apache.batik.util.gui.resource.ActionMap;
import org.apache.batik.util.gui.resource.ButtonFactory;
import org.apache.batik.util.gui.resource.RibbonFactory;
import org.pushingpixels.flamingo.api.common.AbstractCommandButton;
import org.pushingpixels.flamingo.api.ribbon.RibbonTask;
import com.projectlibre.ui.ribbon.CustomRibbonBandGenerator;
import com.projectlibre1.pm.graphic.TabbedNavigation;
import com.projectlibre1.strings.DirectoryClassLoader;
import com.projectlibre1.preference.ConfigurationFile;
import com.projectlibre1.util.ClassLoaderUtils;
import com.projectlibre1.util.Environment;
@ -121,12 +120,10 @@ public class MenuManager {
private MenuManager(ActionMap rootActionMap) {
this.rootActionMap = rootActionMap;
ResourceBundle internalBundle=null,bundle=null;
if (bundle==null){
try{
DirectoryClassLoader dir=new DirectoryClassLoader();
if (dir.isValid()){
bundle=ResourceBundle.getBundle(MENU_BUNDLE_CONF_DIR,Locale.getDefault(),dir);
}
bundle=ConfigurationFile.getDirectoryBundle(MENU_BUNDLE_CONF_DIR);
}catch(Exception e){}
if (internalBundle==null) internalBundle = ResourceBundle.getBundle(MENU_INTERNAL_BUNDLE,Locale.getDefault(),ClassLoaderUtils.getLocalClassLoader());
if (bundle==null) bundle = ResourceBundle.getBundle(MENU_BUNDLE,Locale.getDefault(),ClassLoaderUtils.getLocalClassLoader());

View file

@ -225,4 +225,9 @@ ChooseFilter.tooltip = Filter
ChooseSort.tooltip = Sort
ChooseGroup.tooltip = Group
PreferencesRibbonBand.title=Preferences
RibbonLocale.text=Locale
RibbonLocale.tooltip=Locale...
RibbonLocale.mnemonic=L

View file

@ -84,6 +84,7 @@ ClipboardRibbonBand = RibbonPaste.TOP RibbonCopy RibbonCut
TaskRibbonBand = RibbonInsert RibbonDelete - RibbonIndent RibbonOutdent - RibbonLink RibbonUnlink - RibbonTaskInformation RibbonChangeWorkingTime RibbonNotes RibbonAssignResources RibbonSaveBaseline RibbonClearBaseline RibbonFind RibbonScrollToTask RibbonUpdateTasks
ResourceRibbonBand = RibbonInsert RibbonDelete - RibbonIndent RibbonOutdent - RibbonResourceInformation RibbonChangeWorkingTime RibbonNotes RibbonFind
ProjectRibbonBand = RibbonProjects.TOP RibbonProjectInformation RibbonChangeWorkingTime RibbonProjectsDialog RibbonSaveBaseline RibbonClearBaseline RibbonUpdateProject
PreferencesRibbonBand = RibbonLocale
TaskViewsZoomRibbonBand = RibbonGantt.TOP RibbonNetwork RibbonWBS RibbonTaskUsageDetail RibbonZoomIn RibbonZoomOut
ResourceViewsZoomRibbonBand = RibbonResources.TOP RibbonRBS RibbonResourceUsageDetail RibbonZoomIn RibbonZoomOut
TaskViewsRibbonBand = RibbonGantt.TOP RibbonNetwork RibbonWBS RibbonTaskUsageDetail
@ -201,6 +202,8 @@ RibbonSaveBaseline.action = SaveBaselineAction
RibbonClearBaseline.type = ITEM
RibbonClearBaseline.action = ClearBaselineAction
RibbonLocale.type=ITEM
RibbonLocale.action=LocaleAction
RibbonGantt.icon =view.gantt
RibbonGantt.action =GanttAction
@ -360,6 +363,7 @@ UpdateTasks.action = UpdateTasksAction
UpdateProject.action = UpdateProjectAction
SaveBaseline.action = SaveBaselineAction
ClearBaseline.action = ClearBaselineAction
LocaleAction.action = LocaleAction
Organizer.action = OrganizerAction
Customize.action = CustomizeAction
ScheduleOptions.action = ScheduleOptions

View file

@ -0,0 +1,234 @@
#The contents of this file are subject to the Common Public Attribution License 
#Version 1.0 (the "License"); you may not use this file except in compliance with 
#the License. You may obtain a copy of the License at 
#http://www.projectlibre.com/license . The License is based on the Mozilla Public 
#License Version 1.1 but Sections 14 and 15 have been added to cover use of 
#software over a computer network and provide for limited attribution for the 
#Original Developer. In addition, Exhibit A has been modified to be consistent 
#with Exhibit B. 
#
#Software distributed under the License is distributed on an "AS IS" basis, 
#WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the 
#specific language governing rights and limitations under the License. The 
#Original Code is ProjectLibre and ProjectLibre.
#The Original Developer is the Initial Developer and is both ProjectLibre, Inc and 
#ProjectLibre Inc. All portions of the code written by ProjectLibre are Copyright (c) 
#2006, 2008. All Rights Reserved. All portions of the code written by ProjectLibre 
#are Copyright (c) 2012. All Rights Reserved. Contributors ProjectLibre, Inc. and 
#ProjectLibre, Inc.
#
#Alternatively, the contents of this file may be used under the terms of the 
#ProjectLibre End-User License Agreement (the ProjectLibre License) in which case 
#the provisions of the ProjectLibre License are applicable instead of those above. 
#If you wish to allow use of your version of this file only under the terms of the 
#ProjectLibre License and not to allow others to use your version of this file under 
#the CPAL, indicate your decision by deleting the provisions above and replace them 
#with the notice and other provisions required by the Project Libre License. If you 
#do not delete the provisions above, a recipient may use your version of this file 
#under either the CPAL or the ProjectLibre Licenses. 
#
#
#[NOTE: The text of this Exhibit A may differ slightly from the text of the notices 
#in the Source Code files of the Original Code. You should use the text of this 
#Exhibit A rather than the text found in the Original Code Source Code for Your 
#Modifications.] 
#EXHIBIT B. Attribution Information both ProjectLibre and ProjectLibre required
#
#Attribution Copyright Notice: Copyright (c) 2012, ProjectLibre, Inc.
#Attribution Phrase (not exceeding 10 words): ProjectLibre, the updated version of 
#ProjectLibre
#Attribution URL: http://www.projectlibre.com
#Graphic Image as provided in the Covered Code as file: projectlibre-logo.png with 
#alternatives listed on http://www.projectlibre.com/logo 
#
#Display of Attribution Information is required in Larger Works which are defined in 
#the CPAL as a work which combines Covered Code or portions thereof with code not 
#governed by the terms of the CPAL. However, in addition to the other notice 
#obligations, all copies of the Covered Code in Executable and Source Code form 
#distributed must, as a form of attribution of the original author, include on each 
#user interface screen the "ProjectLibre"  and \u201CProjectLibre\u201D logos visible to all users. 
#The ProjectLibre logo should be located horizontally aligned with the menu bar and left 
#justified on the top left of the screen adjacent to the File menu. The logo must be 
#at least 100 x 25 pixels. When users click on the "ProjectLibre" logo it must direct them 
#back to http://www.ProjectLibre.com. The ProjectLibre logo should be located horizontally 
#aligned immediately above the ProjectLibre logo and left justified in alignment with the 
#ProjectLibre logo. The logo must be at least 144 x 31 pixels. When users click on the 
#"ProjectLibre" logo it must direct them back to http://www.projectlibre.com.
#
#Attribution Copyright Notice: Copyright (c) 2006, 2020 ProjectLibre, Inc.
#Attribution Phrase (not exceeding 10 words): Powered by ProjectLibre, an open source 
#solution from ProjectLibre
#Attribution URL: http://www.ProjectLibre.com
#Graphic Image as provided in the Covered Code as file: ProjectLibre_logo.png with 
#alternatives listed on http://www.ProjectLibre.com/logo 
#
#Display of Attribution Information is required in Larger Works which are defined in 
#the CPAL as a work which combines Covered Code or portions thereof with code not 
#governed by the terms of the CPAL. However, in addition to the other notice 
#obligations, all copies of the Covered Code in Executable and Source Code form 
#distributed must, as a form of attribution of the original author, include on each 
#user interface screen the "ProjectLibre" and \u201CProjectLibre\u201D logos visible to all users. 
#The ProjectLibre logo should be located horizontally aligned with the menu bar and left 
#justified on the top left of the screen adjacent to the File menu. \u00A0The logo must be 
#at least 100 x 25 pixels. When users click on the "ProjectLibre" logo it must direct them 
#back to http://www.ProjectLibre.com.
#
#
# LOCALIZATION NOTES:
#
# The only lines to localize have the following suffixes:
# .text
# .title
# .tooltip
# .mnemonic (normally first letter of .text)
# .accelerator (normally CTRL+first letter of .text)
#
ProjectRibbonTask.title=Fil
TaskRibbonTask.title=Opgave
ResourceRibbonTask.title=Ressource
ViewRibbonTask.title=Vis
FileRibbonBand.title=Fil
PrintRibbonBand.title=Udskriv
ClipboardRibbonBand.title=Udklipsholder
#EditingRibbonBand.title=Redigering
TaskRibbonBand.title=Opgave
ResourceRibbonBand.title=Ressource
ProjectRibbonBand.title=Projekt
TaskViewsZoomRibbonBand.title=Visninger
TaskViewsRibbonBand.title=Opgavevisninger
ResourceViewsZoomRibbonBand.title=Visninger
ResourceViewsRibbonBand.title=Ressourcevisninger
OtherViewsRibbonBand.title=Andre visninger
SubViewsRibbonBand.title=Del-visninger
FiltersRibbonBand.title=Filtre
RibbonNewProject.text=Ny
RibbonNewProject.tooltip=Nyt projekt
RibbonOpenProject.text=Åbn
RibbonOpenProject.tooltip=Åbn projekt
RibbonSaveProject.text=Gem
RibbonSaveProject.tooltip=Gem projekt
RibbonSaveProjectAs.text=Gem som
RibbonSaveProjectAs.tooltip=Gem dette som et nyt projekt
RibbonCloseProject.text=Luk
RibbonCloseProject.tooltip=Luk projekt
RibbonPrint.text=Udskriv
RibbonPrint.tooltip=Udskriv det nuværende dokument.
RibbonPrintPreview.text=Forhåndsvisning
RibbonPrintPreview.tooltip=Udskrift forhåndsvisning
RibbonPDF.text=PDF
RibbonPDF.tooltip=PDF
RibbonCut.text=Klip
RibbonCut.tooltip=Klip
RibbonCopy.text=Kopier
RibbonCopy.tooltip=Kopier
RibbonPaste.text=Indsæt
RibbonPaste.tooltip=Indsæt
RibbonDelete.text=Slet
RibbonDelete.tooltip=Slet
RibbonZoomIn.text=Zoom ind
RibbonZoomIn.tooltip=Zoom ind
RibbonZoomOut.text=Zoom ud
RibbonZoomOut.tooltip=Zoom ud
RibbonFind.text=Find
RibbonFind.tooltip=Find
RibbonScrollToTask.text=Scroll til opgave
RibbonScrollToTask.tooltip=Scroll til opgave
RibbonOutdent.text=Udrykning
RibbonOutdent.tooltip=Udrykning
RibbonIndent.text=Indrykning
RibbonIndent.tooltip=Indrykning
RibbonLink.text=Link
RibbonLink.tooltip=Link
RibbonUnlink.text=Fjern link
RibbonUnlink.tooltip=Fjern link
RibbonTaskInformation.text=Information
RibbonTaskInformation.tooltip=Opgaveinformation
RibbonResourceInformation.text=Information
RibbonResourceInformation.tooltip=Ressourceinformation
RibbonProjectInformation.text=Information
RibbonProjectInformation.tooltip=Projektinformation
RibbonChangeWorkingTime.text=Kalender
RibbonChangeWorkingTime.tooltip=Ændre Arbejdskalender
RibbonNotes.text=Noter
RibbonNotes.tooltip=Noter...
RibbonInsert.text=Indsæt
RibbonInsert.tooltip=Indsæt
RibbonAssignResources.text=Tildel ressourcer
RibbonAssignResources.tooltip=Tildel ressourcer
RibbonProjectsDialog.text=Projektdialog
RibbonProjectsDialog.tooltip=Projekter
RibbonUpdateTasks.text=Opdater
RibbonUpdateTasks.tooltip=Opdater opgaver...
RibbonUpdateTasks.mnemonic=T
RibbonUpdateProject.text=Opdater
RibbonUpdateProject.tooltip=Opdater projekt...
RibbonUpdateProject.mnemonic=P
RibbonSaveBaseline.text=Gem Baseline
RibbonSaveBaseline.tooltip=Gem Baseline...
RibbonSaveBaseline.mnemonic=S
RibbonClearBaseline.text=Ryd Baseline
RibbonClearBaseline.tooltip=Ryd Baseline...
RibbonClearBaseline.mnemonic=C
RibbonGantt.text=Gantt
RibbonGantt.tooltip=Gantt
RibbonTrackingGantt.text=Sporing Gantt
RibbonTrackingGantt.tooltip=Sporing Gantt
RibbonTaskUsageDetail.text=Opgaveforbrug
RibbonTaskUsageDetail.tooltip=Opgaveforbrug
RibbonResourceUsageDetail.text=Ressourceforbrug
RibbonResourceUsageDetail.tooltip=Ressourceforbrug
RibbonNetwork.text=Netværk
RibbonNetwork.tooltip=Netværk
RibbonResources.text=Ressourcer
RibbonResources.tooltip=Ressourcer
RibbonProjects.text=Projekter
RibbonProjects.tooltip=Projekter
RibbonWBS.text=WBS
RibbonWBS.tooltip=WBS
RibbonRBS.text=RBS
RibbonRBS.tooltip=RBS
RibbonReport.text=Rapport
RibbonReport.tooltip=Rapport
RibbonHistogram.text=Histogram
RibbonHistogram.tooltip=Histogram
RibbonCharts.text=Diagrammer
RibbonCharts.tooltip=Diagrammer
RibbonTaskUsage.text=Opgaveforbrug
RibbonTaskUsage.tooltip=Opgaveforbrug
RibbonResourceUsage.text=Ressourceforbrug
RibbonResourceUsage.tooltip=Ressourceforbrug
RibbonNoSubWindow.text=Ingen undervindue
RibbonNoSubWindow.tooltip=Ingen undervindue
RibbonNoTextHistogram.tooltip=Histogram
RibbonNoTextCharts.tooltip=Diagrammer
RibbonNoTextTaskUsage.tooltip=Opgaveforbrug
RibbonNoTextResourceUsage.tooltip=Ressourceforbrug
RibbonNoTextNoSubWindow.tooltip=Ingen undervindue
RibbonTopBarSaveProject.text=Gem projekt
RibbonTopBarSaveProject.tooltip=Gem projekt
RibbonTopBarUndo.text=Fortryd
RibbonTopBarUndo.tooltip=Fortryd
RibbonTopBarRedo.text=Annuller fortryd
RibbonTopBarRedo.tooltip=Annuller fortryd
PrintPreviewFirst.tooltip=Første side
PrintPreviewBack.tooltip=Forrige side
PrintPreviewForward.tooltip=Næste side
PrintPreviewLast.tooltip=Sidste side
PrintPreviewDown.tooltip=Forrige side
PrintPreviewUp.tooltip=Næste side
PrintPreviewZoomOut.tooltip=Zoom ud
PrintPreviewZoomReset.tooltip=Nulstil zoom
PrintPreviewZoomIn.tooltip=Zoom ind
PrintPreviewFormat.tooltip=Sideopsætning
PrintPreviewPrint.tooltip=Udskriv
PrintPreviewPDF.tooltip=PDF
PrintPreviewLeftView.tooltip=Vis venstre del
PrintPreviewRightView.tooltip=Vis højre del
Help.text=Hjælp
ChooseFilter.tooltip=Filtrér
ChooseSort.tooltip=Sortér
ChooseGroup.tooltip=Gruppér

View file

@ -0,0 +1,233 @@
#The contents of this file are subject to the Common Public Attribution License 
#Version 1.0 (the "License"); you may not use this file except in compliance with 
#the License. You may obtain a copy of the License at 
#http://www.projectlibre.com/license . The License is based on the Mozilla Public 
#License Version 1.1 but Sections 14 and 15 have been added to cover use of 
#software over a computer network and provide for limited attribution for the 
#Original Developer. In addition, Exhibit A has been modified to be consistent 
#with Exhibit B. 
#
#Software distributed under the License is distributed on an "AS IS" basis, 
#WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the 
#specific language governing rights and limitations under the License. The 
#Original Code is ProjectLibre and ProjectLibre.
#The Original Developer is the Initial Developer and is both ProjectLibre, Inc and 
#ProjectLibre Inc. All portions of the code written by ProjectLibre are Copyright (c) 
#2006, 2008. All Rights Reserved. All portions of the code written by ProjectLibre 
#are Copyright (c) 2012. All Rights Reserved. Contributors ProjectLibre, Inc. and 
#ProjectLibre, Inc.
#
#Alternatively, the contents of this file may be used under the terms of the 
#ProjectLibre End-User License Agreement (the ProjectLibre License) in which case 
#the provisions of the ProjectLibre License are applicable instead of those above. 
#If you wish to allow use of your version of this file only under the terms of the 
#ProjectLibre License and not to allow others to use your version of this file under 
#the CPAL, indicate your decision by deleting the provisions above and replace them 
#with the notice and other provisions required by the Project Libre License. If you 
#do not delete the provisions above, a recipient may use your version of this file 
#under either the CPAL or the ProjectLibre Licenses. 
#
#
#[NOTE: The text of this Exhibit A may differ slightly from the text of the notices 
#in the Source Code files of the Original Code. You should use the text of this 
#Exhibit A rather than the text found in the Original Code Source Code for Your 
#Modifications.] 
#EXHIBIT B. Attribution Information both ProjectLibre and ProjectLibre required
#
#Attribution Copyright Notice: Copyright (c) 2012, ProjectLibre, Inc.
#Attribution Phrase (not exceeding 10 words): ProjectLibre, the updated version of 
#ProjectLibre
#Attribution URL: http://www.projectlibre.com
#Graphic Image as provided in the Covered Code as file: projectlibre-logo.png with 
#alternatives listed on http://www.projectlibre.com/logo 
#
#Display of Attribution Information is required in Larger Works which are defined in 
#the CPAL as a work which combines Covered Code or portions thereof with code not 
#governed by the terms of the CPAL. However, in addition to the other notice 
#obligations, all copies of the Covered Code in Executable and Source Code form 
#distributed must, as a form of attribution of the original author, include on each 
#user interface screen the "ProjectLibre"  and \u201CProjectLibre\u201D logos visible to all users. 
#The ProjectLibre logo should be located horizontally aligned with the menu bar and left 
#justified on the top left of the screen adjacent to the File menu. The logo must be 
#at least 100 x 25 pixels. When users click on the "ProjectLibre" logo it must direct them 
#back to http://www.ProjectLibre.com. The ProjectLibre logo should be located horizontally 
#aligned immediately above the ProjectLibre logo and left justified in alignment with the 
#ProjectLibre logo. The logo must be at least 144 x 31 pixels. When users click on the 
#"ProjectLibre" logo it must direct them back to http://www.projectlibre.com.
#
#Attribution Copyright Notice: Copyright (c) 2006, 2020 ProjectLibre, Inc.
#Attribution Phrase (not exceeding 10 words): Powered by ProjectLibre, an open source 
#solution from ProjectLibre
#Attribution URL: http://www.ProjectLibre.com
#Graphic Image as provided in the Covered Code as file: ProjectLibre_logo.png with 
#alternatives listed on http://www.ProjectLibre.com/logo 
#
#Display of Attribution Information is required in Larger Works which are defined in 
#the CPAL as a work which combines Covered Code or portions thereof with code not 
#governed by the terms of the CPAL. However, in addition to the other notice 
#obligations, all copies of the Covered Code in Executable and Source Code form 
#distributed must, as a form of attribution of the original author, include on each 
#user interface screen the "ProjectLibre" and \u201CProjectLibre\u201D logos visible to all users. 
#The ProjectLibre logo should be located horizontally aligned with the menu bar and left 
#justified on the top left of the screen adjacent to the File menu. \u00A0The logo must be 
#at least 100 x 25 pixels. When users click on the "ProjectLibre" logo it must direct them 
#back to http://www.ProjectLibre.com.
#
#
# LOCALIZATION NOTES:
#
# The only lines to localize have the following suffixes:
# .text
# .title
# .tooltip
# .mnemonic (normally first letter of .text)
# .accelerator (normally CTRL+first letter of .text)
#
ProjectRibbonTask.title=\u0391\u03C1\u03C7\u03B5\u03AF\u03BF
TaskRibbonTask.title=\u0395\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1
ResourceRibbonTask.title=\u03A0\u03CC\u03C1\u03BF\u03C2
ViewRibbonTask.title=\u03A0\u03C1\u03BF\u03B2\u03BF\u03BB\u03AE
FileRibbonBand.title=\u0391\u03C1\u03C7\u03B5\u03AF\u03BF 
PrintRibbonBand.title=\u0395\u03BA\u03C4\u03CD\u03C0\u03C9\u03C3\u03B7
ClipboardRibbonBand.title=\u03A0\u03C1\u03CC\u03C7\u03B5\u03B9\u03C1\u03BF
#EditingRibbonBand.title=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1
TaskRibbonBand.title=  \u0395\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1
ResourceRibbonBand.title=\u03A0\u03CC\u03C1\u03BF\u03C2
ProjectRibbonBand.title=\u0388\u03C1\u03B3\u03BF
TaskViewsZoomRibbonBand.title=\u03A0\u03C1\u03BF\u03B2\u03BF\u03BB\u03AD\u03C2
TaskViewsRibbonBand.title=\u03A0\u03C1\u03BF\u03B2\u03BF\u03BB\u03AD\u03C2 \u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1\u03C2
ResourceViewsZoomRibbonBand.title=\u03A0\u03C1\u03BF\u03B2\u03BF\u03BB\u03AD\u03C2
ResourceViewsRibbonBand.title=\u03A0\u03C1\u03BF\u03B2\u03BF\u03BB\u03AD\u03C2 \u03A0\u03CC\u03C1\u03BF\u03C5
OtherViewsRibbonBand.title=\u0386\u03BB\u03BB\u03B5\u03C2 \u03C0\u03C1\u03BF\u03B2\u03BF\u03BB\u03AD\u03C2
SubViewsRibbonBand.title=\u03A5\u03C0\u03BF-\u03C0\u03C1\u03BF\u03B2\u03BF\u03BB\u03AD\u03C2
FiltersRibbonBand.title=\u03A6\u03AF\u03BB\u03C4\u03C1\u03B1
RibbonNewProject.text=\u039D\u03AD\u03BF
RibbonNewProject.tooltip=\u039D\u03AD\u03BF \u03AD\u03C1\u03B3\u03BF
RibbonOpenProject.text=\u0386\u03BD\u03BF\u03B9\u03B3\u03BC\u03B1
RibbonOpenProject.tooltip=\u0386\u03BD\u03BF\u03B9\u03B3\u03BC\u03B1 \u0388\u03C1\u03B3\u03BF\u03C5
RibbonSaveProject.text=\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7
RibbonSaveProject.tooltip=\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 \u03AD\u03C1\u03B3\u03BF\u03C5
RibbonSaveProjectAs.text=\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 \u03C9\u03C2
RibbonSaveProjectAs.tooltip=\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 \u03C9\u03C2 \u03BD\u03AD\u03BF \u03AD\u03C1\u03B3\u03BF
RibbonCloseProject.text=\u039A\u03BB\u03B5\u03AF\u03C3\u03B9\u03BC\u03BF
RibbonCloseProject.tooltip=\u039A\u03BB\u03B5\u03AF\u03C3\u03B9\u03BC\u03BF \u03AD\u03C1\u03B3\u03BF\u03C5
RibbonPrint.text=\u0395\u03BA\u03C4\u03CD\u03C0\u03C9\u03C3\u03B7
RibbonPrint.tooltip=\u0395\u03BA\u03C4\u03CD\u03C0\u03C9\u03C3\u03B5 \u03C4\u03BF \u03C4\u03C1\u03AD\u03C7\u03BF\u03BD \u03AD\u03B3\u03B3\u03C1\u03B1\u03C6\u03BF
RibbonPrintPreview.text=\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03C3\u03BA\u03CC\u03C0\u03B7\u03C3\u03B7
RibbonPrintPreview.tooltip=\u0395\u03BA\u03C4\u03CD\u03C0\u03C9\u03C3\u03B7 \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03C3\u03BA\u03CC\u03C0\u03B7\u03C3\u03B7\u03C2
RibbonPDF.text=PDF
RibbonPDF.tooltip=PDF
RibbonCut.text=\u0391\u03C0\u03BF\u03BA\u03BF\u03C0\u03AE
RibbonCut.tooltip=\u0391\u03C0\u03BF\u03BA\u03BF\u03C0\u03AE
RibbonCopy.text=\u0391\u03BD\u03C4\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE
RibbonCopy.tooltip=\u0391\u03BD\u03C4\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE
RibbonPaste.text=\u0395\u03C0\u03B9\u03BA\u03CC\u03BB\u03BB\u03B7\u03C3\u03B7
RibbonPaste.tooltip=\u0395\u03C0\u03B9\u03BA\u03CC\u03BB\u03BB\u03B7\u03C3\u03B7
RibbonDelete.text=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE
RibbonDelete.tooltip=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE
RibbonZoomIn.text=\u039C\u03B5\u03B3\u03AD\u03B8\u03C5\u03BD\u03C3\u03B7
RibbonZoomIn.tooltip=\u039C\u03B5\u03B3\u03AD\u03B8\u03C5\u03BD\u03C3\u03B7
RibbonZoomOut.text=\u03A3\u03BC\u03AF\u03BA\u03C1\u03C5\u03BD\u03C3\u03B7
RibbonZoomOut.tooltip=\u03A3\u03BC\u03AF\u03BA\u03C1\u03C5\u03BD\u03C3\u03B7
RibbonFind.text=\u0391\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7
RibbonFind.tooltip=\u0391\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7
RibbonScrollToTask.text=\u03A3\u03BA\u03C1\u03CC\u03BB\u03B1\u03C1\u03B5 \u03C3\u03C4\u03B7\u03BD \u0395\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1
RibbonScrollToTask.tooltip=\u03A3\u03BA\u03C1\u03CC\u03BB\u03B1\u03C1\u03B5 \u03C3\u03C4\u03B7\u03BD \u0395\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1
RibbonOutdent.text=\u03A0\u03C1\u03BF\u03B5\u03BE\u03BF\u03C7\u03AE
RibbonOutdent.tooltip=\u03A0\u03C1\u03BF\u03B5\u03BE\u03BF\u03C7\u03AE
RibbonIndent.text=\u0395\u03C3\u03BF\u03C7\u03AE
RibbonIndent.tooltip=\u0395\u03C3\u03BF\u03C7\u03AE
RibbonLink.text=\u03A3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7
RibbonLink.tooltip=\u03A3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7
RibbonUnlink.text=\u0391\u03C0\u03BF\u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7
RibbonUnlink.tooltip=\u0391\u03C0\u03BF\u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7
RibbonTaskInformation.text=\u03A0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03AF\u03B1
RibbonTaskInformation.tooltip=\u03A0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03AF\u03B1 \u0395\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1\u03C2
RibbonResourceInformation.text=\u03A0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03AF\u03B1
RibbonResourceInformation.tooltip=\u03A0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03AF\u03B1 \u03A0\u03CC\u03C1\u03BF\u03C5
RibbonProjectInformation.text=\u03A0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03AF\u03B1
RibbonProjectInformation.tooltip=\u03A0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03AF\u03B1 \u0388\u03C1\u03B3\u03BF\u03C5
RibbonChangeWorkingTime.text=\u0397\u03BC\u03B5\u03C1\u03BF\u03BB\u03CC\u03B3\u03B9\u03BF
RibbonChangeWorkingTime.tooltip=\u0391\u03BB\u03BB\u03B1\u03B3\u03AE \u0397\u03BC\u03B5\u03C1\u03BF\u03BB\u03BF\u03B3\u03AF\u03BF\u03C5 \u0395\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1\u03C2
RibbonNotes.text=\u03A3\u03B7\u03BC\u03B5\u03B9\u03CE\u03C3\u03B5\u03B9\u03C2
RibbonNotes.tooltip=\u03A3\u03B7\u03BC\u03B5\u03B9\u03CE\u03C3\u03B5\u03B9\u03C2
RibbonInsert.text=\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE
RibbonInsert.tooltip=\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE
RibbonAssignResources.text=\u0391\u03BD\u03AC\u03B8\u03B5\u03C3\u03B7 \u03A0\u03CC\u03C1\u03C9\u03BD
RibbonAssignResources.tooltip=\u0391\u03BD\u03AC\u03B8\u03B5\u03C3\u03B7 \u03A0\u03CC\u03C1\u03C9\u03BD
RibbonProjectsDialog.text=\u03A0\u03B1\u03C1\u03AC\u03B8\u03C5\u03C1\u03BF \u0394\u03B9\u03B1\u03BB\u03CC\u03B3\u03BF\u03C5 \u0388\u03C1\u03B3\u03C9\u03BD
RibbonProjectsDialog.tooltip=\u0388\u03C1\u03B3\u03B1
RibbonUpdateTasks.text=\u0395\u03BD\u03B7\u03BC\u03AD\u03C1\u03C9\u03C3\u03B7
RibbonUpdateTasks.tooltip=\u0395\u03BD\u03B7\u03BC\u03AD\u03C1\u03C9\u03C3\u03B7 \u0395\u03C1\u03B3\u03B1\u03C3\u03B9\u03CE\u03BD
RibbonUpdateTasks.mnemonic=T
RibbonUpdateProject.text=\u0395\u03BD\u03B7\u03BC\u03AD\u03C1\u03C9\u03C3\u03B7
RibbonUpdateProject.tooltip=\u0395\u03BD\u03B7\u03BC\u03AD\u03C1\u03C9\u03C3\u03B7 \u0388\u03C1\u03B3\u03BF\u03C5
RibbonUpdateProject.mnemonic=P
RibbonSaveBaseline.text=\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 \u0393\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2 \u0392\u03AC\u03C3\u03B7\u03C2
RibbonSaveBaseline.tooltip=\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 \u0393\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2 \u0392\u03AC\u03C3\u03B7\u03C2
RibbonSaveBaseline.mnemonic=S
RibbonClearBaseline.text=\u0395\u03BA\u03BA\u03B1\u03B8\u03AC\u03C1\u03B9\u03C3\u03B7 \u0393\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2 \u0392\u03AC\u03C3\u03B7\u03C2
RibbonClearBaseline.tooltip=\u0395\u03BA\u03BA\u03B1\u03B8\u03AC\u03C1\u03B9\u03C3\u03B7 \u0393\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2 \u0392\u03AC\u03C3\u03B7\u03C2
RibbonClearBaseline.mnemonic=C
RibbonGantt.text=Gantt 
RibbonGantt.tooltip=Gantt 
RibbonTrackingGantt.text=\u03A0\u03B1\u03C1\u03B1\u03BA\u03BF\u03BB\u03BF\u03CD\u03B8\u03B7\u03C3\u03B7 Gantt
RibbonTrackingGantt.tooltip=\u03A0\u03B1\u03C1\u03B1\u03BA\u03BF\u03BB\u03BF\u03CD\u03B8\u03B7\u03C3\u03B7 Gantt
RibbonTaskUsageDetail.text=\u03A7\u03C1\u03AE\u03C3\u03B7 \u0395\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1\u03C2
RibbonTaskUsageDetail.tooltip=\u03A7\u03C1\u03AE\u03C3\u03B7 \u0395\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1\u03C2
RibbonResourceUsageDetail.text=\u03A7\u03C1\u03AE\u03C3\u03B7 \u03A0\u03CC\u03C1\u03BF\u03C5
RibbonResourceUsageDetail.tooltip=\u03A7\u03C1\u03AE\u03C3\u03B7 \u03A0\u03CC\u03C1\u03BF\u03C5
RibbonNetwork.text=\u0394\u03AF\u03BA\u03C4\u03C5\u03BF
RibbonNetwork.tooltip=\u0394\u03AF\u03BA\u03C4\u03C5\u03BF
RibbonResources.text=\u03A0\u03CC\u03C1\u03BF\u03B9
RibbonResources.tooltip=\u03A0\u03CC\u03C1\u03BF\u03B9
RibbonProjects.text=\u0388\u03C1\u03B3\u03B1
RibbonProjects.tooltip=\u0388\u03C1\u03B3\u03B1
RibbonWBS.text=WBS
RibbonWBS.tooltip=WBS
RibbonRBS.text=RBS
RibbonRBS.tooltip=RBS
RibbonReport.text=\u0391\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC
RibbonReport.tooltip=\u0391\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC
RibbonHistogram.text=\u0399\u03C3\u03C4\u03CC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1
RibbonHistogram.tooltip=\u0399\u03C3\u03C4\u03CC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1
RibbonCharts.text=\u0394\u03B9\u03B1\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03B1
RibbonCharts.tooltip=\u0394\u03B9\u03B1\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03B1
RibbonTaskUsage.text=\u03A7\u03C1\u03AE\u03C3\u03B7 \u0395\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1\u03C2
RibbonTaskUsage.tooltip=\u03A7\u03C1\u03AE\u03C3\u03B7 \u0395\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1\u03C2
RibbonResourceUsage.text=\u03A7\u03C1\u03AE\u03C3\u03B7 \u03A0\u03CC\u03C1\u03BF\u03C5
RibbonResourceUsage.tooltip=\u03A7\u03C1\u03AE\u03C3\u03B7 \u03A0\u03CC\u03C1\u03BF\u03C5
RibbonNoSubWindow.text=\u0394\u03B5\u03BD \u03C5\u03C0\u03AC\u03C1\u03C7\u03B5\u03B9 \u03C5\u03C0\u03BF-\u03C0\u03B1\u03C1\u03AC\u03B8\u03C5\u03C1\u03BF
RibbonNoSubWindow.tooltip=\u0394\u03B5\u03BD \u03C5\u03C0\u03AC\u03C1\u03C7\u03B5\u03B9 \u03C5\u03C0\u03BF-\u03C0\u03B1\u03C1\u03AC\u03B8\u03C5\u03C1\u03BF
RibbonNoTextHistogram.tooltip=\u0399\u03C3\u03C4\u03CC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1
RibbonNoTextCharts.tooltip=\u0394\u03B9\u03B1\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03B1
RibbonNoTextTaskUsage.tooltip=\u03A7\u03C1\u03AE\u03C3\u03B7 \u0395\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1\u03C2
RibbonNoTextResourceUsage.tooltip=\u03A7\u03C1\u03AE\u03C3\u03B7 \u03A0\u03CC\u03C1\u03BF\u03C5
RibbonNoTextNoSubWindow.tooltip=\u0394\u03B5\u03BD \u03C5\u03C0\u03AC\u03C1\u03C7\u03B5\u03B9 \u03C5\u03C0\u03BF-\u03C0\u03B1\u03C1\u03AC\u03B8\u03C5\u03C1\u03BF
RibbonTopBarSaveProject.text=\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 \u03AD\u03C1\u03B3\u03BF\u03C5
RibbonTopBarSaveProject.tooltip=\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 \u03AD\u03C1\u03B3\u03BF\u03C5
RibbonTopBarUndo.text=\u0391\u03BD\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7
RibbonTopBarUndo.tooltip=\u0391\u03BD\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7
RibbonTopBarRedo.text=\u0395\u03C0\u03B1\u03BD\u03B5\u03BA\u03C4\u03AD\u03BB\u03B5\u03C3\u03B7
RibbonTopBarRedo.tooltip=\u0395\u03C0\u03B1\u03BD\u03B5\u03BA\u03C4\u03AD\u03BB\u03B5\u03C3\u03B7
PrintPreviewFirst.tooltip=\u03A0\u03C1\u03CE\u03C4\u03B7 \u03A3\u03B5\u03BB\u03AF\u03B4\u03B1
PrintPreviewBack.tooltip=\u03A0\u03C1\u03BF\u03B7\u03B3\u03BF\u03CD\u03BC\u03B5\u03BD\u03B7 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1
PrintPreviewForward.tooltip=\u0395\u03C0\u03CC\u03BC\u03B5\u03BD\u03B7 \u03A3\u03B5\u03BB\u03AF\u03B4\u03B1
PrintPreviewLast.tooltip=\u03A4\u03B5\u03BB\u03B5\u03C5\u03C4\u03B1\u03AF\u03B1 \u03A3\u03B5\u03BB\u03AF\u03B4\u03B1
PrintPreviewDown.tooltip=\u03A0\u03C1\u03BF\u03B7\u03B3\u03BF\u03CD\u03BC\u03B5\u03BD\u03B7 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1
PrintPreviewUp.tooltip=\u0395\u03C0\u03CC\u03BC\u03B5\u03BD\u03B7 \u03A3\u03B5\u03BB\u03AF\u03B4\u03B1
PrintPreviewZoomOut.tooltip=\u03A3\u03BC\u03AF\u03BA\u03C1\u03C5\u03BD\u03C3\u03B7
PrintPreviewZoomReset.tooltip=\u0395\u03C0\u03B1\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC \u03B6\u03BF\u03C5\u03BC
PrintPreviewZoomIn.tooltip=\u039C\u03B5\u03B3\u03AD\u03B8\u03C5\u03BD\u03C3\u03B7
PrintPreviewFormat.tooltip=\u03A3\u03C4\u03AE\u03C3\u03B9\u03BC\u03BF \u03A3\u03B5\u03BB\u03AF\u03B4\u03B1\u03C2
PrintPreviewPrint.tooltip=\u0395\u03BA\u03C4\u03CD\u03C0\u03C9\u03C3\u03B7
PrintPreviewPDF.tooltip=PDF 
PrintPreviewLeftView.tooltip=\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03B1\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03BF\u03CD \u03C4\u03BC\u03AE\u03BC\u03B1\u03C4\u03BF\u03C2
PrintPreviewRightView.tooltip=\u03A0\u03B1\u03C1\u03BF\u03C5\u03C3\u03AF\u03B1\u03C3\u03B7 \u03B4\u03B5\u03BE\u03B9\u03BF\u03CD \u03C4\u03BC\u03AE\u03BC\u03B1\u03C4\u03BF\u03C2
Help.text=\u0392\u03BF\u03AE\u03B8\u03B5\u03B9\u03B1
ChooseFilter.tooltip=\u03A6\u03B9\u03BB\u03C4\u03C1\u03AC\u03C1\u03B9\u03C3\u03BC\u03B1
ChooseSort.tooltip=\u03A4\u03B1\u03BE\u03B9\u03BD\u03CC\u03BC\u03B7\u03C3\u03B7
ChooseGroup.tooltip=\u039F\u03BC\u03B1\u03B4\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7

View file

@ -1,214 +1,216 @@
###############################################################################
# The contents of this file are subject to the Common Public Attribution License
# Version 1.0 (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
# http://www.projectlibre.com/license . The License is based on the Mozilla Public
# License Version 1.1 but Sections 14 and 15 have been added to cover use of
# software over a computer network and provide for limited attribution for the
# Original Developer. In addition, Exhibit A has been modified to be consistent
# with Exhibit B.
#
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
# specific language governing rights and limitations under the License. The
# Original Code is ProjectLibre. The Original Developer is the Initial Developer
# and is ProjectLibre Inc. All portions of the code written by ProjectLibre are
# Copyright (c) 2012-2020. All Rights Reserved. All portions of the code written by
# ProjectLibre are Copyright (c) 2012-2020. All Rights Reserved. Contributor
# ProjectLibre, Inc.
#
# Alternatively, the contents of this file may be used under the terms of the
# ProjectLibre End-User License Agreement (the ProjectLibre License) in which case
# the provisions of the ProjectLibre License are applicable instead of those above.
# If you wish to allow use of your version of this file only under the terms of the
# ProjectLibre License and not to allow others to use your version of this file
# under the CPAL, indicate your decision by deleting the provisions above and
# replace them with the notice and other provisions required by the ProjectLibre
# License. If you do not delete the provisions above, a recipient may use your
# version of this file under either the CPAL or the ProjectLibre Licenses.
#
#
# [NOTE: The text of this Exhibit A may differ slightly from the text of the notices
# in the Source Code files of the Original Code. You should use the text of this
# Exhibit A rather than the text found in the Original Code Source Code for Your
# Modifications.]
#
# EXHIBIT B. Attribution Information for ProjectLibre required
#
# Attribution Copyright Notice: Copyright (c) 2012-2020, ProjectLibre, Inc.
# Attribution Phrase (not exceeding 10 words):
# ProjectLibre, open source project management software.
# Attribution URL: http://www.projectlibre.com
# Graphic Image as provided in the Covered Code as file: projectlibre-logo.png with
# alternatives listed on http://www.projectlibre.com/logo
#
# Display of Attribution Information is required in Larger Works which are defined
# in the CPAL as a work which combines Covered Code or portions thereof with code
# not governed by the terms of the CPAL. However, in addition to the other notice
# obligations, all copies of the Covered Code in Executable and Source Code form
# distributed must, as a form of attribution of the original author, include on
# each user interface screen the "ProjectLibre" logo visible to all users.
# The ProjectLibre logo should be located horizontally aligned with the menu bar
# and left justified on the top left of the screen adjacent to the File menu. The
# logo must be at least 144 x 31 pixels. When users click on the "ProjectLibre"
# logo it must direct them back to http://www.projectlibre.com.
###############################################################################
#
#
# LOCALIZATION NOTES:
#
# The only lines to localize have the following suffixes:
# .text
# .title
# .tooltip
# .mnemonic (normally first letter of .text)
# .accelerator (normally CTRL+first letter of .text)
#
ProjectRibbonTask.title = File
TaskRibbonTask.title = Attività
ResourceRibbonTask.title = Risorsa
ViewRibbonTask.title = Visualizza
FileRibbonBand.title = File
PrintRibbonBand.title = Stampa
ClipboardRibbonBand.title = Clipboard
#EditingRibbonBand.title = Modifica
TaskRibbonBand.title = Attività
ResourceRibbonBand.title = Risorsa
ProjectRibbonBand.title = Progetto
TaskViewsZoomRibbonBand.title = Viste
TaskViewsRibbonBand.title = Viste attività
ResourceViewsZoomRibbonBand.title = Viste
ResourceViewsRibbonBand.title = Viste risorsa
OtherViewsRibbonBand.title = Altre viste
SubViewsRibbonBand.title = Sotto-viste
FiltersRibbonBand.title = Filtri
RibbonNewProject.text =Nuovo
RibbonNewProject.tooltip =Nuovo progetto
RibbonOpenProject.text =Apri
RibbonOpenProject.tooltip =Apri progetto
RibbonSaveProject.text =Salva
RibbonSaveProject.tooltip =Salva progetto
RibbonSaveProjectAs.text =Salva con nome
RibbonSaveProjectAs.tooltip =Salva come nuovo progetto
RibbonCloseProject.text =Chiudi
RibbonCloseProject.tooltip =Chiudi progetto
RibbonPrint.text =Stampa
RibbonPrint.tooltip =Stampa il dcumento corrente.
RibbonPrintPreview.text =Anteprima
RibbonPrintPreview.tooltip =Anteprima di stampa
RibbonPDF.text =PDF
RibbonPDF.tooltip =PDF
RibbonCut.text =Taglia
RibbonCut.tooltip =Taglia
RibbonCopy.text =Copia
RibbonCopy.tooltip =Copia
RibbonPaste.text =Incolla
RibbonPaste.tooltip =Incolla
RibbonDelete.text =Cancella
RibbonDelete.tooltip =Cancella
RibbonZoomIn.text =Zoom avanti
RibbonZoomIn.tooltip =Zoom avanti
RibbonZoomOut.text =Zoom indietro
RibbonZoomOut.tooltip =Zoom indietro
RibbonFind.text =Trova
RibbonFind.tooltip = Trova
RibbonScrollToTask.text = Scorri fino all'attività
RibbonScrollToTask.tooltip = Scorri fino all'attività
RibbonOutdent.text =Diminuisci rientro
RibbonOutdent.tooltip =Diminuisci rientro
RibbonIndent.text =Aumenta rientro
RibbonIndent.tooltip =Aumenta rientro
RibbonLink.text=Inserisi collegamento
RibbonLink.tooltip=Inserisci collegamento
RibbonUnlink.text=Elimina collegamento
RibbonUnlink.tooltip=Elimina collegamento
RibbonTaskInformation.text =Informazioni
RibbonTaskInformation.tooltip =Informazioni attività
RibbonResourceInformation.text =Informazioni
RibbonResourceInformation.tooltip =Informazioni risorsa
RibbonProjectInformation.text =Informazioni
RibbonProjectInformation.tooltip =Informazioni progetto
RibbonChangeWorkingTime.text=Calendario
RibbonChangeWorkingTime.tooltip=Modifica il calendario di lavoro
RibbonNotes.text =Note
RibbonNotes.tooltip =Note...
RibbonInsert.text =Inserisci
RibbonInsert.tooltip =Inserisci
RibbonAssignResources.text=Assegna risorse
RibbonAssignResources.tooltip=Assegna risorse
RibbonProjectsDialog.text =Finestra progetti
RibbonProjectsDialog.tooltip =Progetti
RibbonUpdateTasks.text =Aggiorna
RibbonUpdateTasks.tooltip =Aggiorna attività...
RibbonUpdateTasks.mnemonic = A
RibbonUpdateProject.text =Aggiorna
RibbonUpdateProject.tooltip =Aggiorna progetto...
RibbonUpdateProject.mnemonic = P
RibbonSaveBaseline.text =Salva Baseline
RibbonSaveBaseline.tooltip =Salva Baseline...
RibbonSaveBaseline.mnemonic = S
RibbonClearBaseline.text =Elimina Baseline
RibbonClearBaseline.tooltip =Elimina Baseline...
RibbonClearBaseline.mnemonic = C
RibbonGantt.text=Gantt
RibbonGantt.tooltip=Gantt
RibbonTrackingGantt.text=Tracking Gantt
RibbonTrackingGantt.tooltip=Tracking Gantt
RibbonTaskUsageDetail.text=Uso delle attività
RibbonTaskUsageDetail.tooltip=Uso delle attività
RibbonResourceUsageDetail.text=Uso delle risorse
RibbonResourceUsageDetail.tooltip=Uso delle risorse
RibbonNetwork.text=Network
RibbonNetwork.tooltip=Network
RibbonResources.text=Risorse
RibbonResources.tooltip=Risorse
RibbonProjects.text=Progetti
RibbonProjects.tooltip=Progetti
RibbonWBS.text=WBS
RibbonWBS.tooltip=WBS
RibbonRBS.text=RBS
RibbonRBS.tooltip=RBS
RibbonReport.text=Report
RibbonReport.tooltip=Report
RibbonHistogram.text=Istogramma
RibbonHistogram.tooltip=Istogramma
RibbonCharts.text=Grafici
RibbonCharts.tooltip=Grafici
RibbonTaskUsage.text=Uso delle attività
RibbonTaskUsage.tooltip=Uso delle attività
RibbonResourceUsage.text=Uso delle risorse
RibbonResourceUsage.tooltip=Uso delle risorse
RibbonNoSubWindow.text=Nessuna sotto-finestra
RibbonNoSubWindow.tooltip=Nessuna sotto-finestra
RibbonNoTextHistogram.tooltip=Istogramma
RibbonNoTextCharts.tooltip=Grafici
RibbonNoTextTaskUsage.tooltip=Utilizzo attività
RibbonNoTextResourceUsage.tooltip=Utilizzo risorse
RibbonNoTextNoSubWindow.tooltip=Nessuna sotto-finestra
RibbonTopBarSaveProject.text=Salva progetto
RibbonTopBarSaveProject.tooltip=Salva progetto
RibbonTopBarUndo.text=Annulla
RibbonTopBarUndo.tooltip=Annulla
RibbonTopBarRedo.text=Ripeti
RibbonTopBarRedo.tooltip=Ripeti
PrintPreviewFirst.tooltip=Prima pagina
PrintPreviewBack.tooltip=Pagina precedente
PrintPreviewForward.tooltip = Pagina successiva
PrintPreviewLast.tooltip = Ultima pagina
PrintPreviewDown.tooltip = Pagina precedente
PrintPreviewUp.tooltip = Pagina successiva
PrintPreviewZoomOut.tooltip = Zoom indietro
PrintPreviewZoomReset.tooltip = Ripristina Zoom
PrintPreviewZoomIn.tooltip = Zoom avanti
PrintPreviewFormat.tooltip = Impostazioni pagina
PrintPreviewPrint.tooltip = Stampa
PrintPreviewPDF.tooltip = PDF
PrintPreviewLeftView.tooltip = Mostra la parte sinistra
PrintPreviewRightView.tooltip = Mostra la parte destra
Help.text = Aiuto
ChooseFilter.tooltip = Filtro
ChooseSort.tooltip = Ordina
ChooseGroup.tooltip = Gruppo
###############################################################################
# The contents of this file are subject to the Common Public Attribution License
# Version 1.0 (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
# http://www.projectlibre.com/license . The License is based on the Mozilla Public
# License Version 1.1 but Sections 14 and 15 have been added to cover use of
# software over a computer network and provide for limited attribution for the
# Original Developer. In addition, Exhibit A has been modified to be consistent
# with Exhibit B.
#
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
# specific language governing rights and limitations under the License. The
# Original Code is ProjectLibre. The Original Developer is the Initial Developer
# and is ProjectLibre Inc. All portions of the code written by ProjectLibre are
# Copyright (c) 2012-2020. All Rights Reserved. All portions of the code written by
# ProjectLibre are Copyright (c) 2012-2020. All Rights Reserved. Contributor
# ProjectLibre, Inc.
#
# Alternatively, the contents of this file may be used under the terms of the
# ProjectLibre End-User License Agreement (the ProjectLibre License) in which case
# the provisions of the ProjectLibre License are applicable instead of those above.
# If you wish to allow use of your version of this file only under the terms of the
# ProjectLibre License and not to allow others to use your version of this file
# under the CPAL, indicate your decision by deleting the provisions above and
# replace them with the notice and other provisions required by the ProjectLibre
# License. If you do not delete the provisions above, a recipient may use your
# version of this file under either the CPAL or the ProjectLibre Licenses.
#
#
# [NOTE: The text of this Exhibit A may differ slightly from the text of the notices
# in the Source Code files of the Original Code. You should use the text of this
# Exhibit A rather than the text found in the Original Code Source Code for Your
# Modifications.]
#
# EXHIBIT B. Attribution Information for ProjectLibre required
#
# Attribution Copyright Notice: Copyright (c) 2012-2020, ProjectLibre, Inc.
# Attribution Phrase (not exceeding 10 words):
# ProjectLibre, open source project management software.
# Attribution URL: http://www.projectlibre.com
# Graphic Image as provided in the Covered Code as file: projectlibre-logo.png with
# alternatives listed on http://www.projectlibre.com/logo
#
# Display of Attribution Information is required in Larger Works which are defined
# in the CPAL as a work which combines Covered Code or portions thereof with code
# not governed by the terms of the CPAL. However, in addition to the other notice
# obligations, all copies of the Covered Code in Executable and Source Code form
# distributed must, as a form of attribution of the original author, include on
# each user interface screen the "ProjectLibre" logo visible to all users.
# The ProjectLibre logo should be located horizontally aligned with the menu bar
# and left justified on the top left of the screen adjacent to the File menu. The
# logo must be at least 144 x 31 pixels. When users click on the "ProjectLibre"
# logo it must direct them back to http://www.projectlibre.com.
###############################################################################
#
#
# LOCALIZATION NOTES:
#
# The only lines to localize have the following suffixes:
# .text
# .title
# .tooltip
# .mnemonic (normally first letter of .text)
# .accelerator (normally CTRL+first letter of .text)
#
ProjectRibbonTask.title = File
TaskRibbonTask.title = Attività
ResourceRibbonTask.title = Risorsa
ViewRibbonTask.title = Visualizza
FileRibbonBand.title = File
PrintRibbonBand.title = Stampa
ClipboardRibbonBand.title = Clipboard- appunti
#EditingRibbonBand.title = Modifica
TaskRibbonBand.title = Attività
ResourceRibbonBand.title = Risorsa
ProjectRibbonBand.title = Progetto
TaskViewsZoomRibbonBand.title = Viste
TaskViewsRibbonBand.title = Viste attività
ResourceViewsZoomRibbonBand.title = Viste
ResourceViewsRibbonBand.title = Viste risorsa
OtherViewsRibbonBand.title = Altre viste
SubViewsRibbonBand.title = Sotto-viste
FiltersRibbonBand.title = Filtri
RibbonNewProject.text =Nuovo
RibbonNewProject.tooltip =Nuovo progetto
RibbonOpenProject.text =Apri
RibbonOpenProject.tooltip =Apri progetto
RibbonSaveProject.text =Salva
RibbonSaveProject.tooltip =Salva progetto
RibbonSaveProjectAs.text =Salva con nome
RibbonSaveProjectAs.tooltip =Salva come nuovo progetto
RibbonCloseProject.text =Chiudi
RibbonCloseProject.tooltip =Chiudi progetto
RibbonPrint.text =Stampa
RibbonPrint.tooltip =Stampa il dcumento corrente.
RibbonPrintPreview.text =Anteprima
RibbonPrintPreview.tooltip =Anteprima di stampa
RibbonPDF.text =PDF
RibbonPDF.tooltip =PDF
RibbonCut.text =Taglia
RibbonCut.tooltip =Taglia
RibbonCopy.text =Copia
RibbonCopy.tooltip =Copia
RibbonPaste.text =Incolla
RibbonPaste.tooltip =Incolla
RibbonDelete.text =Cancella
RibbonDelete.tooltip =Cancella
RibbonZoomIn.text =Zoom avanti
RibbonZoomIn.tooltip =Zoom avanti
RibbonZoomOut.text =Zoom indietro
RibbonZoomOut.tooltip =Zoom indietro
RibbonFind.text =Trova
RibbonFind.tooltip = Trova
RibbonScrollToTask.text = Scorri fino all'attività
RibbonScrollToTask.tooltip = Scorri fino all'attività
RibbonOutdent.text =Diminuisci rientro
RibbonOutdent.tooltip =Diminuisci rientro
RibbonIndent.text =Aumenta rientro
RibbonIndent.tooltip =Aumenta rientro
RibbonLink.text=Inserisi collegamento
RibbonLink.tooltip=Inserisci collegamento
RibbonUnlink.text=Elimina collegamento
RibbonUnlink.tooltip=Elimina collegamento
RibbonTaskInformation.text =Informazioni
RibbonTaskInformation.tooltip =Informazioni attività
RibbonResourceInformation.text =Informazioni
RibbonResourceInformation.tooltip =Informazioni risorsa
RibbonProjectInformation.text =Informazioni
RibbonProjectInformation.tooltip =Informazioni progetto
RibbonChangeWorkingTime.text=Calendario
RibbonChangeWorkingTime.tooltip=Modifica il calendario di lavoro
RibbonNotes.text =Note
RibbonNotes.tooltip =Note...
RibbonInsert.text =Inserisci
RibbonInsert.tooltip =Inserisci
RibbonAssignResources.text=Assegna risorse
RibbonAssignResources.tooltip=Assegna risorse
RibbonProjectsDialog.text =Finestra progetti
RibbonProjectsDialog.tooltip =Progetti
RibbonUpdateTasks.text =Aggiorna
RibbonUpdateTasks.tooltip =Aggiorna attività...
RibbonUpdateTasks.mnemonic = A
RibbonUpdateProject.text =Aggiorna
RibbonUpdateProject.tooltip =Aggiorna progetto...
RibbonUpdateProject.mnemonic = P
RibbonSaveBaseline.text =Salva Baseline
RibbonSaveBaseline.tooltip =Salva Baseline...
RibbonSaveBaseline.mnemonic = S
RibbonClearBaseline.text =Elimina Baseline
RibbonClearBaseline.tooltip =Elimina Baseline...
RibbonClearBaseline.mnemonic = C
RibbonGantt.text=Gantt
RibbonGantt.tooltip=Gantt
RibbonTrackingGantt.text=Tracking Gantt
RibbonTrackingGantt.tooltip=Tracking Gantt
RibbonTaskUsageDetail.text=Uso delle attività
RibbonTaskUsageDetail.tooltip=Uso delle attività
RibbonResourceUsageDetail.text=Uso delle risorse
RibbonResourceUsageDetail.tooltip=Uso delle risorse
RibbonNetwork.text=Network Reticolo Logico
RibbonNetwork.tooltip=Network Reticolo Logico
RibbonResources.text=Risorse
RibbonResources.tooltip=Risorse
RibbonProjects.text=Progetti
RibbonProjects.tooltip=Progetti
RibbonWBS.text=WBS
RibbonWBS.tooltip=WBS
RibbonRBS.text=RBS
RibbonRBS.tooltip=RBS
RibbonReport.text=Report
RibbonReport.tooltip=Report
RibbonHistogram.text=Istogramma
RibbonHistogram.tooltip=Istogramma
RibbonCharts.text=Grafici
RibbonCharts.tooltip=Grafici
RibbonTaskUsage.text=Uso delle attività Gestione delle attività
RibbonTaskUsage.tooltip= Uso delle attività Gestione delle attività
RibbonResourceUsage.text=Uso delle risorse
RibbonResourceUsage.tooltip=Uso delle risorse
RibbonNoSubWindow.text=Nessuna sotto-finestra
RibbonNoSubWindow.tooltip=Nessuna sotto-finestra
RibbonNoTextHistogram.tooltip=Istogramma
RibbonNoTextCharts.tooltip=Grafici
RibbonNoTextTaskUsage.tooltip=Utilizzo attività
RibbonNoTextResourceUsage.tooltip=Utilizzo risorse
RibbonNoTextNoSubWindow.tooltip=Nessuna sotto-finestra
RibbonTopBarSaveProject.text=Salva progetto
RibbonTopBarSaveProject.tooltip=Salva progetto
RibbonTopBarUndo.text=Annulla
RibbonTopBarUndo.tooltip=Annulla
RibbonTopBarRedo.text=Ripeti
RibbonTopBarRedo.tooltip=Ripeti
PrintPreviewFirst.tooltip=Prima pagina
PrintPreviewBack.tooltip=Pagina precedente
PrintPreviewForward.tooltip = Pagina successiva
PrintPreviewLast.tooltip = Ultima pagina
PrintPreviewDown.tooltip = Pagina precedente
PrintPreviewUp.tooltip = Pagina successiva
PrintPreviewZoomOut.tooltip = Zoom indietro
PrintPreviewZoomReset.tooltip = Ripristina Zoom
PrintPreviewZoomIn.tooltip = Zoom avanti
PrintPreviewFormat.tooltip = Impostazioni pagina
PrintPreviewPrint.tooltip = Stampa
PrintPreviewPDF.tooltip = PDF
PrintPreviewLeftView.tooltip = Mostra la parte sinistra
PrintPreviewRightView.tooltip = Mostra la parte destra
Help.text = Aiuto
ChooseFilter.tooltip = Filtro
ChooseSort.tooltip = Ordina
ChooseGroup.tooltip = Gruppo

View file

@ -0,0 +1,214 @@
###############################################################################
# The contents of this file are subject to the Common Public Attribution License
# Version 1.0 (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
# http://www.projectlibre.com/license . The License is based on the Mozilla Public
# License Version 1.1 but Sections 14 and 15 have been added to cover use of
# software over a computer network and provide for limited attribution for the
# Original Developer. In addition, Exhibit A has been modified to be consistent
# with Exhibit B.
#
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
# specific language governing rights and limitations under the License. The
# Original Code is ProjectLibre. The Original Developer is the Initial Developer
# and is ProjectLibre Inc. All portions of the code written by ProjectLibre are
# Copyright (c) 2012-2020. All Rights Reserved. All portions of the code written by
# ProjectLibre are Copyright (c) 2012-2020. All Rights Reserved. Contributor
# ProjectLibre, Inc.
#
# Alternatively, the contents of this file may be used under the terms of the
# ProjectLibre End-User License Agreement (the ProjectLibre License) in which case
# the provisions of the ProjectLibre License are applicable instead of those above.
# If you wish to allow use of your version of this file only under the terms of the
# ProjectLibre License and not to allow others to use your version of this file
# under the CPAL, indicate your decision by deleting the provisions above and
# replace them with the notice and other provisions required by the ProjectLibre
# License. If you do not delete the provisions above, a recipient may use your
# version of this file under either the CPAL or the ProjectLibre Licenses.
#
#
# [NOTE: The text of this Exhibit A may differ slightly from the text of the notices
# in the Source Code files of the Original Code. You should use the text of this
# Exhibit A rather than the text found in the Original Code Source Code for Your
# Modifications.]
#
# EXHIBIT B. Attribution Information for ProjectLibre required
#
# Attribution Copyright Notice: Copyright (c) 2012-2020, ProjectLibre, Inc.
# Attribution Phrase (not exceeding 10 words):
# ProjectLibre, open source project management software.
# Attribution URL: http://www.projectlibre.com
# Graphic Image as provided in the Covered Code as file: projectlibre-logo.png with
# alternatives listed on http://www.projectlibre.com/logo
#
# Display of Attribution Information is required in Larger Works which are defined
# in the CPAL as a work which combines Covered Code or portions thereof with code
# not governed by the terms of the CPAL. However, in addition to the other notice
# obligations, all copies of the Covered Code in Executable and Source Code form
# distributed must, as a form of attribution of the original author, include on
# each user interface screen the "ProjectLibre" logo visible to all users.
# The ProjectLibre logo should be located horizontally aligned with the menu bar
# and left justified on the top left of the screen adjacent to the File menu. The
# logo must be at least 144 x 31 pixels. When users click on the "ProjectLibre"
# logo it must direct them back to http://www.projectlibre.com.
###############################################################################
#
#
# LOCALIZATION NOTES:
#
# The only lines to localize have the following suffixes:
# .text
# .title
# .tooltip
# .mnemonic (normally first letter of .text)
# .accelerator (normally CTRL+first letter of .text)
#
ProjectRibbonTask.title = File
TaskRibbonTask.title = Attività
ResourceRibbonTask.title = Risorsa
ViewRibbonTask.title = Visualizza
FileRibbonBand.title = File
PrintRibbonBand.title = Stampa
ClipboardRibbonBand.title = Clipboard
#EditingRibbonBand.title = Modifica
TaskRibbonBand.title = Attività
ResourceRibbonBand.title = Risorsa
ProjectRibbonBand.title = Progetto
TaskViewsZoomRibbonBand.title = Viste
TaskViewsRibbonBand.title = Viste attività
ResourceViewsZoomRibbonBand.title = Viste
ResourceViewsRibbonBand.title = Viste risorsa
OtherViewsRibbonBand.title = Altre viste
SubViewsRibbonBand.title = Sotto-viste
FiltersRibbonBand.title = Filtri
RibbonNewProject.text =Nuovo
RibbonNewProject.tooltip =Nuovo progetto
RibbonOpenProject.text =Apri
RibbonOpenProject.tooltip =Apri progetto
RibbonSaveProject.text =Salva
RibbonSaveProject.tooltip =Salva progetto
RibbonSaveProjectAs.text =Salva con nome
RibbonSaveProjectAs.tooltip =Salva come nuovo progetto
RibbonCloseProject.text =Chiudi
RibbonCloseProject.tooltip =Chiudi progetto
RibbonPrint.text =Stampa
RibbonPrint.tooltip =Stampa il dcumento corrente.
RibbonPrintPreview.text =Anteprima
RibbonPrintPreview.tooltip =Anteprima di stampa
RibbonPDF.text =PDF
RibbonPDF.tooltip =PDF
RibbonCut.text =Taglia
RibbonCut.tooltip =Taglia
RibbonCopy.text =Copia
RibbonCopy.tooltip =Copia
RibbonPaste.text =Incolla
RibbonPaste.tooltip =Incolla
RibbonDelete.text =Cancella
RibbonDelete.tooltip =Cancella
RibbonZoomIn.text =Zoom avanti
RibbonZoomIn.tooltip =Zoom avanti
RibbonZoomOut.text =Zoom indietro
RibbonZoomOut.tooltip =Zoom indietro
RibbonFind.text =Trova
RibbonFind.tooltip = Trova
RibbonScrollToTask.text = Scorri fino all'attività
RibbonScrollToTask.tooltip = Scorri fino all'attività
RibbonOutdent.text =Diminuisci rientro
RibbonOutdent.tooltip =Diminuisci rientro
RibbonIndent.text =Aumenta rientro
RibbonIndent.tooltip =Aumenta rientro
RibbonLink.text=Inserisi collegamento
RibbonLink.tooltip=Inserisci collegamento
RibbonUnlink.text=Elimina collegamento
RibbonUnlink.tooltip=Elimina collegamento
RibbonTaskInformation.text =Informazioni
RibbonTaskInformation.tooltip =Informazioni attività
RibbonResourceInformation.text =Informazioni
RibbonResourceInformation.tooltip =Informazioni risorsa
RibbonProjectInformation.text =Informazioni
RibbonProjectInformation.tooltip =Informazioni progetto
RibbonChangeWorkingTime.text=Calendario
RibbonChangeWorkingTime.tooltip=Modifica il calendario di lavoro
RibbonNotes.text =Note
RibbonNotes.tooltip =Note...
RibbonInsert.text =Inserisci
RibbonInsert.tooltip =Inserisci
RibbonAssignResources.text=Assegna risorse
RibbonAssignResources.tooltip=Assegna risorse
RibbonProjectsDialog.text =Finestra progetti
RibbonProjectsDialog.tooltip =Progetti
RibbonUpdateTasks.text =Aggiorna
RibbonUpdateTasks.tooltip =Aggiorna attività...
RibbonUpdateTasks.mnemonic = A
RibbonUpdateProject.text =Aggiorna
RibbonUpdateProject.tooltip =Aggiorna progetto...
RibbonUpdateProject.mnemonic = P
RibbonSaveBaseline.text =Salva Baseline
RibbonSaveBaseline.tooltip =Salva Baseline...
RibbonSaveBaseline.mnemonic = S
RibbonClearBaseline.text =Elimina Baseline
RibbonClearBaseline.tooltip =Elimina Baseline...
RibbonClearBaseline.mnemonic = C
RibbonGantt.text=Gantt
RibbonGantt.tooltip=Gantt
RibbonTrackingGantt.text=Tracking Gantt
RibbonTrackingGantt.tooltip=Tracking Gantt
RibbonTaskUsageDetail.text=Uso delle attività
RibbonTaskUsageDetail.tooltip=Uso delle attività
RibbonResourceUsageDetail.text=Uso delle risorse
RibbonResourceUsageDetail.tooltip=Uso delle risorse
RibbonNetwork.text=Network
RibbonNetwork.tooltip=Network
RibbonResources.text=Risorse
RibbonResources.tooltip=Risorse
RibbonProjects.text=Progetti
RibbonProjects.tooltip=Progetti
RibbonWBS.text=WBS
RibbonWBS.tooltip=WBS
RibbonRBS.text=RBS
RibbonRBS.tooltip=RBS
RibbonReport.text=Report
RibbonReport.tooltip=Report
RibbonHistogram.text=Istogramma
RibbonHistogram.tooltip=Istogramma
RibbonCharts.text=Grafici
RibbonCharts.tooltip=Grafici
RibbonTaskUsage.text=Uso delle attività
RibbonTaskUsage.tooltip=Uso delle attività
RibbonResourceUsage.text=Uso delle risorse
RibbonResourceUsage.tooltip=Uso delle risorse
RibbonNoSubWindow.text=Nessuna sotto-finestra
RibbonNoSubWindow.tooltip=Nessuna sotto-finestra
RibbonNoTextHistogram.tooltip=Istogramma
RibbonNoTextCharts.tooltip=Grafici
RibbonNoTextTaskUsage.tooltip=Utilizzo attività
RibbonNoTextResourceUsage.tooltip=Utilizzo risorse
RibbonNoTextNoSubWindow.tooltip=Nessuna sotto-finestra
RibbonTopBarSaveProject.text=Salva progetto
RibbonTopBarSaveProject.tooltip=Salva progetto
RibbonTopBarUndo.text=Annulla
RibbonTopBarUndo.tooltip=Annulla
RibbonTopBarRedo.text=Ripeti
RibbonTopBarRedo.tooltip=Ripeti
PrintPreviewFirst.tooltip=Prima pagina
PrintPreviewBack.tooltip=Pagina precedente
PrintPreviewForward.tooltip = Pagina successiva
PrintPreviewLast.tooltip = Ultima pagina
PrintPreviewDown.tooltip = Pagina precedente
PrintPreviewUp.tooltip = Pagina successiva
PrintPreviewZoomOut.tooltip = Zoom indietro
PrintPreviewZoomReset.tooltip = Ripristina Zoom
PrintPreviewZoomIn.tooltip = Zoom avanti
PrintPreviewFormat.tooltip = Impostazioni pagina
PrintPreviewPrint.tooltip = Stampa
PrintPreviewPDF.tooltip = PDF
PrintPreviewLeftView.tooltip = Mostra la parte sinistra
PrintPreviewRightView.tooltip = Mostra la parte destra
Help.text = Aiuto
ChooseFilter.tooltip = Filtro
ChooseSort.tooltip = Ordina
ChooseGroup.tooltip = Gruppo

View file

@ -0,0 +1,231 @@
#The contents of this file are subject to the Common Public Attribution License 
#Version 1.0 (the "License"); you may not use this file except in compliance with 
#the License. You may obtain a copy of the License at 
#http://www.projectlibre.com/license . The License is based on the Mozilla Public 
#License Version 1.1 but Sections 14 and 15 have been added to cover use of 
#software over a computer network and provide for limited attribution for the 
#Original Developer. In addition, Exhibit A has been modified to be consistent 
#with Exhibit B. 
#
#Software distributed under the License is distributed on an "AS IS" basis, 
#WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the 
#specific language governing rights and limitations under the License. The 
#Original Code is ProjectLibre and ProjectLibre.
#The Original Developer is the Initial Developer and is both ProjectLibre, Inc and 
#ProjectLibre Inc. All portions of the code written by ProjectLibre are Copyright (c) 
#2006, 2008. All Rights Reserved. All portions of the code written by ProjectLibre 
#are Copyright (c) 2012. All Rights Reserved. Contributors ProjectLibre, Inc. and 
#ProjectLibre, Inc.
#
#Alternatively, the contents of this file may be used under the terms of the 
#ProjectLibre End-User License Agreement (the ProjectLibre License) in which case 
#the provisions of the ProjectLibre License are applicable instead of those above. 
#If you wish to allow use of your version of this file only under the terms of the 
#ProjectLibre License and not to allow others to use your version of this file under 
#the CPAL, indicate your decision by deleting the provisions above and replace them 
#with the notice and other provisions required by the Project Libre License. If you 
#do not delete the provisions above, a recipient may use your version of this file 
#under either the CPAL or the ProjectLibre Licenses. 
#
#
#[NOTE: The text of this Exhibit A may differ slightly from the text of the notices 
#in the Source Code files of the Original Code. You should use the text of this 
#Exhibit A rather than the text found in the Original Code Source Code for Your 
#Modifications.] 
#EXHIBIT B. Attribution Information both ProjectLibre and ProjectLibre required
#
#Attribution Copyright Notice: Copyright (c) 2012, ProjectLibre, Inc.
#Attribution Phrase (not exceeding 10 words): ProjectLibre, the updated version of 
#ProjectLibre
#Attribution URL: http://www.projectlibre.com
#Graphic Image as provided in the Covered Code as file: projectlibre-logo.png with 
#alternatives listed on http://www.projectlibre.com/logo 
#
#Display of Attribution Information is required in Larger Works which are defined in 
#the CPAL as a work which combines Covered Code or portions thereof with code not 
#governed by the terms of the CPAL. However, in addition to the other notice 
#obligations, all copies of the Covered Code in Executable and Source Code form 
#distributed must, as a form of attribution of the original author, include on each 
#user interface screen the "ProjectLibre"  and \u201CProjectLibre\u201D logos visible to all users. 
#The ProjectLibre logo should be located horizontally aligned with the menu bar and left 
#justified on the top left of the screen adjacent to the File menu. The logo must be 
#at least 100 x 25 pixels. When users click on the "ProjectLibre" logo it must direct them 
#back to http://www.ProjectLibre.com. The ProjectLibre logo should be located horizontally 
#aligned immediately above the ProjectLibre logo and left justified in alignment with the 
#ProjectLibre logo. The logo must be at least 144 x 31 pixels. When users click on the 
#"ProjectLibre" logo it must direct them back to http://www.projectlibre.com.
#
#Attribution Copyright Notice: Copyright (c) 2006, 2020 ProjectLibre, Inc.
#Attribution Phrase (not exceeding 10 words): Powered by ProjectLibre, an open source 
#solution from ProjectLibre
#Attribution URL: http://www.ProjectLibre.com
#Graphic Image as provided in the Covered Code as file: ProjectLibre_logo.png with 
#alternatives listed on http://www.ProjectLibre.com/logo 
#
#Display of Attribution Information is required in Larger Works which are defined in 
#the CPAL as a work which combines Covered Code or portions thereof with code not 
#governed by the terms of the CPAL. However, in addition to the other notice 
#obligations, all copies of the Covered Code in Executable and Source Code form 
#distributed must, as a form of attribution of the original author, include on each 
#user interface screen the "ProjectLibre" and \u201CProjectLibre\u201D logos visible to all users. 
#The ProjectLibre logo should be located horizontally aligned with the menu bar and left 
#justified on the top left of the screen adjacent to the File menu. \u00A0The logo must be 
#at least 100 x 25 pixels. When users click on the "ProjectLibre" logo it must direct them 
#back to http://www.ProjectLibre.com.
#
#
# LOCALIZATION NOTES:
#
# The only lines to localize have the following suffixes:
# .text
# .title
# .tooltip
# .mnemonic (normally first letter of .text)
# .accelerator (normally CTRL+first letter of .text)
#
ProjectRibbonTask.title=\u0E42\u0E04\u0E23\u0E07\u0E01\u0E32\u0E23
TaskRibbonTask.title=\u0E07\u0E32\u0E19
ResourceRibbonTask.title=\u0E17\u0E23\u0E31\u0E1E\u0E22\u0E32\u0E01\u0E23
ViewRibbonTask.title=\u0E21\u0E2D\u0E07
FileRibbonBand.title=\u0E41\u0E1F\u0E49\u0E21
PrintRibbonBand.title=\u0E1E\u0E34\u0E21\u0E1E\u0E4C
ClipboardRibbonBand.title=\u0E04\u0E25\u0E34\u0E1B\u0E1A\u0E2D\u0E23\u0E4C\u0E14
#EditingRibbonBand.title=\u0E41\u0E01\u0E49\u0E44\u0E02
TaskRibbonBand.title=\u0E07\u0E32\u0E19
ResourceRibbonBand.title=\u0E17\u0E23\u0E31\u0E1E\u0E22\u0E32\u0E01\u0E23
ProjectRibbonBand.title=\u0E42\u0E04\u0E23\u0E07\u0E01\u0E32\u0E23
TaskViewsZoomRibbonBand.title=\u0E22\u0E48\u0E2D\u0E02\u0E22\u0E32\u0E22\u0E21\u0E38\u0E21\u0E21\u0E2D\u0E07
TaskViewsRibbonBand.title=\u0E21\u0E38\u0E21\u0E21\u0E2D\u0E07\u0E20\u0E32\u0E23\u0E01\u0E34\u0E08
ResourceViewsZoomRibbonBand.title=\u0E22\u0E48\u0E2D\u0E02\u0E22\u0E32\u0E22\u0E21\u0E38\u0E21\u0E21\u0E2D\u0E07 \u0E17\u0E23\u0E31\u0E1E\u0E22\u0E32\u0E01\u0E23
ResourceViewsRibbonBand.title=\u0E21\u0E38\u0E21\u0E21\u0E2D\u0E07 \u0E17\u0E23\u0E31\u0E1E\u0E22\u0E32\u0E01\u0E23
OtherViewsRibbonBand.title=\u0E21\u0E38\u0E21\u0E21\u0E2D\u0E07\u0E2D\u0E37\u0E48\u0E19 \u0E46
SubViewsRibbonBand.title=\u0E21\u0E38\u0E21\u0E21\u0E2D\u0E07\u0E22\u0E48\u0E2D\u0E22
FiltersRibbonBand.title=\u0E15\u0E31\u0E27\u0E01\u0E23\u0E2D\u0E07
RibbonNewProject.text=\u0E2A\u0E23\u0E49\u0E32\u0E07
RibbonNewProject.tooltip=\u0E2A\u0E23\u0E49\u0E32\u0E07\u0E42\u0E04\u0E23\u0E07\u0E01\u0E32\u0E23
RibbonOpenProject.text=\u0E40\u0E1B\u0E34\u0E14\u0E41\u0E1F\u0E49\u0E21
RibbonOpenProject.tooltip=\u0E40\u0E1B\u0E34\u0E14\u0E41\u0E1F\u0E49\u0E21\u0E42\u0E04\u0E23\u0E07\u0E01\u0E32\u0E23
RibbonSaveProject.text=\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01
RibbonSaveProject.tooltip=\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01\u0E42\u0E04\u0E23\u0E07\u0E01\u0E32\u0E23
RibbonSaveProjectAs.text=\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01\u0E40\u0E1B\u0E47\u0E19
RibbonSaveProjectAs.tooltip=\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01\u0E40\u0E1B\u0E47\u0E19\u0E42\u0E04\u0E23\u0E07\u0E01\u0E32\u0E23\u0E2D\u0E37\u0E48\u0E19 
RibbonCloseProject.text=\u0E1B\u0E34\u0E14
RibbonCloseProject.tooltip=\u0E1B\u0E34\u0E14\u0E42\u0E04\u0E23\u0E07\u0E01\u0E32\u0E23
RibbonPrint.text=\u0E1E\u0E34\u0E21\u0E1E\u0E4C
RibbonPrint.tooltip=\u0E1E\u0E34\u0E21\u0E1E\u0E4C\u0E40\u0E2D\u0E01\u0E2A\u0E32\u0E23\u0E1B\u0E31\u0E08\u0E08\u0E38\u0E1A\u0E31\u0E19
RibbonPrintPreview.text=\u0E14\u0E39\u0E15\u0E31\u0E27\u0E2D\u0E22\u0E48\u0E32\u0E07
RibbonPrintPreview.tooltip=\u0E15\u0E31\u0E27\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E01\u0E48\u0E2D\u0E19\u0E1E\u0E34\u0E21\u0E1E\u0E4C
RibbonPDF.text=PDF
RibbonPDF.tooltip=PDF
RibbonCut.text=\u0E04\u0E31\u0E14
RibbonCut.tooltip=\u0E04\u0E31\u0E14
RibbonCopy.text=\u0E04\u0E31\u0E14\u0E25\u0E2D\u0E01
RibbonCopy.tooltip=\u0E04\u0E31\u0E14\u0E25\u0E2D\u0E01
RibbonPaste.text=\u0E27\u0E32\u0E07
RibbonPaste.tooltip=\u0E27\u0E32\u0E07
RibbonDelete.text=\u0E25\u0E1A
RibbonDelete.tooltip=\u0E25\u0E1A
RibbonZoomIn.text=\u0E0B\u0E39\u0E21\u0E40\u0E02\u0E49\u0E32
RibbonZoomIn.tooltip=\u0E0B\u0E39\u0E12\u0E40\u0E02\u0E49\u0E32
RibbonZoomOut.text=\u0E0B\u0E39\u0E21\u0E2D\u0E2D\u0E01
RibbonZoomOut.tooltip=\u0E0B\u0E39\u0E21\u0E2D\u0E2D\u0E01
RibbonFind.text=\u0E04\u0E49\u0E19\u0E2B\u0E32
RibbonFind.tooltip=\u0E04\u0E49\u0E19\u0E2B\u0E32
RibbonScrollToTask.text=\u0E40\u0E25\u0E37\u0E48\u0E2D\u0E19\u0E44\u0E1B\u0E17\u0E35\u0E48\u0E07\u0E32\u0E19
RibbonScrollToTask.tooltip=\u0E40\u0E25\u0E37\u0E48\u0E2D\u0E19\u0E44\u0E1B\u0E17\u0E35\u0E48\u0E07\u0E32\u0E19
RibbonOutdent.text=\u0E25\u0E14\u0E01\u0E32\u0E23\u0E40\u0E22\u0E37\u0E49\u0E2D\u0E07
RibbonOutdent.tooltip=\u0E25\u0E14\u0E01\u0E32\u0E23\u0E40\u0E22\u0E37\u0E49\u0E2D\u0E07
RibbonIndent.text=\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E01\u0E32\u0E23\u0E40\u0E22\u0E37\u0E49\u0E2D\u0E07
RibbonIndent.tooltip=\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E01\u0E32\u0E23\u0E40\u0E22\u0E37\u0E49\u0E2D\u0E07
RibbonLink.text=\u0E25\u0E34\u0E49\u0E07\u0E04\u0E4C
RibbonLink.tooltip=\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E07\u0E32\u0E19\u0E17\u0E35\u0E48\u0E40\u0E01\u0E35\u0E48\u0E22\u0E27\u0E02\u0E49\u0E2D\u0E07
RibbonUnlink.text=\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01\u0E25\u0E34\u0E49\u0E07\u0E04\u0E4C
RibbonUnlink.tooltip=\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01\u0E07\u0E32\u0E19\u0E17\u0E35\u0E48\u0E40\u0E01\u0E35\u0E48\u0E22\u0E27\u0E02\u0E49\u0E2D\u0E07
RibbonTaskInformation.text=\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25
RibbonTaskInformation.tooltip=\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E07\u0E32\u0E19
RibbonResourceInformation.text=\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E17\u0E23\u0E31\u0E1E\u0E22\u0E32\u0E01\u0E23
RibbonResourceInformation.tooltip=\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E07\u0E32\u0E19\u0E17\u0E23\u0E31\u0E1E\u0E22\u0E32\u0E01\u0E23
RibbonProjectInformation.text=\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E42\u0E04\u0E23\u0E07\u0E01\u0E32\u0E23
RibbonProjectInformation.tooltip=\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E07\u0E32\u0E19\u0E42\u0E04\u0E23\u0E07\u0E01\u0E32\u0E23
RibbonChangeWorkingTime.text=\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E40\u0E27\u0E25\u0E32\u0E17\u0E33\u0E07\u0E32\u0E19
RibbonChangeWorkingTime.tooltip=\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E40\u0E27\u0E25\u0E32\u0E17\u0E33\u0E07\u0E32\u0E19
RibbonNotes.text=\u0E2B\u0E21\u0E32\u0E22\u0E40\u0E2B\u0E15\u0E38
RibbonNotes.tooltip=\u0E2B\u0E21\u0E32\u0E22\u0E40\u0E2B\u0E15\u0E38
RibbonInsert.text=\u0E41\u0E17\u0E23\u0E01
RibbonInsert.tooltip=\u0E41\u0E17\u0E23\u0E01
RibbonAssignResources.text=\u0E01\u0E32\u0E23\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E17\u0E23\u0E31\u0E1E\u0E22\u0E32\u0E01\u0E23
RibbonAssignResources.tooltip=\u0E01\u0E32\u0E23\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E17\u0E23\u0E31\u0E1E\u0E22\u0E32\u0E01\u0E23
RibbonProjectsDialog.text=\u0E42\u0E04\u0E23\u0E07\u0E01\u0E32\u0E23
RibbonProjectsDialog.tooltip=\u0E42\u0E04\u0E23\u0E07\u0E01\u0E32\u0E23
RibbonUpdateTasks.text=\u0E1B\u0E23\u0E31\u0E1A\u0E1B\u0E23\u0E38\u0E07\u0E07\u0E32\u0E19
RibbonUpdateTasks.tooltip=\u0E1B\u0E23\u0E31\u0E1A\u0E1B\u0E23\u0E38\u0E07\u0E07\u0E32\u0E19
RibbonUpdateTasks.mnemonic=T
RibbonUpdateProject.text=\u0E1B\u0E23\u0E31\u0E1A\u0E1B\u0E23\u0E38\u0E07\u0E42\u0E04\u0E23\u0E07\u0E01\u0E32\u0E23
RibbonUpdateProject.tooltip=\u0E1B\u0E23\u0E31\u0E1A\u0E1B\u0E23\u0E38\u0E07\u0E42\u0E04\u0E23\u0E07\u0E01\u0E32\u0E23
RibbonUpdateProject.mnemonic=P
RibbonSaveBaseline.text=\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E0A\u0E31\u0E19\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19
RibbonSaveBaseline.tooltip=\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E0A\u0E31\u0E19\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19
RibbonSaveBaseline.mnemonic=S
RibbonClearBaseline.text=\u0E25\u0E1A\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E0A\u0E31\u0E19\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19
RibbonClearBaseline.tooltip=\u0E25\u0E1A\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E0A\u0E31\u0E19\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19
RibbonClearBaseline.mnemonic=C
RibbonGantt.text=Gantt
RibbonGantt.tooltip=Gantt
RibbonTrackingGantt.text=\u0E01\u0E32\u0E23\u0E15\u0E34\u0E14\u0E15\u0E32\u0E21 Gantt
RibbonTrackingGantt.tooltip=\u0E01\u0E32\u0E23\u0E15\u0E34\u0E14\u0E15\u0E32\u0E21 Gantt
RibbonTaskUsageDetail.text=\u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19
RibbonTaskUsageDetail.tooltip=\u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19
RibbonResourceUsageDetail.text=\u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49\u0E17\u0E23\u0E31\u0E1E\u0E22\u0E32\u0E01\u0E23\u200B
RibbonResourceUsageDetail.tooltip=\u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49\u0E17\u0E23\u0E31\u0E1E\u0E22\u0E32\u0E01\u0E23\u200B
RibbonNetwork.text=\u0E40\u0E04\u0E23\u0E37\u0E2D\u0E02\u0E48\u0E32\u0E22
RibbonNetwork.tooltip=\u0E40\u0E04\u0E23\u0E37\u0E2D\u0E02\u0E48\u0E32\u0E22\u0E42\u0E1B\u0E23\u0E40\u0E08\u0E47\u0E01\u0E15\u0E4C
RibbonResources.text=\u0E17\u0E23\u0E31\u0E1E\u0E22\u0E32\u0E01\u0E23\u200B
RibbonResources.tooltip=\u0E17\u0E23\u0E31\u0E1E\u0E22\u0E32\u0E01\u0E23\u200B
RibbonProjects.text=\u0E42\u0E04\u0E23\u0E07\u0E01\u0E32\u0E23
RibbonProjects.tooltip=\u0E42\u0E04\u0E23\u0E07\u0E01\u0E32\u0E23
RibbonWBS.text=WBS
RibbonWBS.tooltip=\u0E42\u0E04\u0E23\u0E07\u0E2A\u0E23\u0E49\u0E32\u0E07\u0E01\u0E32\u0E23\u0E41\u0E1A\u0E48\u0E07\u0E07\u0E32\u0E19
RibbonRBS.text=RBS
RibbonRBS.tooltip=\u0E42\u0E04\u0E23\u0E07\u0E2A\u0E23\u0E49\u0E32\u0E07\u0E01\u0E32\u0E23\u0E41\u0E1A\u0E48\u0E07\u0E17\u0E23\u0E31\u0E1E\u0E22\u0E32\u0E01\u0E23
RibbonReport.text=\u0E23\u0E32\u0E22\u0E07\u0E32\u0E19
RibbonReport.tooltip=\u0E23\u0E32\u0E22\u0E07\u0E32\u0E19
RibbonHistogram.text=\u0E2E\u0E34\u0E2A\u0E42\u0E15\u0E41\u0E01\u0E23\u0E21
RibbonHistogram.tooltip=\u0E2E\u0E34\u0E2A\u0E42\u0E15\u0E41\u0E01\u0E23\u0E21
RibbonCharts.text=\u0E01\u0E23\u0E32\u0E1F
RibbonCharts.tooltip=\u0E01\u0E23\u0E32\u0E1F
RibbonTaskUsage.text=\u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19
RibbonTaskUsage.tooltip=\u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19
RibbonResourceUsage.text=\u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49\u0E17\u0E23\u0E31\u0E1E\u0E22\u0E32\u0E01\u0E23\u200B
RibbonResourceUsage.tooltip=\u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49\u0E17\u0E23\u0E31\u0E1E\u0E22\u0E32\u0E01\u0E23\u200B
RibbonNoSubWindow.text=\u0E44\u0E21\u0E48\u0E21\u0E35\u0E23\u0E32\u0E22\u0E25\u0E30\u0E40\u0E2D\u0E35\u0E22\u0E14
RibbonNoSubWindow.tooltip=\u0E44\u0E21\u0E48\u0E21\u0E35\u0E23\u0E32\u0E22\u0E25\u0E30\u0E40\u0E2D\u0E35\u0E22\u0E14\u0E43\u0E19\u0E2A\u0E48\u0E27\u0E19\u0E22\u0E48\u0E2D\u0E22
RibbonNoTextHistogram.tooltip=\u0E44\u0E21\u0E48\u0E21\u0E35\u0E2E\u0E34\u0E2A\u0E42\u0E15\u0E41\u0E01\u0E23\u0E21
RibbonNoTextCharts.tooltip=\u0E44\u0E21\u0E48\u0E21\u0E35\u0E01\u0E23\u0E32\u0E1F
RibbonNoTextTaskUsage.tooltip=\u0E44\u0E21\u0E48\u0E21\u0E35\u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19
RibbonNoTextResourceUsage.tooltip=\u0E44\u0E21\u0E48\u0E21\u0E35\u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49\u0E17\u0E23\u0E31\u0E1E\u0E22\u0E32\u0E01\u0E23
RibbonNoTextNoSubWindow.tooltip=\u0E44\u0E21\u0E48\u0E21\u0E35\u0E23\u0E32\u0E22\u0E25\u0E30\u0E40\u0E2D\u0E35\u0E22\u0E14\u0E43\u0E19\u0E2A\u0E48\u0E27\u0E19\u0E22\u0E48\u0E2D\u0E22
RibbonTopBarSaveProject.text=\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01\u0E42\u0E04\u0E23\u0E07\u0E01\u0E32\u0E23
RibbonTopBarSaveProject.tooltip=\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01\u0E42\u0E04\u0E23\u0E07\u0E01\u0E32\u0E23
RibbonTopBarUndo.text=\u0E22\u0E49\u0E2D\u0E19\u0E01\u0E25\u0E31\u0E1A
RibbonTopBarUndo.tooltip=\u0E22\u0E49\u0E2D\u0E19\u0E01\u0E25\u0E31\u0E1A
RibbonTopBarRedo.text=\u0E17\u0E33\u0E0B\u0E49\u0E33
RibbonTopBarRedo.tooltip=\u0E17\u0E33\u0E0B\u0E49\u0E33
PrintPreviewFirst.tooltip=\u0E2B\u0E19\u0E49\u0E32\u0E41\u0E23\u0E01
PrintPreviewBack.tooltip=\u0E2B\u0E19\u0E49\u0E32\u0E17\u0E35\u0E48\u0E41\u0E25\u0E49\u0E27
PrintPreviewForward.tooltip=\u0E2B\u0E19\u0E49\u0E32\u0E15\u0E48\u0E2D\u0E44\u0E1B
PrintPreviewLast.tooltip=\u0E2B\u0E19\u0E49\u0E32\u0E2A\u0E38\u0E14\u0E17\u0E49\u0E32\u0E22
PrintPreviewDown.tooltip=\u0E40\u0E25\u0E37\u0E48\u0E2D\u0E19\u0E25\u0E07
PrintPreviewUp.tooltip=\u0E40\u0E25\u0E37\u0E48\u0E2D\u0E19\u0E02\u0E36\u0E49\u0E19
PrintPreviewZoomOut.tooltip=\u0E0B\u0E39\u0E21\u0E2D\u0E2D\u0E01
PrintPreviewZoomReset.tooltip=\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01\u0E01\u0E32\u0E23\u0E0B\u0E39\u0E21
PrintPreviewZoomIn.tooltip=\u0E0B\u0E39\u0E21\u0E40\u0E02\u0E49\u0E32
PrintPreviewFormat.tooltip=\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A
PrintPreviewPrint.tooltip=\u0E1E\u0E34\u0E21\u0E1E\u0E4C
PrintPreviewPDF.tooltip=PDF
PrintPreviewLeftView.tooltip=\u0E41\u0E2A\u0E14\u0E07\u0E14\u0E49\u0E32\u0E19\u0E0B\u0E49\u0E32\u0E22
PrintPreviewRightView.tooltip=\u0E41\u0E2A\u0E14\u0E07\u0E14\u0E49\u0E32\u0E19\u0E02\u0E27\u0E32
Help.text=\u0E0A\u0E48\u0E27\u0E22\u0E40\u0E2B\u0E25\u0E37\u0E2D
ChooseFilter.tooltip=\u0E01\u0E23\u0E2D\u0E07
ChooseSort.tooltip=\u0E40\u0E23\u0E35\u0E22\u0E07\u0E25\u0E33\u0E14\u0E31\u0E1A
ChooseGroup.tooltip=\u0E01\u0E25\u0E38\u0E48\u0E21

View file

@ -0,0 +1,301 @@
# The contents of this file are subject to the Common Public Attribution License
# N\u1ED9i dung c\u1EE7a t\u1EC7p này ph\u1EA3i tuân theo Gi\u1EA5y Phép Phân B\u1ED5 Công C\u1ED9ng Chung
# Version 1.0 (the "License"); you may not use this file except in compliance with
# Phiên b\u1EA3n 1.0 ("Gi\u1EA5y phép"); b\u1EA1n không th\u1EC3 s\u1EED d\u1EE5ng t\u1EC7p này tr\u1EEB khi tuân th\u1EE7
# the License. You may obtain a copy of the License at
# gi\u1EA5y phép. B\u1EA1n có th\u1EC3 nh\u1EADn \u0111\u01B0\u1EE3c m\u1ED9t b\u1EA3n sao c\u1EE7a Gi\u1EA5y phép t\u1EA1i
# http://www.projity.com/license . The License is based on the Mozilla Public
# http://www.projity.com/license. Gi\u1EA5y phép d\u1EF1a trên Mozilla Public
# License Version 1.1 but Sections 14 and 15 have been added to cover use of
# Phiên b\u1EA3n Gi\u1EA5y phép 1.1 nh\u01B0ng Ph\u1EA7n 14 và 15 \u0111ã \u0111\u01B0\u1EE3c thêm vào \u0111\u1EC3 s\u1EED d\u1EE5ng
# software over a computer network and provide for limited attribution for the
# ph\u1EA7n m\u1EC1m qua m\u1EA1ng máy tính và cung c\u1EA5p phân b\u1ED5 gi\u1EDBi h\u1EA1n cho
# Original Developer. In addition, Exhibit A has been modified to be consistent
# Nhà phát tri\u1EC3n g\u1ED1c. Ngoài ra, Ph\u1EE5 l\u1EE5c A \u0111ã \u0111\u01B0\u1EE3c s\u1EEDa \u0111\u1ED5i \u0111\u1EC3 phù h\u1EE3p
# with Exhibit B.
# v\u1EDBi Ph\u1EE5 l\u1EE5c B.
# Software distributed under the License is distributed on an "AS IS" basis,
# Ph\u1EA7n m\u1EC1m \u0111\u01B0\u1EE3c phân ph\u1ED1i theo Gi\u1EA5y phép \u0111\u01B0\u1EE3c phân ph\u1ED1i trên c\u01A1 s\u1EDF "NGUYÊN TR\u1EA0NG",
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
# KHÔNG B\u1EA2O HÀNH B\u1EA4T K\u1EF2 HÌNH TH\u1EE8C NÀO, dù rõ ràng hay ng\u1EE5 ý. Xem Gi\u1EA5y phép cho
# specific language governing rights and limitations under the License. The
# ngôn ng\u1EEF c\u1EE5 th\u1EC3 \u0111i\u1EC1u ch\u1EC9nh các quy\u1EC1n và gi\u1EDBi h\u1EA1n theo Gi\u1EA5y phép. Các
# Original Code is OpenProj and ProjectLibre.
# Mã g\u1ED1c là OpenProj và ProjectLibre . Nhà phát tri\u1EC3n chính là Nhà phát tri\u1EC3n ban \u0111\u1EA7u và
#The Original Developer is the Initial Developer and is both Projity, Inc and
# Nhà phát tri\u1EC3n chính là Nhà phát tri\u1EC3n ban \u0111\u1EA7u và c\u1EA3 Projity, Inc l\u1EABn
#ProjectLibre Inc. All portions of the code written by Projity are Copyright (c)
#ProjectLibre Inc. T\u1EA5t c\u1EA3 các ph\u1EA7n c\u1EE7a mã do Projity vi\u1EBFt \u0111\u1EC1u là B\u1EA3n quy\u1EC1n (c)
#2006, 2008. All Rights Reserved. All portions of the code written by ProjectLibre
# 2006, 2008. M\u1ECDi Quy\u1EC1n \u0111\u01B0\u1EE3c B\u1EA3o l\u01B0u. T\u1EA5t c\u1EA3 các ph\u1EA7n c\u1EE7a mã \u0111\u01B0\u1EE3c vi\u1EBFt b\u1EDFi ProjectLibre
#are Copyright (c) 2012. All Rights Reserved. Contributors Projity, Inc. and
# là b\u1EA3n quy\u1EC1n © 2012. M\u1ECDi Quy\u1EC1n \u0111\u01B0\u1EE3c B\u1EA3o l\u01B0u. Ng\u01B0\u1EDDi \u0111óng góp Projity, Inc. và
#ProjectLibre, Inc.
#ProjectLibre, Inc.
#Alternatively, the contents of this file may be used under the terms of the
# Ngoài ra, n\u1ED9i dung c\u1EE7a t\u1EC7p này có th\u1EC3 \u0111\u01B0\u1EE3c s\u1EED d\u1EE5ng theo các \u0111i\u1EC1u kho\u1EA3n c\u1EE7a
#ProjectLibre End-User License Agreement (the ProjectLibre License) in which case
# Th\u1ECFa thu\u1EADn C\u1EA5p phép Ng\u01B0\u1EDDi dùng Cu\u1ED1i c\u1EE7a ProjectLibre (Gi\u1EA5y phép ProjectLibre), trong tr\u01B0\u1EDDng h\u1EE3p \u0111ó
#the provisions of the ProjectLibre License are applicable instead of those above.
# \u0111i\u1EC1u kho\u1EA3n c\u1EE7a Gi\u1EA5y phép ProjectLibre có th\u1EC3 áp d\u1EE5ng thay cho nh\u1EEFng \u0111i\u1EC1u kho\u1EA3n \u1EDF trên.
#If you wish to allow use of your version of this file only under the terms of the
# N\u1EBFu b\u1EA1n mu\u1ED1n ch\u1EC9 cho phép s\u1EED d\u1EE5ng phiên b\u1EA3n c\u1EE7a t\u1EC7p này theo các \u0111i\u1EC1u kho\u1EA3n c\u1EE7a
#ProjectLibre License and not to allow others to use your version of this file under
# Gi\u1EA5y phép ProjectLibre và không cho phép ng\u01B0\u1EDDi khác s\u1EED d\u1EE5ng phiên b\u1EA3n t\u1EC7p này c\u1EE7a b\u1EA1n theo
#the CPAL, indicate your decision by deleting the provisions above and replace them
# CPAL, cho bi\u1EBFt quy\u1EBFt \u0111\u1ECBnh c\u1EE7a b\u1EA1n b\u1EB1ng cách xóa các \u0111i\u1EC1u kho\u1EA3n \u1EDF trên và thay th\u1EBF chúng
#with the notice and other provisions required by the Project Libre License. If you
# v\u1EDBi thông báo và các \u0111i\u1EC1u kho\u1EA3n khác theo yêu c\u1EA7u c\u1EE7a Gi\u1EA5y phép Project Libre. N\u1EBFu b\u1EA1n
#do not delete the provisions above, a recipient may use your version of this file
# không xóa các \u0111i\u1EC1u kho\u1EA3n \u1EDF trên, ng\u01B0\u1EDDi nh\u1EADn có th\u1EC3 s\u1EED d\u1EE5ng phiên b\u1EA3n này c\u1EE7a b\u1EA1n
#under either the CPAL or the ProjectLibre Licenses.
# theo CPAL ho\u1EB7c Gi\u1EA5y phép ProjectLibre.
#
#[NOTE: The text of this Exhibit A may differ slightly from the text of the notices
# [L\u01AFU Ý: V\u0103n b\u1EA3n c\u1EE7a Ph\u1EE5 l\u1EE5c A này có th\u1EC3 h\u01A1i khác so v\u1EDBi v\u0103n b\u1EA3n c\u1EE7a các thông báo
#in the Source Code files of the Original Code. You should use the text of this
# trong các t\u1EC7p Mã ngu\u1ED3n c\u1EE7a Mã g\u1ED1c. B\u1EA1n nên s\u1EED d\u1EE5ng v\u0103n b\u1EA3n
#Exhibit A rather than the text found in the Original Code Source Code for Your
#Ph\u1EE5 L\u1EE5c A ch\u1EE9 không ph\u1EA3i là v\u0103n b\u1EA3n \u0111\u01B0\u1EE3c tìm th\u1EA5y trong Mã ngu\u1ED3n g\u1ED1c cho
#Modifications.]
# S\u1EEDa \u0111\u1ED5i.]
#EXHIBIT B. Attribution Information both ProjectLibre and OpenProj required
#Ph\u1EE5 l\u1EE5c B. C\u1EA7n có Thông tin Thu\u1ED9c tính cho c\u1EA3 ProjectLibre và OpenProj
#
#Attribution Copyright Notice: Copyright (c) 2012, ProjectLibre, Inc.
# Thông báo v\u1EC1 B\u1EA3n quy\u1EC1n Ghi nh\u1EADn tác gi\u1EA3: B\u1EA3n quy\u1EC1n (c) 2012, ProjectLibre, Inc.
#Attribution Phrase (not exceeding 10 words): ProjectLibre, the updated version of
# C\u1EE5m t\u1EEB Thu\u1ED9c tính (không quá 10 t\u1EEB): ProjectLibre, phiên b\u1EA3n c\u1EADp nh\u1EADt c\u1EE7a
#OpenProj
# OpenProj
#Attribution URL: http://www.projectlibre.com
# URL phân b\u1ED5: http://www.projectlibre.com
#Graphic Image as provided in the Covered Code as file: projectlibre-logo.png with
# Hình \u1EA3nh \u0110\u1ED3 h\u1ECDa nh\u01B0 \u0111\u01B0\u1EE3c cung c\u1EA5p trong Mã \u0111\u01B0\u1EE3c B\u1EA3o v\u1EC7 d\u01B0\u1EDBi d\u1EA1ng t\u1EC7p: projectlibre-logo.png v\u1EDBi
#alternatives listed on http://www.projectlibre.com/logo
# l\u1EF1a ch\u1ECDn thay th\u1EBF \u0111\u01B0\u1EE3c li\u1EC7t kê trên http://www.projectlibre.com/logo
#Display of Attribution Information is required in Larger Works which are defined in
# C\u1EA7n có Hi\u1EC3n th\u1ECB Thông tin Phân b\u1ED5 trong s\u1EA3n ph\u1EA9m l\u1EDBn h\u01A1n \u0111\u01B0\u1EE3c \u0111\u1ECBnh ngh\u0129a trong
#the CPAL as a work which combines Covered Code or portions thereof with code not
# CPAL nh\u01B0 m\u1ED9t s\u1EA3n ph\u1EA9m k\u1EBFt h\u1EE3p Mã \u0111\u01B0\u1EE3c b\u1EA3o v\u1EC7 ho\u1EB7c các ph\u1EA7n c\u1EE7a nó v\u1EDBi mã không
#governed by the terms of the CPAL. However, in addition to the other notice
# \u0111\u01B0\u1EE3c \u0111i\u1EC1u ch\u1EC9nh b\u1EDFi các \u0111i\u1EC1u kho\u1EA3n c\u1EE7a CPAL. Tuy nhiên, ngoài các thông báo
#obligations, all copies of the Covered Code in Executable and Source Code form
# ngh\u0129a v\u1EE5 khác, t\u1EA5t c\u1EA3 các b\u1EA3n sao c\u1EE7a Mã \u0111\u01B0\u1EE3c b\u1EA3o v\u1EC7 \u1EDF d\u1EA1ng Mã ngu\u1ED3n và Có th\u1EC3 th\u1EF1c thi
#distributed must, as a form of attribution of the original author, include on each
# ph\u1EA3i \u0111\u01B0\u1EE3c phân ph\u1ED1i, nh\u01B0 m\u1ED9t hình th\u1EE9c ghi nh\u1EADn tác gi\u1EA3 g\u1ED1c, bao g\u1ED3m trên m\u1ED7i
#user interface screen the "OpenProj" and \u201CProjectLibre\u201D logos visible to all users.
# giao di\u1EC7n ng\u01B0\u1EDDi dùng hi\u1EC3n th\u1ECB logo "OpenProj" và \u201CProjectLibre \ u201D cho t\u1EA5t c\u1EA3 ng\u01B0\u1EDDi dùng.
#The OpenProj logo should be located horizontally aligned with the menu bar and left
# Bi\u1EC3u tr\u01B0ng OpenProj ph\u1EA3i \u0111\u01B0\u1EE3c c\u0103n ch\u1EC9nh theo chi\u1EC1u ngang v\u1EDBi thanh menu và
#justified on the top left of the screen adjacent to the File menu. The logo must be
# c\u0103n trái \u1EDF trên cùng bên trái c\u1EE7a màn hình li\u1EC1n k\u1EC1 v\u1EDBi menu T\u1EC7p. Bi\u1EC3u t\u01B0\u1EE3ng ph\u1EA3i là
#at least 100 x 25 pixels. When users click on the "OpenProj" logo it must direct them
# ít nh\u1EA5t 100 x 25 pixel. Khi ng\u01B0\u1EDDi dùng nh\u1EA5p vào logo "OpenProj", nó ph\u1EA3i h\u01B0\u1EDBng h\u1ECD
#back to http://www.projity.com. The ProjectLibre logo should be located horizontally
# quay l\u1EA1i http://www.projity.com. Logo ProjectLibre ph\u1EA3i \u0111\u01B0\u1EE3c \u0111\u1EB7t theo chi\u1EC1u ngang
#aligned immediately above the OpenProj logo and left justified in alignment with the
# c\u0103n ngay phía trên bi\u1EC3u tr\u01B0ng OpenProj và c\u0103n ch\u1EC9nh trái v\u1EDBi
#OpenProj logo. The logo must be at least 144 x 31 pixels. When users click on the
# Bi\u1EC3u tr\u01B0ng OpenProj. Bi\u1EC3u tr\u01B0ng ph\u1EA3i có kích th\u01B0\u1EDBc ít nh\u1EA5t là 144 x 31 pixel. Khi ng\u01B0\u1EDDi dùng nh\u1EA5p vào
#"ProjectLibre" logo it must direct them back to http://www.projectlibre.com.
# "ProjectLibre" logo nó ph\u1EA3i h\u01B0\u1EDBng h\u1ECD tr\u1EDF l\u1EA1i http://www.projectlibre.com.
#
#Attribution Copyright Notice: Copyright (c) 2006, 2008 Projity, Inc.
# Thông báo v\u1EC1 B\u1EA3n quy\u1EC1n Ghi nh\u1EADn tác gi\u1EA3: B\u1EA3n quy\u1EC1n (c) 2006, 2008 Projity, Inc.
#Attribution Phrase (not exceeding 10 words): Powered by OpenProj, an open source
# C\u1EE5m t\u1EEB thu\u1ED9c tính (không quá 10 t\u1EEB): \u0110\u01B0\u1EE3c cung c\u1EA5p b\u1EDFi OpenProj, m\u1ED9t ngu\u1ED3n m\u1EDF
#solution from Projity
# gi\u1EA3i pháp t\u1EEB Projity
#Attribution URL: http://www.projity.com
# URL phân b\u1ED5: http://www.projity.com
#Graphic Image as provided in the Covered Code as file: openproj_logo.png with
# Hình \u1EA3nh \u0110\u1ED3 h\u1ECDa nh\u01B0 \u0111\u01B0\u1EE3c cung c\u1EA5p trong Mã \u0111\u01B0\u1EE3c B\u1EA3o v\u1EC7 d\u01B0\u1EDBi d\u1EA1ng t\u1EC7p: openproj_logo.png v\u1EDBi
#alternatives listed on http://www.projity.com/logo
# l\u1EF1a ch\u1ECDn thay th\u1EBF \u0111\u01B0\u1EE3c li\u1EC7t kê trên http://www.projity.com/logo
#
#Display of Attribution Information is required in Larger Works which are defined in
# C\u1EA7n có Hi\u1EC3n th\u1ECB Thông tin Phân b\u1ED5 trong S\u1EA3n Ph\u1EA9m L\u1EDBn h\u01A1n \u0111\u01B0\u1EE3c \u0111\u1ECBnh ngh\u0129a trong
#the CPAL as a work which combines Covered Code or portions thereof with code not
# CPAL nh\u01B0 m\u1ED9t s\u1EA3n ph\u1EA9m k\u1EBFt h\u1EE3p Mã \u0111\u01B0\u1EE3c b\u1EA3o v\u1EC7 ho\u1EB7c các ph\u1EA7n c\u1EE7a nó v\u1EDBi mã không
#governed by the terms of the CPAL. However, in addition to the other notice
# \u0111\u01B0\u1EE3c \u0111i\u1EC1u ch\u1EC9nh b\u1EDFi các \u0111i\u1EC1u kho\u1EA3n c\u1EE7a CPAL. Tuy nhiên, ngoài các thông báo
#obligations, all copies of the Covered Code in Executable and Source Code form
# ngh\u0129a v\u1EE5 khác, t\u1EA5t c\u1EA3 các b\u1EA3n sao c\u1EE7a Mã \u0111\u01B0\u1EE3c b\u1EA3o v\u1EC7 \u1EDF d\u1EA1ng Mã ngu\u1ED3n và Có th\u1EC3 th\u1EF1c thi
#distributed must, as a form of attribution of the original author, include on each
# ph\u1EA3i \u0111\u01B0\u1EE3c phân ph\u1ED1i, nh\u01B0 m\u1ED9t hình th\u1EE9c ghi nh\u1EADn tác gi\u1EA3 g\u1ED1c, bao g\u1ED3m trên m\u1ED7i
#user interface screen the "OpenProj" and \u201CProjectLibre\u201D logos visible to all users.
# giao di\u1EC7n ng\u01B0\u1EDDi dùng hi\u1EC3n th\u1ECB logo "OpenProj" và \ u201CProjectLibre \ u201D cho t\u1EA5t c\u1EA3 ng\u01B0\u1EDDi dùng.
#The OpenProj logo should be located horizontally aligned with the menu bar and left
# Bi\u1EC3u tr\u01B0ng OpenProj ph\u1EA3i \u0111\u01B0\u1EE3c c\u0103n ch\u1EC9nh theo chi\u1EC1u ngang v\u1EDBi thanh menu và
#justified on the top left of the screen adjacent to the File menu. \u00A0The logo must be
# c\u0103n trái \u1EDF trên cùng bên trái c\u1EE7a màn hình li\u1EC1n k\u1EC1 v\u1EDBi menu T\u1EC7p. \ u00A0 Logo ph\u1EA3i là
#at least 100 x 25 pixels. When users click on the "OpenProj" logo it must direct them
# ít nh\u1EA5t 100 x 25 pixel. Khi ng\u01B0\u1EDDi dùng nh\u1EA5p vào logo "OpenProj", nó ph\u1EA3i h\u01B0\u1EDBng h\u1ECD
#back to http://www.projity.com.
# quay l\u1EA1i http://www.projity.com.
#
#
# LOCALIZATION NOTES:
# L\u01AFU Ý V\u1ECA TRÍ:
#
# The only lines to localize have the following suffixes:
# Các dòng duy nh\u1EA5t \u0111\u1EC3 b\u1EA3n \u0111\u1ECBa hóa có các h\u1EADu t\u1ED1 sau:
# .text
# .title
# .tooltip
# .mnemonic (normally first letter of .text)
# .mnemonic (th\u01B0\u1EDDng là ch\u1EEF cái \u0111\u1EA7u tiên c\u1EE7a .text)
# .accelerator (normally CTRL+first letter of .text)
# .accelerator (th\u01B0\u1EDDng là CTRL + ch\u1EEF cái \u0111\u1EA7u tiên c\u1EE7a .text)
#
ProjectRibbonTask.title=d\u1EF1 án
TaskRibbonTask.title=công tác
ResourceRibbonTask.title=tài nguyên
ViewRibbonTask.title=xem
FileRibbonBand.title=t\u1EADp tin
PrintRibbonBand.title=in
ClipboardRibbonBand.title=b\u1EA3ng ghi t\u1EA1m
#EditingRibbonBand.title=biên so\u1EA1n
TaskRibbonBand.title=công tác
ResourceRibbonBand.title=tài nguyên
ProjectRibbonBand.title=d\u1EF1 án
TaskViewsZoomRibbonBand.title=xem công tác
TaskViewsRibbonBand.title=xem công tác
ResourceViewsZoomRibbonBand.title=xem tài nguyên
ResourceViewsRibbonBand.title=xem tài nguyên
OtherViewsRibbonBand.title=xem khác
SubViewsRibbonBand.title=xem ph\u1EE5
FiltersRibbonBand.title=l\u1ECDc
RibbonNewProject.text=m\u1EDBi
RibbonNewProject.tooltip=m\u1EDBi
RibbonOpenProject.text=m\u1EDF
RibbonOpenProject.tooltip=m\u1EDF
RibbonSaveProject.text=l\u01B0u
RibbonSaveProject.tooltip=l\u01B0u
RibbonSaveProjectAs.text=l\u01B0u l\u1EA1i
RibbonSaveProjectAs.tooltip=l\u01B0u l\u1EA1i
RibbonCloseProject.text=\u0111óng
RibbonCloseProject.tooltip=\u0111óng
RibbonPrint.text=in
RibbonPrint.tooltip=in
RibbonPrintPreview.text=xem tr\u01B0\u1EDBc in
RibbonPrintPreview.tooltip=xem tr\u01B0\u1EDBc in
RibbonPDF.text=PDF.v\u0103n b\u1EA3n
RibbonPDF.tooltip=m\u1EB9o công c\u1EE5
RibbonCut.text=c\u1EAFt
RibbonCut.tooltip=c\u1EAFt
RibbonCopy.text=sao chép
RibbonCopy.tooltip=sao chép
RibbonPaste.text=dán
RibbonPaste.tooltip=dán
RibbonDelete.text=xóa
RibbonDelete.tooltip=xóa
RibbonZoomIn.text=phóng to
RibbonZoomIn.tooltip=phóng to
RibbonZoomOut.text=thu nh\u1ECF
RibbonZoomOut.tooltip=thu nh\u1ECF
RibbonFind.text=tìm
RibbonFind.tooltip=tìm
RibbonScrollToTask.text=cu\u1ED9n t\u1EDBi công tác
RibbonScrollToTask.tooltip=cu\u1ED9n t\u1EDBi công tác
RibbonOutdent.text=nhô ra
RibbonOutdent.tooltip=nhô ra
RibbonIndent.text=th\u1EE5t vào
RibbonIndent.tooltip=th\u1EE5t vào
RibbonLink.text=k\u1EBFt n\u1ED1i
RibbonLink.tooltip=k\u1EBFt n\u1ED1i
RibbonUnlink.text=không k\u1EBFt n\u1ED1i
RibbonUnlink.tooltip=không k\u1EBFt n\u1ED1i
RibbonTaskInformation.text=thông tin công tác
RibbonTaskInformation.tooltip=thông tin công tác
RibbonResourceInformation.text=thông tin tài nguyên
RibbonResourceInformation.tooltip=thông tin tài nguyên
RibbonProjectInformation.text=thông tin d\u1EF1 án
RibbonProjectInformation.tooltip=thông tin d\u1EF1 án
RibbonChangeWorkingTime.text=thay \u0111\u1ED5i gi\u1EDD làm vi\u1EC7c
RibbonChangeWorkingTime.tooltip=thay \u0111\u1ED5i gi\u1EDD làm vi\u1EC7c
RibbonNotes.text=ghi chú
RibbonNotes.tooltip=ghi chú
RibbonInsert.text=chèn
RibbonInsert.tooltip=chèn
RibbonAssignResources.text=phân công tài nguyên
RibbonAssignResources.tooltip=phân công tài nguyên
RibbonProjectsDialog.text=h\u1ED9p tho\u1EA1i d\u1EF1 án
RibbonProjectsDialog.tooltip=h\u1ED9p tho\u1EA1i d\u1EF1 án
RibbonUpdateTasks.text=c\u1EADp nh\u1EADt công tác
RibbonUpdateTasks.tooltip=c\u1EADp nh\u1EADt công tác
RibbonUpdateTasks.mnemonic=c\u1EADp nh\u1EADt công tác
RibbonUpdateProject.text=c\u1EADp nh\u1EADt d\u1EF1 án
RibbonUpdateProject.tooltip=c\u1EADp nh\u1EADt d\u1EF1 án
RibbonUpdateProject.mnemonic=c\u1EADp nh\u1EADt d\u1EF1 án
RibbonSaveBaseline.text=l\u01B0u \u0111\u01B0\u1EDDng c\u01A1 s\u1EDF
RibbonSaveBaseline.tooltip=l\u01B0u \u0111\u01B0\u1EDDng c\u01A1 s\u1EDF
RibbonSaveBaseline.mnemonic=l\u01B0u \u0111\u01B0\u1EDDng c\u01A1 s\u1EDF
RibbonClearBaseline.text=xóa \u0111\u01B0\u1EDDng c\u01A1 s\u1EDF
RibbonClearBaseline.tooltip=xóa \u0111\u01B0\u1EDDng c\u01A1 s\u1EDF
RibbonClearBaseline.mnemonic=xóa \u0111\u01B0\u1EDDng c\u01A1 s\u1EDF
RibbonGantt.text=Gantt
RibbonGantt.tooltip=Gantt
RibbonTrackingGantt.text=truy tìm Gantt
RibbonTrackingGantt.tooltip=truy tìm Gantt
RibbonTaskUsageDetail.text=chi ti\u1EBFt s\u1EED d\u1EE5ng công tác
RibbonTaskUsageDetail.tooltip=chi ti\u1EBFt s\u1EED d\u1EE5ng công tác
RibbonResourceUsageDetail.text=chi ti\u1EBFt s\u1EED d\u1EE5ng tài nguyên
RibbonResourceUsageDetail.tooltip=chi ti\u1EBFt s\u1EED d\u1EE5ng tài nguyên
RibbonNetwork.text=công vi\u1EC7c ròng
RibbonNetwork.tooltip=công vi\u1EC7c ròng
RibbonResources.text=tài nguyên
RibbonResources.tooltip=tài nguyên
RibbonProjects.text=d\u1EF1 án
RibbonProjects.tooltip=d\u1EF1 án
RibbonWBS.text=\u0130KY \u2026\u2026\u2026\u2026\u2026\u2026. \u0130\u015F K\u0131r\u0131l\u0131m\u0131 Yap\u0131s\u0131
RibbonWBS.tooltip=\u0130KY \u2026\u2026\u2026\u2026\u2026\u2026. \u0130\u015F K\u0131r\u0131l\u0131m\u0131 Yap\u0131s\u0131
RibbonRBS.text=KKY \u2026\u2026\u2026\u2026\u2026 Kaynak K\u0131r\u0131l\u0131m\u0131 Yap\u0131s\u0131
RibbonRBS.tooltip=KKY \u2026\u2026\u2026\u2026\u2026 Kaynak K\u0131r\u0131l\u0131m\u0131 Yap\u0131s\u0131
RibbonReport.text=báo cáo
RibbonReport.tooltip=báo cáo
RibbonHistogram.text=Histogram
RibbonHistogram.tooltip=Histogram
RibbonCharts.text=bi\u1EC3u \u0111\u1ED3
RibbonCharts.tooltip=bi\u1EC3u \u0111\u1ED3
RibbonTaskUsage.text=s\u1EED d\u1EE5ng công tác
RibbonTaskUsage.tooltip=s\u1EED d\u1EE5ng công tác
RibbonResourceUsage.text=s\u1EED d\u1EE5ng tài nguyên
RibbonResourceUsage.tooltip=s\u1EED d\u1EE5ng tài nguyên
RibbonNoSubWindow.text=không có c\u1EEDa s\u1ED5 ph\u1EE5
RibbonNoSubWindow.tooltip=không có c\u1EEDa s\u1ED5 ph\u1EE5
RibbonNoTextHistogram.tooltip=không có v\u0103n b\u1EA3n Histogram
RibbonNoTextCharts.tooltip=không có v\u0103n b\u1EA3n \u0111\u1ED3 th\u1ECB
RibbonNoTextTaskUsage.tooltip=không có v\u0103n b\u1EA3n s\u1EED d\u1EE5ng công tác
RibbonNoTextResourceUsage.tooltip=không có v\u0103n b\u1EA3n s\u1EED d\u1EE5ng tài nguyên
RibbonNoTextNoSubWindow.tooltip=không có v\u0103n b\u1EA3n không có c\u1EEDa s\u1ED5 ph\u1EE5
RibbonTopBarSaveProject.text=l\u01B0u d\u1EF1 án
RibbonTopBarSaveProject.tooltip=l\u01B0u d\u1EF1 án
RibbonTopBarUndo.text=h\u1EE7y
RibbonTopBarUndo.tooltip=h\u1EE7y
RibbonTopBarRedo.text=làm l\u1EA1i
RibbonTopBarRedo.tooltip=làm l\u1EA1i
PrintPreviewFirst.tooltip=\u0111\u1EA7u tiên
PrintPreviewBack.tooltip=sau
PrintPreviewForward.tooltip=tr\u01B0\u1EDBc
PrintPreviewLast.tooltip=cu\u1ED1i cùng
PrintPreviewDown.tooltip=xu\u1ED1ng
PrintPreviewUp.tooltip=lên
PrintPreviewZoomOut.tooltip=thu nh\u1ECF
PrintPreviewZoomReset.tooltip=l\u1EADp l\u1EA1i ch\u1EBF \u0111\u1ED9 thu phóng
PrintPreviewZoomIn.tooltip=phóng to
PrintPreviewFormat.tooltip=\u0111\u1ECBnh d\u1EA1ng
PrintPreviewPrint.tooltip=in
PrintPreviewPDF.tooltip=PDF
PrintPreviewLeftView.tooltip=xem trái
PrintPreviewRightView.tooltip=xem ph\u1EA3i
Help.text=h\u1ED7 tr\u1EE3
ChooseFilter.tooltip=l\u1ECDc
ChooseSort.tooltip=s\u1EAFp x\u1EBFp
ChooseGroup.tooltip=nhóm

View file

@ -0,0 +1,232 @@
#The contents of this file are subject to the Common Public Attribution License
#Version 1.0 (the "License"); you may not use this file except in compliance with
#the License. You may obtain a copy of the License at
#http://www.projectlibre.com/license . The License is based on the Mozilla Public
#License Version 1.1 but Sections 14 and 15 have been added to cover use of
#software over a computer network and provide for limited attribution for the
#Original Developer. In addition, Exhibit A has been modified to be consistent
#with Exhibit B.
#
#Software distributed under the License is distributed on an "AS IS" basis,
#WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
#specific language governing rights and limitations under the License. The
#Original Code is ProjectLibre and ProjectLibre.
#The Original Developer is the Initial Developer and is both ProjectLibre, Inc and
#ProjectLibre Inc. All portions of the code written by ProjectLibre are Copyright (c)
#2006, 2008. All Rights Reserved. All portions of the code written by ProjectLibre
#are Copyright (c) 2012. All Rights Reserved. Contributors ProjectLibre, Inc. and
#ProjectLibre, Inc.
#
#Alternatively, the contents of this file may be used under the terms of the
#ProjectLibre End-User License Agreement (the ProjectLibre License) in which case
#the provisions of the ProjectLibre License are applicable instead of those above.
#If you wish to allow use of your version of this file only under the terms of the
#ProjectLibre License and not to allow others to use your version of this file under
#the CPAL, indicate your decision by deleting the provisions above and replace them
#with the notice and other provisions required by the Project Libre License. If you
#do not delete the provisions above, a recipient may use your version of this file
#under either the CPAL or the ProjectLibre Licenses.
#
#
#[NOTE: The text of this Exhibit A may differ slightly from the text of the notices
#in the Source Code files of the Original Code. You should use the text of this
#Exhibit A rather than the text found in the Original Code Source Code for Your
#Modifications.]
#EXHIBIT B. Attribution Information both ProjectLibre and ProjectLibre required
#
#Attribution Copyright Notice: Copyright (c) 2012, ProjectLibre, Inc.
#Attribution Phrase (not exceeding 10 words): ProjectLibre, the updated version of
#ProjectLibre
#Attribution URL: http://www.projectlibre.com
#Graphic Image as provided in the Covered Code as file: projectlibre-logo.png with
#alternatives listed on http://www.projectlibre.com/logo
#
#Display of Attribution Information is required in Larger Works which are defined in
#the CPAL as a work which combines Covered Code or portions thereof with code not
#governed by the terms of the CPAL. However, in addition to the other notice
#obligations, all copies of the Covered Code in Executable and Source Code form
#distributed must, as a form of attribution of the original author, include on each
#user interface screen the "ProjectLibre" and \u201CProjectLibre\u201D logos visible to all users.
#The ProjectLibre logo should be located horizontally aligned with the menu bar and left
#justified on the top left of the screen adjacent to the File menu. The logo must be
#at least 100 x 25 pixels. When users click on the "ProjectLibre" logo it must direct them
#back to http://www.ProjectLibre.com. The ProjectLibre logo should be located horizontally
#aligned immediately above the ProjectLibre logo and left justified in alignment with the
#ProjectLibre logo. The logo must be at least 144 x 31 pixels. When users click on the
#"ProjectLibre" logo it must direct them back to http://www.projectlibre.com.
#
#Attribution Copyright Notice: Copyright (c) 2006, 2020 ProjectLibre, Inc.
#Attribution Phrase (not exceeding 10 words): Powered by ProjectLibre, an open source
#solution from ProjectLibre
#Attribution URL: http://www.ProjectLibre.com
#Graphic Image as provided in the Covered Code as file: ProjectLibre_logo.png with
#alternatives listed on http://www.ProjectLibre.com/logo
#
#Display of Attribution Information is required in Larger Works which are defined in
#the CPAL as a work which combines Covered Code or portions thereof with code not
#governed by the terms of the CPAL. However, in addition to the other notice
#obligations, all copies of the Covered Code in Executable and Source Code form
#distributed must, as a form of attribution of the original author, include on each
#user interface screen the "ProjectLibre" and \u201CProjectLibre\u201D logos visible to all users.
#The ProjectLibre logo should be located horizontally aligned with the menu bar and left
#justified on the top left of the screen adjacent to the File menu. \u00A0The logo must be
#at least 100 x 25 pixels. When users click on the "ProjectLibre" logo it must direct them
#back to http://www.ProjectLibre.com.
#
#
# LOCALIZATION NOTES:
#
# The only lines to localize have the following suffixes:
# .text
# .title
# .tooltip
# .mnemonic (normally first letter of .text)
# .accelerator (normally CTRL+first letter of .text)
#
ProjectRibbonTask.title = \u6A94\u6848
TaskRibbonTask.title = \u4EFB\u52D9
ResourceRibbonTask.title = \u8CC7\u6E90
ViewRibbonTask.title = \u6AA2\u8996
FileRibbonBand.title = \u6A94\u6848
PrintRibbonBand.title = \u5217\u5370
ClipboardRibbonBand.title = \u526A\u8CBC\u7C3F
#EditingRibbonBand.title = \u7DE8\u8F2F
TaskRibbonBand.title = \u4EFB\u52D9
ResourceRibbonBand.title = \u8CC7\u6E90
ProjectRibbonBand.title = \u5C08\u6848
TaskViewsZoomRibbonBand.title = \u6AA2\u8996
TaskViewsRibbonBand.title = \u4EFB\u52D9\u6AA2\u8996
ResourceViewsZoomRibbonBand.title = \u6AA2\u8996
ResourceViewsRibbonBand.title = \u8CC7\u6E90\u6AA2\u8996
OtherViewsRibbonBand.title = \u5176\u4ED6\u6AA2\u8996
SubViewsRibbonBand.title = \u6B21\u8981\u6AA2\u8996
FiltersRibbonBand.title = \u904E\u6FFE
RibbonNewProject.text =\u65B0\u589E
RibbonNewProject.tooltip =\u65B0\u589E\u5C08\u6848
RibbonOpenProject.text =\u958B\u555F
RibbonOpenProject.tooltip =\u958B\u555F\u5C08\u6848
RibbonSaveProject.text =\u5132\u5B58
RibbonSaveProject.tooltip =\u5132\u5B58\u5C08\u6848
RibbonSaveProjectAs.text =\u53E6\u5B58
RibbonSaveProjectAs.tooltip =\u5132\u5B58\u70BA\u65B0\u5C08\u6848
RibbonCloseProject.text =\u95DC\u9589
RibbonCloseProject.tooltip =\u95DC\u9589\u5C08\u6848
RibbonPrint.text =\u5217\u5370
RibbonPrint.tooltip =\u5217\u5370\u7576\u524D\u6587\u4EF6.
RibbonPrintPreview.text =\u9810\u89BD
RibbonPrintPreview.tooltip =\u9810\u89BD\u5217\u5370
RibbonPDF.text =PDF
RibbonPDF.tooltip =PDF
RibbonCut.text =\u526A\u4E0B
RibbonCut.tooltip =\u526A\u4E0B
RibbonCopy.text =\u8907\u88FD
RibbonCopy.tooltip =\u8907\u88FD
RibbonPaste.text =Paste
RibbonPaste.tooltip =Paste
RibbonDelete.text =\u522A\u9664
RibbonDelete.tooltip =\u522A\u9664
RibbonZoomIn.text =\u62C9\u8FD1
RibbonZoomIn.tooltip =\u62C9\u8FD1
RibbonZoomOut.text =\u62C9\u9060
RibbonZoomOut.tooltip =\u62C9\u9060
RibbonFind.text =\u5C0B\u627E
RibbonFind.tooltip = \u5C0B\u627E
RibbonScrollToTask.text = \u6372\u52D5\u81F3\u4EFB\u52D9
RibbonScrollToTask.tooltip = \u6372\u52D5\u81F3\u4EFB\u52D9
RibbonOutdent.text =\u6E1B\u5C11\u7E2E\u6392
RibbonOutdent.tooltip =\u6E1B\u5C11\u7E2E\u6392
RibbonIndent.text =\u589E\u52A0\u7E2E\u6392
RibbonIndent.tooltip =\u589E\u52A0\u7E2E\u6392
RibbonLink.text=\u9023\u7D50
RibbonLink.tooltip=\u9023\u7D50
RibbonUnlink.text=\u53CD\u9023\u7D50
RibbonUnlink.tooltip=\u53CD\u9023\u7D50
RibbonTaskInformation.text =\u8CC7\u8A0A
RibbonTaskInformation.tooltip =\u4EFB\u52D9\u8CC7\u8A0A
RibbonResourceInformation.text =\u8CC7\u8A0A
RibbonResourceInformation.tooltip =\u8CC7\u6E90\u8CC7\u8A0A
RibbonProjectInformation.text =\u8CC7\u8A0A
RibbonProjectInformation.tooltip =\u5C08\u6848\u8CC7\u8A0A
RibbonChangeWorkingTime.text=\u884C\u4E8B\u66C6
RibbonChangeWorkingTime.tooltip=\u4FBF\u5DE5\u4F5C\u884C\u4E8B\u66C6
RibbonNotes.text =\u7B46\u8A18
RibbonNotes.tooltip =\u7B46\u8A18...
RibbonInsert.text =\u63D2\u5165
RibbonInsert.tooltip =\u63D2\u5165
RibbonAssignResources.text=\u5206\u914D\u8CC7\u6E90
RibbonAssignResources.tooltip=\u5206\u914D\u8CC7\u6E90
RibbonProjectsDialog.text =\u5C08\u6848\u8996\u7A97
RibbonProjectsDialog.tooltip =\u5C08\u6848
RibbonUpdateTasks.text =\u66F4\u65B0
RibbonUpdateTasks.tooltip =\u66F4\u65B0\u5C08\u6848...
RibbonUpdateTasks.mnemonic = T
RibbonUpdateProject.text =\u66F4\u65B0
RibbonUpdateProject.tooltip =\u66F4\u65B0\u5C08\u6848...
RibbonUpdateProject.mnemonic = P
RibbonSaveBaseline.text =\u5132\u5B58\u57FA\u7DDA
RibbonSaveBaseline.tooltip =\u5132\u5B58\u57FA\u7DDA...
RibbonSaveBaseline.mnemonic = S
RibbonClearBaseline.text =\u6E05\u9664\u57FA\u7DDA
RibbonClearBaseline.tooltip =\u6E05\u9664\u57FA\u7DDA...
RibbonClearBaseline.mnemonic = C
RibbonGantt.text=\u7518\u7279
RibbonGantt.tooltip=\u7518\u7279
RibbonTrackingGantt.text=\u8FFD\u8E2A\u7518\u7279
RibbonTrackingGantt.tooltip=\u8FFD\u8E2A\u7518\u7279
RibbonTaskUsageDetail.text=\u4EFB\u52D9\u4F7F\u7528
RibbonTaskUsageDetail.tooltip=\u4EFB\u52D9\u4F7F\u7528
RibbonResourceUsageDetail.text=\u8CC7\u6E90\u4F7F\u7528
RibbonResourceUsageDetail.tooltip=\u8CC7\u6E90\u4F7F\u7528
RibbonNetwork.text=\u7DB2\u8DEF
RibbonNetwork.tooltip=\u7DB2\u8DEF
RibbonResources.text=\u8CC7\u6E90
RibbonResources.tooltip=\u8CC7\u6E90
RibbonProjects.text=\u5C08\u6848
RibbonProjects.tooltip=\u5C08\u6848
RibbonWBS.text=WBS
RibbonWBS.tooltip=WBS
RibbonRBS.text=RBS
RibbonRBS.tooltip=RBS
RibbonReport.text=\u56DE\u5831
RibbonReport.tooltip=\u56DE\u5831
RibbonHistogram.text=\u7D71\u8A08
RibbonHistogram.tooltip=\u7D71\u8A08
RibbonCharts.text=\u5716\u8868
RibbonCharts.tooltip=\u5716\u8868
RibbonTaskUsage.text=\u4EFB\u52D9\u4F7F\u7528
RibbonTaskUsage.tooltip=\u4EFB\u52D9\u4F7F\u7528
RibbonResourceUsage.text=\u8CC7\u6E90\u4F7F\u7528
RibbonResourceUsage.tooltip=\u8CC7\u6E90\u4F7F\u7528
RibbonNoSubWindow.text=\u6C92\u6709\u5B50\u8996\u7A97
RibbonNoSubWindow.tooltip=\u6C92\u6709\u5B50\u8996\u7A97
RibbonNoTextHistogram.tooltip=\u7D71\u8A08
RibbonNoTextCharts.tooltip=\u5716\u8868
RibbonNoTextTaskUsage.tooltip=\u4EFB\u52D9\u4F7F\u7528
RibbonNoTextResourceUsage.tooltip=\u8CC7\u6E90\u4F7F\u7528
RibbonNoTextNoSubWindow.tooltip=\u6C92\u6709\u5B50\u8996\u7A97
RibbonTopBarSaveProject.text=\u5132\u5B58\u5C08\u6848
RibbonTopBarSaveProject.tooltip=\u5132\u5B58\u5C08\u6848
RibbonTopBarUndo.text=\u5FA9\u539F
RibbonTopBarUndo.tooltip=\u5FA9\u539F
RibbonTopBarRedo.text=\u91CD\u4F5C
RibbonTopBarRedo.tooltip=\u91CD\u4F5C
PrintPreviewFirst.tooltip=\u7B2C\u4E00\u9801
PrintPreviewBack.tooltip=\u4E0A\u4E00\u9801
PrintPreviewForward.tooltip = \u4E0B\u4E00\u9801
PrintPreviewLast.tooltip = \u6700\u5F8C\u4E00\u9801
PrintPreviewDown.tooltip = \u4E0A\u4E00\u9801
PrintPreviewUp.tooltip = \u4E0B\u4E00\u9801
PrintPreviewZoomOut.tooltip = \u62C9\u9060
PrintPreviewZoomReset.tooltip = \u9810\u8A2D\u5927\u5C0F
PrintPreviewZoomIn.tooltip = \u62C9\u8FD1
PrintPreviewFormat.tooltip = \u9801\u9762\u8A2D\u5B9A
PrintPreviewPrint.tooltip = \u5217\u5370
PrintPreviewPDF.tooltip = PDF
PrintPreviewLeftView.tooltip = \u986F\u793A\u5DE6\u534A\u908A
PrintPreviewRightView.tooltip = \u986F\u793A\u53F3\u534A\u908A
Help.text = \u8AAA\u660E
ChooseFilter.tooltip = \u904E\u6FFE
ChooseSort.tooltip = \u6392\u5E8F
ChooseGroup.tooltip = \u7FA4\u7D44

View file

@ -0,0 +1,232 @@
#The contents of this file are subject to the Common Public Attribution License
#Version 1.0 (the "License"); you may not use this file except in compliance with
#the License. You may obtain a copy of the License at
#http://www.projectlibre.com/license . The License is based on the Mozilla Public
#License Version 1.1 but Sections 14 and 15 have been added to cover use of
#software over a computer network and provide for limited attribution for the
#Original Developer. In addition, Exhibit A has been modified to be consistent
#with Exhibit B.
#
#Software distributed under the License is distributed on an "AS IS" basis,
#WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
#specific language governing rights and limitations under the License. The
#Original Code is ProjectLibre and ProjectLibre.
#The Original Developer is the Initial Developer and is both ProjectLibre, Inc and
#ProjectLibre Inc. All portions of the code written by ProjectLibre are Copyright (c)
#2006, 2008. All Rights Reserved. All portions of the code written by ProjectLibre
#are Copyright (c) 2012. All Rights Reserved. Contributors ProjectLibre, Inc. and
#ProjectLibre, Inc.
#
#Alternatively, the contents of this file may be used under the terms of the
#ProjectLibre End-User License Agreement (the ProjectLibre License) in which case
#the provisions of the ProjectLibre License are applicable instead of those above.
#If you wish to allow use of your version of this file only under the terms of the
#ProjectLibre License and not to allow others to use your version of this file under
#the CPAL, indicate your decision by deleting the provisions above and replace them
#with the notice and other provisions required by the Project Libre License. If you
#do not delete the provisions above, a recipient may use your version of this file
#under either the CPAL or the ProjectLibre Licenses.
#
#
#[NOTE: The text of this Exhibit A may differ slightly from the text of the notices
#in the Source Code files of the Original Code. You should use the text of this
#Exhibit A rather than the text found in the Original Code Source Code for Your
#Modifications.]
#EXHIBIT B. Attribution Information both ProjectLibre and ProjectLibre required
#
#Attribution Copyright Notice: Copyright (c) 2012, ProjectLibre, Inc.
#Attribution Phrase (not exceeding 10 words): ProjectLibre, the updated version of
#ProjectLibre
#Attribution URL: http://www.projectlibre.com
#Graphic Image as provided in the Covered Code as file: projectlibre-logo.png with
#alternatives listed on http://www.projectlibre.com/logo
#
#Display of Attribution Information is required in Larger Works which are defined in
#the CPAL as a work which combines Covered Code or portions thereof with code not
#governed by the terms of the CPAL. However, in addition to the other notice
#obligations, all copies of the Covered Code in Executable and Source Code form
#distributed must, as a form of attribution of the original author, include on each
#user interface screen the "ProjectLibre" and \u201CProjectLibre\u201D logos visible to all users.
#The ProjectLibre logo should be located horizontally aligned with the menu bar and left
#justified on the top left of the screen adjacent to the File menu. The logo must be
#at least 100 x 25 pixels. When users click on the "ProjectLibre" logo it must direct them
#back to http://www.ProjectLibre.com. The ProjectLibre logo should be located horizontally
#aligned immediately above the ProjectLibre logo and left justified in alignment with the
#ProjectLibre logo. The logo must be at least 144 x 31 pixels. When users click on the
#"ProjectLibre" logo it must direct them back to http://www.projectlibre.com.
#
#Attribution Copyright Notice: Copyright (c) 2006, 2020 ProjectLibre, Inc.
#Attribution Phrase (not exceeding 10 words): Powered by ProjectLibre, an open source
#solution from ProjectLibre
#Attribution URL: http://www.ProjectLibre.com
#Graphic Image as provided in the Covered Code as file: ProjectLibre_logo.png with
#alternatives listed on http://www.ProjectLibre.com/logo
#
#Display of Attribution Information is required in Larger Works which are defined in
#the CPAL as a work which combines Covered Code or portions thereof with code not
#governed by the terms of the CPAL. However, in addition to the other notice
#obligations, all copies of the Covered Code in Executable and Source Code form
#distributed must, as a form of attribution of the original author, include on each
#user interface screen the "ProjectLibre" and \u201CProjectLibre\u201D logos visible to all users.
#The ProjectLibre logo should be located horizontally aligned with the menu bar and left
#justified on the top left of the screen adjacent to the File menu. \u00A0The logo must be
#at least 100 x 25 pixels. When users click on the "ProjectLibre" logo it must direct them
#back to http://www.ProjectLibre.com.
#
#
# LOCALIZATION NOTES:
#
# The only lines to localize have the following suffixes:
# .text
# .title
# .tooltip
# .mnemonic (normally first letter of .text)
# .accelerator (normally CTRL+first letter of .text)
#
ProjectRibbonTask.title = \u6A94\u6848
TaskRibbonTask.title = \u4EFB\u52D9
ResourceRibbonTask.title = \u8CC7\u6E90
ViewRibbonTask.title = \u6AA2\u8996
FileRibbonBand.title = \u6A94\u6848
PrintRibbonBand.title = \u5217\u5370
ClipboardRibbonBand.title = \u526A\u8CBC\u7C3F
#EditingRibbonBand.title = \u7DE8\u8F2F
TaskRibbonBand.title = \u4EFB\u52D9
ResourceRibbonBand.title = \u8CC7\u6E90
ProjectRibbonBand.title = \u5C08\u6848
TaskViewsZoomRibbonBand.title = \u6AA2\u8996
TaskViewsRibbonBand.title = \u4EFB\u52D9\u6AA2\u8996
ResourceViewsZoomRibbonBand.title = \u6AA2\u8996
ResourceViewsRibbonBand.title = \u8CC7\u6E90\u6AA2\u8996
OtherViewsRibbonBand.title = \u5176\u4ED6\u6AA2\u8996
SubViewsRibbonBand.title = \u6B21\u8981\u6AA2\u8996
FiltersRibbonBand.title = \u904E\u6FFE
RibbonNewProject.text =\u65B0\u589E
RibbonNewProject.tooltip =\u65B0\u589E\u5C08\u6848
RibbonOpenProject.text =\u958B\u555F
RibbonOpenProject.tooltip =\u958B\u555F\u5C08\u6848
RibbonSaveProject.text =\u5132\u5B58
RibbonSaveProject.tooltip =\u5132\u5B58\u5C08\u6848
RibbonSaveProjectAs.text =\u53E6\u5B58
RibbonSaveProjectAs.tooltip =\u5132\u5B58\u70BA\u65B0\u5C08\u6848
RibbonCloseProject.text =\u95DC\u9589
RibbonCloseProject.tooltip =\u95DC\u9589\u5C08\u6848
RibbonPrint.text =\u5217\u5370
RibbonPrint.tooltip =\u5217\u5370\u7576\u524D\u6587\u4EF6.
RibbonPrintPreview.text =\u9810\u89BD
RibbonPrintPreview.tooltip =\u9810\u89BD\u5217\u5370
RibbonPDF.text =PDF
RibbonPDF.tooltip =PDF
RibbonCut.text =\u526A\u4E0B
RibbonCut.tooltip =\u526A\u4E0B
RibbonCopy.text =\u8907\u88FD
RibbonCopy.tooltip =\u8907\u88FD
RibbonPaste.text =Paste
RibbonPaste.tooltip =Paste
RibbonDelete.text =\u522A\u9664
RibbonDelete.tooltip =\u522A\u9664
RibbonZoomIn.text =\u62C9\u8FD1
RibbonZoomIn.tooltip =\u62C9\u8FD1
RibbonZoomOut.text =\u62C9\u9060
RibbonZoomOut.tooltip =\u62C9\u9060
RibbonFind.text =\u5C0B\u627E
RibbonFind.tooltip = \u5C0B\u627E
RibbonScrollToTask.text = \u6372\u52D5\u81F3\u4EFB\u52D9
RibbonScrollToTask.tooltip = \u6372\u52D5\u81F3\u4EFB\u52D9
RibbonOutdent.text =\u6E1B\u5C11\u7E2E\u6392
RibbonOutdent.tooltip =\u6E1B\u5C11\u7E2E\u6392
RibbonIndent.text =\u589E\u52A0\u7E2E\u6392
RibbonIndent.tooltip =\u589E\u52A0\u7E2E\u6392
RibbonLink.text=\u9023\u7D50
RibbonLink.tooltip=\u9023\u7D50
RibbonUnlink.text=\u53CD\u9023\u7D50
RibbonUnlink.tooltip=\u53CD\u9023\u7D50
RibbonTaskInformation.text =\u8CC7\u8A0A
RibbonTaskInformation.tooltip =\u4EFB\u52D9\u8CC7\u8A0A
RibbonResourceInformation.text =\u8CC7\u8A0A
RibbonResourceInformation.tooltip =\u8CC7\u6E90\u8CC7\u8A0A
RibbonProjectInformation.text =\u8CC7\u8A0A
RibbonProjectInformation.tooltip =\u5C08\u6848\u8CC7\u8A0A
RibbonChangeWorkingTime.text=\u884C\u4E8B\u66C6
RibbonChangeWorkingTime.tooltip=\u4FBF\u5DE5\u4F5C\u884C\u4E8B\u66C6
RibbonNotes.text =\u7B46\u8A18
RibbonNotes.tooltip =\u7B46\u8A18...
RibbonInsert.text =\u63D2\u5165
RibbonInsert.tooltip =\u63D2\u5165
RibbonAssignResources.text=\u5206\u914D\u8CC7\u6E90
RibbonAssignResources.tooltip=\u5206\u914D\u8CC7\u6E90
RibbonProjectsDialog.text =\u5C08\u6848\u8996\u7A97
RibbonProjectsDialog.tooltip =\u5C08\u6848
RibbonUpdateTasks.text =\u66F4\u65B0
RibbonUpdateTasks.tooltip =\u66F4\u65B0\u5C08\u6848...
RibbonUpdateTasks.mnemonic = T
RibbonUpdateProject.text =\u66F4\u65B0
RibbonUpdateProject.tooltip =\u66F4\u65B0\u5C08\u6848...
RibbonUpdateProject.mnemonic = P
RibbonSaveBaseline.text =\u5132\u5B58\u57FA\u7DDA
RibbonSaveBaseline.tooltip =\u5132\u5B58\u57FA\u7DDA...
RibbonSaveBaseline.mnemonic = S
RibbonClearBaseline.text =\u6E05\u9664\u57FA\u7DDA
RibbonClearBaseline.tooltip =\u6E05\u9664\u57FA\u7DDA...
RibbonClearBaseline.mnemonic = C
RibbonGantt.text=\u7518\u7279
RibbonGantt.tooltip=\u7518\u7279
RibbonTrackingGantt.text=\u8FFD\u8E2A\u7518\u7279
RibbonTrackingGantt.tooltip=\u8FFD\u8E2A\u7518\u7279
RibbonTaskUsageDetail.text=\u4EFB\u52D9\u4F7F\u7528
RibbonTaskUsageDetail.tooltip=\u4EFB\u52D9\u4F7F\u7528
RibbonResourceUsageDetail.text=\u8CC7\u6E90\u4F7F\u7528
RibbonResourceUsageDetail.tooltip=\u8CC7\u6E90\u4F7F\u7528
RibbonNetwork.text=\u7DB2\u8DEF
RibbonNetwork.tooltip=\u7DB2\u8DEF
RibbonResources.text=\u8CC7\u6E90
RibbonResources.tooltip=\u8CC7\u6E90
RibbonProjects.text=\u5C08\u6848
RibbonProjects.tooltip=\u5C08\u6848
RibbonWBS.text=WBS
RibbonWBS.tooltip=WBS
RibbonRBS.text=RBS
RibbonRBS.tooltip=RBS
RibbonReport.text=\u56DE\u5831
RibbonReport.tooltip=\u56DE\u5831
RibbonHistogram.text=\u7D71\u8A08
RibbonHistogram.tooltip=\u7D71\u8A08
RibbonCharts.text=\u5716\u8868
RibbonCharts.tooltip=\u5716\u8868
RibbonTaskUsage.text=\u4EFB\u52D9\u4F7F\u7528
RibbonTaskUsage.tooltip=\u4EFB\u52D9\u4F7F\u7528
RibbonResourceUsage.text=\u8CC7\u6E90\u4F7F\u7528
RibbonResourceUsage.tooltip=\u8CC7\u6E90\u4F7F\u7528
RibbonNoSubWindow.text=\u6C92\u6709\u5B50\u8996\u7A97
RibbonNoSubWindow.tooltip=\u6C92\u6709\u5B50\u8996\u7A97
RibbonNoTextHistogram.tooltip=\u7D71\u8A08
RibbonNoTextCharts.tooltip=\u5716\u8868
RibbonNoTextTaskUsage.tooltip=\u4EFB\u52D9\u4F7F\u7528
RibbonNoTextResourceUsage.tooltip=\u8CC7\u6E90\u4F7F\u7528
RibbonNoTextNoSubWindow.tooltip=\u6C92\u6709\u5B50\u8996\u7A97
RibbonTopBarSaveProject.text=\u5132\u5B58\u5C08\u6848
RibbonTopBarSaveProject.tooltip=\u5132\u5B58\u5C08\u6848
RibbonTopBarUndo.text=\u5FA9\u539F
RibbonTopBarUndo.tooltip=\u5FA9\u539F
RibbonTopBarRedo.text=\u91CD\u4F5C
RibbonTopBarRedo.tooltip=\u91CD\u4F5C
PrintPreviewFirst.tooltip=\u7B2C\u4E00\u9801
PrintPreviewBack.tooltip=\u4E0A\u4E00\u9801
PrintPreviewForward.tooltip = \u4E0B\u4E00\u9801
PrintPreviewLast.tooltip = \u6700\u5F8C\u4E00\u9801
PrintPreviewDown.tooltip = \u4E0A\u4E00\u9801
PrintPreviewUp.tooltip = \u4E0B\u4E00\u9801
PrintPreviewZoomOut.tooltip = \u62C9\u9060
PrintPreviewZoomReset.tooltip = \u9810\u8A2D\u5927\u5C0F
PrintPreviewZoomIn.tooltip = \u62C9\u8FD1
PrintPreviewFormat.tooltip = \u9801\u9762\u8A2D\u5B9A
PrintPreviewPrint.tooltip = \u5217\u5370
PrintPreviewPDF.tooltip = PDF
PrintPreviewLeftView.tooltip = \u986F\u793A\u5DE6\u534A\u908A
PrintPreviewRightView.tooltip = \u986F\u793A\u53F3\u534A\u908A
Help.text = \u8AAA\u660E
ChooseFilter.tooltip = \u904E\u6FFE
ChooseSort.tooltip = \u6392\u5E8F
ChooseGroup.tooltip = \u7FA4\u7D44

View file

@ -226,6 +226,8 @@ menu24.delegateTasks=delegatedTool.gif
menu24.scrollToTask=scrollToTask.gif
menu24.PDF=pdf.png
menu.PDF=pdf16.png
menu24.locale=globe24.png
menu16.locale=globe16.png
format.other=otherFormat.gif
@ -266,6 +268,7 @@ ribbon.hint=help-hint.png
ribbon.calendar=view-calendar.png
ribbon.information=preferences-system-4.png
ribbon.help=system-help-3.png
ribbon.locale=globe24.png
ribbon.multiproject=document-multiple.png
ribbon.notes=text-field.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB