This commit is contained in:
Jane
2024-07-16 15:55:31 +08:00
parent 8f4ec86367
commit 29bc31ade5
12411 changed files with 8139339 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
import com.sun.star.uno.UnoRuntime;
import com.sun.star.frame.XModel;
import com.sun.star.sheet.XSpreadsheetDocument;
import com.sun.star.sheet.XSpreadsheet;
import com.sun.star.sheet.XSpreadsheets;
import com.sun.star.container.XIndexAccess;
import com.sun.star.sheet.XCellAddressable;
import com.sun.star.sheet.XCellRangeAddressable;
import com.sun.star.table.CellAddress;
import com.sun.star.table.CellRangeAddress;
import com.sun.star.sheet.XCellRangeMovement;
oDoc = UnoRuntime.queryInterface(XModel.class,XSCRIPTCONTEXT.getInvocationContext());
if ( oDoc == null )
oDoc = XSCRIPTCONTEXT.getDocument();
XSpreadsheetDocument xDoc = (XSpreadsheetDocument) UnoRuntime.queryInterface(XSpreadsheetDocument.class,oDoc);
XSpreadsheets xSheets = xDoc.getSheets();
XIndexAccess xSheetsIA = UnoRuntime.queryInterface(XIndexAccess.class, xSheets);
XSpreadsheet xSheet = UnoRuntime.queryInterface(com.sun.star.sheet.XSpreadsheet.class, xSheetsIA.getByIndex(0));
XCellRangeAddressable xAddr1 = UnoRuntime.queryInterface(XCellRangeAddressable.class, xSheet.getCellRangeByName("A1:A10") );
CellRangeAddress source = xAddr1.getRangeAddress();
XCellAddressable xAddr2 = UnoRuntime.queryInterface(XCellAddressable.class, xSheet.getCellRangeByName("B1").getCellByPosition( 0, 0 ) );
CellAddress target = xAddr2.getCellAddress();
XCellRangeMovement xCRM = UnoRuntime.queryInterface(XCellRangeMovement.class, xSheet);
xCRM.copyRange(target, source);
return 0;

View File

@@ -0,0 +1,34 @@
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
import com.sun.star.uno.UnoRuntime;
import com.sun.star.frame.XModel;
import com.sun.star.sheet.XSpreadsheetDocument;
import com.sun.star.sheet.XSpreadsheet;
import com.sun.star.sheet.XSpreadsheets;
import com.sun.star.container.XIndexAccess;
import com.sun.star.sheet.XViewFreezable;
import com.sun.star.sheet.XViewPane;
oDoc = UnoRuntime.queryInterface(XModel.class,XSCRIPTCONTEXT.getInvocationContext());
if ( oDoc == null )
oDoc = XSCRIPTCONTEXT.getDocument();
XSpreadsheetDocument xDoc = (XSpreadsheetDocument) UnoRuntime.queryInterface(XSpreadsheetDocument.class,oDoc);
XSpreadsheets xSheets = xDoc.getSheets();
XIndexAccess xSheetsIA = UnoRuntime.queryInterface(XIndexAccess.class, xSheets);
XSpreadsheet xSheet = UnoRuntime.queryInterface(com.sun.star.sheet.XSpreadsheet.class, xSheetsIA.getByIndex(0));
XViewFreezable xFreeze = UnoRuntime.queryInterface(XViewFreezable.class, oDoc.getCurrentController() );
xFreeze.freezeAtPosition(2, 3);
XViewPane xViewPane = UnoRuntime.queryInterface(XViewPane.class, oDoc.getCurrentController() );
xViewPane.setFirstVisibleColumn(12);
xViewPane.setFirstVisibleRow(149);
return 0;

View File

@@ -0,0 +1,25 @@
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
import com.sun.star.uno.UnoRuntime;
import com.sun.star.frame.XModel;
import com.sun.star.sheet.XSpreadsheetDocument;
import com.sun.star.sheet.XSpreadsheets;
import com.sun.star.lang.XMultiServiceFactory;
oDoc = UnoRuntime.queryInterface(XModel.class,XSCRIPTCONTEXT.getInvocationContext());
if ( oDoc == null )
oDoc = XSCRIPTCONTEXT.getDocument();
XSpreadsheetDocument xDoc = (XSpreadsheetDocument) UnoRuntime.queryInterface(XSpreadsheetDocument.class,oDoc);
XSpreadsheets xSheets = xDoc.getSheets();
xSheets.insertNewByName("First new sheet", (short)0);
xSheets.insertNewByName("Second new sheet", (short)1);
return 0;

View File

@@ -0,0 +1,30 @@
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
import com.sun.star.uno.UnoRuntime;
import com.sun.star.frame.XModel;
import com.sun.star.sheet.XSpreadsheetDocument;
import com.sun.star.sheet.XSpreadsheet;
import com.sun.star.sheet.XSpreadsheets;
import com.sun.star.container.XIndexAccess;
import com.sun.star.util.XProtectable;
oDoc = UnoRuntime.queryInterface(XModel.class,XSCRIPTCONTEXT.getInvocationContext());
if ( oDoc == null )
oDoc = XSCRIPTCONTEXT.getDocument();
XSpreadsheetDocument xDoc = (XSpreadsheetDocument) UnoRuntime.queryInterface(XSpreadsheetDocument.class, oDoc);
XSpreadsheets xSheets = xDoc.getSheets();
XIndexAccess xSheetsIA = UnoRuntime.queryInterface(XIndexAccess.class, xSheets);
XSpreadsheet xSheet = UnoRuntime.queryInterface(XSpreadsheet.class, xSheetsIA.getByIndex(0));
XProtectable xProtectable = UnoRuntime.queryInterface(XProtectable.class, xSheet);
xProtectable.protect("myPassword");
//xProtectable.unprotect("myPassword");
return 0;

View File

@@ -0,0 +1,30 @@
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
import com.sun.star.uno.UnoRuntime;
import com.sun.star.frame.XModel;
import com.sun.star.sheet.XSpreadsheetDocument;
import com.sun.star.sheet.XSpreadsheet;
import com.sun.star.sheet.XSpreadsheets;
import com.sun.star.view.XSelectionSupplier;
import com.sun.star.container.XIndexAccess;
import com.sun.star.table.XCellRange;
oDoc = UnoRuntime.queryInterface(XModel.class,XSCRIPTCONTEXT.getInvocationContext());
if ( oDoc == null )
oDoc = XSCRIPTCONTEXT.getDocument();
XSpreadsheetDocument xDoc = (XSpreadsheetDocument) UnoRuntime.queryInterface(XSpreadsheetDocument.class,oDoc);
XSpreadsheets xSheets = xDoc.getSheets();
XIndexAccess xSheetsIA = UnoRuntime.queryInterface(XIndexAccess.class, xSheets);
XSpreadsheet xSheet = UnoRuntime.queryInterface(com.sun.star.sheet.XSpreadsheet.class, xSheetsIA.getByIndex(0));
XCellRange xResultRange = xSheet.getCellRangeByName("B20");
XSelectionSupplier xSel = UnoRuntime.queryInterface(XSelectionSupplier.class, oDoc.getCurrentController());
xSel.select(xResultRange);
return 0;

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><parcel xmlns:parcel="scripting.dtd" language="BeanShell">
<script language="BeanShell"><locale lang="en"><displayname value="SelectCell.bsh"/><description>SelectCell.bsh</description></locale><logicalname value="SelectCell.bsh"/><functionname value="SelectCell.bsh"/></script><script language="BeanShell"><locale lang="en"><displayname value="InsertSheet.bsh"/><description>InsertSheet.bsh</description></locale><logicalname value="InsertSheet.bsh"/><functionname value="InsertSheet.bsh"/></script><script language="BeanShell"><locale lang="en"><displayname value="ProtectSheet.bsh"/><description>ProtectSheet.bsh</description></locale><logicalname value="ProtectSheet.bsh"/><functionname value="ProtectSheet.bsh"/></script><script language="BeanShell"><locale lang="en"><displayname value="CopyRange.bsh"/><description>CopyRange.bsh</description></locale><logicalname value="CopyRange.bsh"/><functionname value="CopyRange.bsh"/></script><script language="BeanShell"><locale lang="en"><displayname value="FixView.bsh"/><description>FixView.bsh</description></locale><logicalname value="FixView.bsh"/><functionname value="FixView.bsh"/></script></parcel>

View File

@@ -0,0 +1,111 @@
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.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.apache.org/licenses/LICENSE-2.0 .
*/
// Change the case of a selection, or current word from upper case,
// to first char upper case, to all lower case to upper case...
import com.sun.star.uno.UnoRuntime;
import com.sun.star.frame.XModel;
import com.sun.star.view.XSelectionSupplier;
import com.sun.star.container.XIndexAccess;
import com.sun.star.text.XText;
import com.sun.star.text.XTextRange;
import com.sun.star.text.XWordCursor;
import com.sun.star.script.provider.XScriptContext;
// return the new string based on the string passed in
String getNewString( theString ) {
String newString;
if(theString==null || theString.length()==0) {
return newString;
}
// should we tokenize on "."?
if(Character.isUpperCase(theString.charAt(0)) && theString.length()>=2 && Character.isUpperCase(theString.charAt(1))) { // first two chars are UC => first UC, rest LC
newString=theString.substring(0,1).toUpperCase()+theString.substring(1).toLowerCase();
} else if (Character.isUpperCase(theString.charAt(0))) { // first char UC => all to LC
newString=theString.toLowerCase();
} else { // all to UC.
newString=theString.toUpperCase();
}
return newString;
}
//the method that does the work
void capitalise() {
// get the number of regions selected
count = xIndexAccess.getCount();
if(count>=1) { //ie we have a selection
for(i=0;i<count;i++) {
// get the i-th region selected
xTextRange = (XTextRange)
UnoRuntime.queryInterface(XTextRange.class, xIndexAccess.getByIndex(i));
System.out.println("string: "+xTextRange.getString());
// get the selected string
theString = xTextRange.getString();
if(theString.length()==0) {
// sadly we can have a selection where nothing is selected
// in this case we get the XWordCursor and make a selection!
xText = (XText)
UnoRuntime.queryInterface(XText.class, xTextRange.getText());
xWordCursor = (XWordCursor)
UnoRuntime.queryInterface(XWordCursor.class, xText.createTextCursorByRange(xTextRange));
// move the Word cursor to the start of the word if it's not
// already there
if(!xWordCursor.isStartOfWord()) {
xWordCursor.gotoStartOfWord(false);
}
// move the cursor to the next word, selecting all chars
// in between
xWordCursor.gotoNextWord(true);
// get the selected string
theString = xWordCursor.getString();
// get the new string
newString = getNewString(theString);
if(newString!=null) {
// set the new string
xWordCursor.setString(newString);
// keep the current selection
xSelectionSupplier.select(xWordCursor);
}
} else {
newString = getNewString( theString );
if(newString!=null) {
// set the new string
xTextRange.setString(newString);
// keep the current selection
xSelectionSupplier.select(xTextRange);
}
}
}
}
}
// The XSCRIPTCONTEXT variable is of type XScriptContext and is available to
// all BeanShell scripts executed by the Script Framework
xModel = (XModel)
UnoRuntime.queryInterface(XModel.class, XSCRIPTCONTEXT.getDocument());
//the writer controller impl supports the css.view.XSelectionSupplier interface
xSelectionSupplier = (XSelectionSupplier)
UnoRuntime.queryInterface(XSelectionSupplier.class, xModel.getCurrentController());
//see section 7.5.1 of developers' guide
xIndexAccess = (XIndexAccess)
UnoRuntime.queryInterface(XIndexAccess.class, xSelectionSupplier.getSelection());
//call the method that does the work
capitalise();
return 0;

View File

@@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.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.apache.org/licenses/LICENSE-2.0 .
-->
<parcel language="BeanShell" xmlns:parcel="scripting.dtd">
<script language="BeanShell">
<locale lang="en">
<displayname value="Capitalise"/>
<description>
Change the case of a selection, or current word from upper case, to first char upper case, to all lower case to upper case...
</description>
</locale>
<functionname value="capitalise.bsh"/>
<logicalname value="Capitalise.BeanShell"/>
</script>
</parcel>

View File

@@ -0,0 +1,34 @@
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.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.apache.org/licenses/LICENSE-2.0 .
*/
// Hello World in BeanShell
import com.sun.star.uno.UnoRuntime;
import com.sun.star.text.XTextDocument;
import com.sun.star.text.XText;
import com.sun.star.text.XTextRange;
// get the document from the scripting context which is made available to all
// scripts
oDoc = XSCRIPTCONTEXT.getDocument();
//get the XTextDocument interface
xTextDoc = (XTextDocument) UnoRuntime.queryInterface(XTextDocument.class,oDoc);
//get the XText interface
xText = xTextDoc.getText();
// get an (empty) XTextRange at the end of the document
xTextRange = xText.getEnd();
// set the string
xTextRange.setString( "Hello World (in BeanShell)" );

View File

@@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.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.apache.org/licenses/LICENSE-2.0 .
-->
<parcel language="BeanShell" xmlns:parcel="scripting.dtd">
<script language="BeanShell">
<locale lang="en">
<displayname value="Hello World"/>
<description>
Adds the string "Hello World" into the current text doc.
</description>
</locale>
<functionname value="helloworld.bsh"/>
<logicalname value="HelloWorld.BeanShell"/>
</script>
</parcel>

View File

@@ -0,0 +1,123 @@
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.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.apache.org/licenses/LICENSE-2.0 .
*/
// this code is bound to the events generated by the buttons in the dialog
// it will close the dialog or find and highlight the text entered in the
// dialog (depending on the button pressed)
import com.sun.star.uno.*;
import com.sun.star.awt.*;
import com.sun.star.lang.*;
import com.sun.star.beans.*;
import com.sun.star.util.*;
import com.sun.star.script.framework.browse.DialogFactory;
// Get the ActionEvent object from the ARGUMENTS list
ActionEvent event = (ActionEvent) ARGUMENTS[0];
// Each argument is of type Any so we must use the AnyConverter class to
// convert it into the interface or primitive type we expect
XButton button = (XButton)AnyConverter.toObject(
new Type(XButton.class), event.Source);
// We can now query for the model of the button and get its properties
XControl control = (XControl)UnoRuntime.queryInterface(XControl.class, button);
XControlModel cmodel = control.getModel();
XPropertySet pset = (XPropertySet)UnoRuntime.queryInterface(
XPropertySet.class, cmodel);
if (pset.getPropertyValue("Label").equals("Exit"))
{
// We can get the XDialog in which this control appears by calling
// getContext() on the XControl interface
XDialog xDialog = (XDialog)UnoRuntime.queryInterface(
XDialog.class, control.getContext());
// Close the dialog
xDialog.endExecute();
}
else
{
// We can get the list of controls for this dialog by calling
// getContext() on the XControl interface of the button
XControlContainer controls = (XControlContainer)UnoRuntime.queryInterface(
XControlContainer.class, control.getContext());
// Now get the text field control from the list
XTextComponent textField = (XTextComponent)
UnoRuntime.queryInterface(
XTextComponent.class, controls.getControl("HighlightTextField"));
String searchKey = textField.getText();
// highlight the text in red
java.awt.Color cRed = new java.awt.Color(255, 0, 0);
int red = cRed.getRGB();
XReplaceable replaceable = (XReplaceable)
UnoRuntime.queryInterface(XReplaceable.class, XSCRIPTCONTEXT.getDocument());
XReplaceDescriptor descriptor =
(XReplaceDescriptor) replaceable.createReplaceDescriptor();
// Gets a XPropertyReplace object for altering the properties
// of the replaced text
XPropertyReplace xPropertyReplace = (XPropertyReplace)
UnoRuntime.queryInterface(XPropertyReplace.class, descriptor);
// Sets the replaced text property fontweight value to Bold
PropertyValue wv = new PropertyValue("CharWeight", -1,
new Float(com.sun.star.awt.FontWeight.BOLD),
com.sun.star.beans.PropertyState.DIRECT_VALUE);
// Sets the replaced text property color value to RGB parameter
PropertyValue cv = new PropertyValue("CharColor", -1,
new Integer(red),
com.sun.star.beans.PropertyState.DIRECT_VALUE);
// Apply the properties
PropertyValue[] props = new PropertyValue[] { cv, wv };
try {
xPropertyReplace.setReplaceAttributes(props);
// Only matches whole words and case sensitive
descriptor.setPropertyValue(
"SearchCaseSensitive", new Boolean(true));
descriptor.setPropertyValue("SearchWords", new Boolean(true));
}
catch (com.sun.star.beans.UnknownPropertyException upe) {
System.err.println("Error setting up search properties");
return;
}
catch (com.sun.star.beans.PropertyVetoException pve) {
System.err.println("Error setting up search properties");
return;
}
catch (com.sun.star.lang.WrappedTargetException wte) {
System.err.println("Error setting up search properties");
return;
}
// Replaces all instances of searchKey with new Text properties
// and gets the number of instances of the searchKey
descriptor.setSearchString(searchKey);
descriptor.setReplaceString(searchKey);
replaceable.replaceAll(descriptor);
}
// BeanShell scripts in LibreOffice should always return 0
return 0;

View File

@@ -0,0 +1,140 @@
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.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.apache.org/licenses/LICENSE-2.0 .
*/
// this script serves as an example of how to launch a Basic Dialog
// from a script
import com.sun.star.uno.UnoRuntime;
import com.sun.star.script.provider.XScriptContext;
import com.sun.star.lang.XMultiComponentFactory;
import com.sun.star.lang.EventObject;
import com.sun.star.uno.Type;
import com.sun.star.uno.AnyConverter;
import com.sun.star.text.XTextDocument;
import com.sun.star.beans.PropertyValue;
import com.sun.star.script.XLibraryContainer;
import com.sun.star.awt.*;
import com.sun.star.util.*;
boolean tryLoadingLibrary( xmcf, context, name )
{
try
{
obj = xmcf.createInstanceWithContext(
"com.sun.star.script.Application" + name + "LibraryContainer",
context.getComponentContext());
xLibraryContainer = (XLibraryContainer)
UnoRuntime.queryInterface(XLibraryContainer.class, obj);
System.err.println("Got XLibraryContainer");
serviceObj = context.getComponentContext().getValueByName(
"/singletons/com.sun.star.util.theMacroExpander");
xme = (XMacroExpander) AnyConverter.toObject(
new Type(XMacroExpander.class), serviceObj);
bootstrapName = "bootstraprc";
if (System.getProperty("os.name").startsWith("Windows"))
{
bootstrapName = "bootstrap.ini";
}
libURL = xme.expandMacros(
"$BRAND_BASE_DIR/$BRAND_SHARE_SUBDIR/basic/ScriptBindingLibrary/" +
name.toLowerCase() + ".xlb/");
System.err.println("libURL is: " + libURL);
xLibraryContainer.createLibraryLink(
"ScriptBindingLibrary", libURL, false);
System.err.println("liblink created");
}
catch (com.sun.star.uno.Exception e)
{
System.err.println("Got an exception loading lib: " + e.getMessage());
return false;
}
return true;
}
// get the XMultiComponentFactory from the XSCRIPTCONTEXT
XMultiComponentFactory xmcf =
XSCRIPTCONTEXT.getComponentContext().getServiceManager();
Object[] args = new Object[1];
args[0] = XSCRIPTCONTEXT.getDocument();
Object obj;
try {
// try to create an instance of the DialogProvider
obj = xmcf.createInstanceWithArgumentsAndContext(
"com.sun.star.awt.DialogProvider", args,
XSCRIPTCONTEXT.getComponentContext());
/*
obj = xmcf.createInstanceWithContext(
"com.sun.star.awt.DialogProvider",
XSCRIPTCONTEXT.getComponentContext());
*/
}
catch (com.sun.star.uno.Exception e) {
System.err.println("Error getting DialogProvider object");
return 0;
}
// get the XDialogProvider interface from the object created above
XDialogProvider xDialogProvider = (XDialogProvider)
UnoRuntime.queryInterface(XDialogProvider.class, obj);
System.err.println("Got DialogProvider, now get dialog");
try {
// try to create the Highlight dialog (found in the ScriptBindingLibrary)
findDialog = xDialogProvider.createDialog("vnd.sun.star.script:" +
"ScriptBindingLibrary.Highlight?location=application");
if( findDialog == null )
{
if (tryLoadingLibrary(xmcf, XSCRIPTCONTEXT, "Dialog") == false ||
tryLoadingLibrary(xmcf, XSCRIPTCONTEXT, "Script") == false)
{
System.err.println("Error loading ScriptBindingLibrary");
return 0;
}
else
{
// try to create the Highlight dialog (found in the ScriptBindingLibrary)
findDialog = xDialogProvider.createDialog("vnd.sun.star.script:" +
"ScriptBindingLibrary.Highlight?location=application");
}
}
}
catch (java.lang.Exception e) {
System.err.println("Got exception on first creating dialog: " +
e.getMessage());
}
// execute the dialog in a new thread (so that this script can finish)
Thread t = new Thread() {
public void run() {
findDialog.execute();
}
};
t.start();
return 0;

View File

@@ -0,0 +1,166 @@
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.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.apache.org/licenses/LICENSE-2.0 .
*/
import com.sun.star.uno.UnoRuntime;
import com.sun.star.util.XReplaceable;
import com.sun.star.util.XReplaceDescriptor;
import com.sun.star.util.XPropertyReplace;
import com.sun.star.beans.PropertyValue;
import com.sun.star.text.XTextDocument;
import com.sun.star.script.provider.XScriptContext;
int replaceText(searchKey, color, bold) {
result = 0;
try {
// Create an XReplaceable object and an XReplaceDescriptor
replaceable = (XReplaceable)
UnoRuntime.queryInterface(XReplaceable.class, xTextDocument);
descriptor =
(XReplaceDescriptor) replaceable.createReplaceDescriptor();
// Gets a XPropertyReplace object for altering the properties
// of the replaced text
xPropertyReplace = (XPropertyReplace)
UnoRuntime.queryInterface(XPropertyReplace.class, descriptor);
// Sets the replaced text property fontweight value to Bold or Normal
wv = null;
if (bold) {
wv = new PropertyValue("CharWeight", -1,
new Float(com.sun.star.awt.FontWeight.BOLD),
com.sun.star.beans.PropertyState.DIRECT_VALUE);
}
else {
wv = new PropertyValue("CharWeight", -1,
new Float(com.sun.star.awt.FontWeight.NORMAL),
com.sun.star.beans.PropertyState.DIRECT_VALUE);
}
// Sets the replaced text property color value to RGB color parameter
cv = new PropertyValue("CharColor", -1, new Integer(color),
com.sun.star.beans.PropertyState.DIRECT_VALUE);
// Apply the properties
PropertyValue[] props = { cv, wv };
xPropertyReplace.setReplaceAttributes(props);
// Only matches whole words and case sensitive
descriptor.setPropertyValue("SearchCaseSensitive", new Boolean(true));
descriptor.setPropertyValue("SearchWords", new Boolean(true));
// Replaces all instances of searchKey with new Text properties
// and gets the number of instances of the searchKey
descriptor.setSearchString(searchKey);
descriptor.setReplaceString(searchKey);
result = replaceable.replaceAll(descriptor);
}
catch (Exception e) {
}
return result;
}
searchKey = "";
// The XSCRIPTCONTEXT variable is of type XScriptContext and is available to
// all BeanShell scripts executed by the Script Framework
xTextDocument = (XTextDocument)
UnoRuntime.queryInterface(XTextDocument.class, XSCRIPTCONTEXT.getDocument());
// Create a JButton and add an ActionListener
// When clicked the value for the searchKey is read and passed to replaceText
myListener = new ActionListener() {
actionPerformed(ActionEvent e) {
searchKey = findTextBox.getText();
if(searchKey.equalsIgnoreCase("")) {
JOptionPane.showMessageDialog(null,
"No text entered for search",
"No text", JOptionPane.INFORMATION_MESSAGE);
}
else {
// highlight the text in red
cRed = new Color(255, 0, 0);
red = cRed.getRGB();
num = replaceText(searchKey, red, true);
if(num > 0) {
int response = JOptionPane.showConfirmDialog(null,
searchKey + " was found " + num +
" times\nDo you wish to keep the text highlighted?",
"Confirm highlight", JOptionPane.YES_NO_OPTION,
JOptionPane.QUESTION_MESSAGE);
if (response == 1) {
cBlack = new Color(255, 255, 255);
black = cBlack.getRGB();
replaceText(searchKey, black, false);
}
}
else {
JOptionPane.showMessageDialog(null,
"No matches were found", "Not found",
JOptionPane.INFORMATION_MESSAGE);
}
}
}
};
exitListener = new ActionListener() {
actionPerformed(ActionEvent e) {
frame.dispose();
}
};
searchButton = new JButton("Highlight");
searchButton.addActionListener(myListener);
exitButton = new JButton("Exit");
exitButton.addActionListener(exitListener);
buttonPanel = new JPanel();
buttonPanel.setLayout(new FlowLayout());
buttonPanel.add(searchButton);
buttonPanel.add(exitButton);
// Create a JPanel containing one JTextField for the search text.
searchPanel = new JPanel();
searchPanel.setLayout(new FlowLayout());
findTextBox = new JTextField(20);
findWhat = new JLabel("Find What: ");
searchPanel.add(findWhat);
searchPanel.add(findTextBox);
// Create frame and add a window listener
frame = new JFrame("Highlight Text");
frame.setSize(350,130);
frame.setLocation(430,430);
frame.setResizable(false);
// Add the panel and button to the frame
frame.getContentPane().setLayout(new GridLayout(2,1,10,10));
frame.getContentPane().add(searchPanel);
frame.getContentPane().add(buttonPanel);
frame.setVisible(true);
frame.pack();

View File

@@ -0,0 +1,41 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.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.apache.org/licenses/LICENSE-2.0 .
-->
<parcel language="BeanShell" xmlns:parcel="scripting.dtd">
<script language="BeanShell">
<locale lang="en">
<displayname value="ShowDialog" />
<description>
Example of how to show a dialog from BeanShell
</description>
</locale>
<functionname value="ShowDialog.bsh" />
<logicalname value="ShowDialog.BeanShell" />
</script>
<script language="BeanShell">
<locale lang="en">
<displayname value="ButtonPressHandler" />
<description>
Example of handle button press events for the Dialog
</description>
</locale>
<functionname value="ButtonPressHandler.bsh" />
<logicalname value="ButtonPressHandler.BeanShell" />
</script>
</parcel>

View File

@@ -0,0 +1,137 @@
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.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.apache.org/licenses/LICENSE-2.0 .
*/
import com.sun.star.uno.UnoRuntime;
import com.sun.star.uno.AnyConverter;
import com.sun.star.uno.Type;
import com.sun.star.lang.XComponent;
import com.sun.star.lang.XMultiServiceFactory;
import com.sun.star.frame.XComponentLoader;
import com.sun.star.document.XEmbeddedObjectSupplier;
import com.sun.star.awt.ActionEvent;
import com.sun.star.awt.Rectangle;
import com.sun.star.beans.XPropertySet;
import com.sun.star.beans.PropertyValue;
import com.sun.star.container.*;
import com.sun.star.chart.*;
import com.sun.star.table.*;
import com.sun.star.sheet.*;
import com.sun.star.script.provider.XScriptContext;
createSpreadsheet()
{
loader = (XComponentLoader)
UnoRuntime.queryInterface(
XComponentLoader.class, XSCRIPTCONTEXT.getDesktop());
comp = loader.loadComponentFromURL(
"private:factory/scalc", "_blank", 4, new PropertyValue[0]);
doc = (XSpreadsheetDocument)
UnoRuntime.queryInterface(XSpreadsheetDocument.class, comp);
index = (XIndexAccess)
UnoRuntime.queryInterface(XIndexAccess.class, doc.getSheets());
sheet = (XSpreadsheet) AnyConverter.toObject(
new Type(com.sun.star.sheet.XSpreadsheet.class), index.getByIndex(0));
return sheet;
}
addData(sheet, date, total, free)
{
// set the labels
sheet.getCellByPosition(0, 0).setFormula("Used");
sheet.getCellByPosition(0, 1).setFormula("Free");
sheet.getCellByPosition(0, 2).setFormula("Total");
// set the values in the cells
sheet.getCellByPosition(1, 0).setValue(total - free);
sheet.getCellByPosition(1, 1).setValue(free);
sheet.getCellByPosition(1, 2).setValue(total);
}
addChart(sheet)
{
rect = new Rectangle();
rect.X = 500;
rect.Y = 3000;
rect.Width = 10000;
rect.Height = 8000;
range = (XCellRange) UnoRuntime.queryInterface(XCellRange.class, sheet);
myRange = range.getCellRangeByName("A1:B2");
rangeAddr = (XCellRangeAddressable)
UnoRuntime.queryInterface(XCellRangeAddressable.class, myRange);
myAddr = rangeAddr.getRangeAddress();
CellRangeAddress[] addr = new CellRangeAddress[1];
addr[0] = myAddr;
supp = (XTableChartsSupplier)
UnoRuntime.queryInterface( XTableChartsSupplier.class, sheet);
charts = supp.getCharts();
charts.addNewByName("Example", rect, addr, false, true);
try { Thread.sleep(3000); } catch (java.lang.InterruptedException e) { }
// get the diagram and Change some of the properties
chartsAccess = (XNameAccess)
UnoRuntime.queryInterface( XNameAccess.class, charts);
tchart = (XTableChart)
UnoRuntime.queryInterface(
XTableChart.class, chartsAccess.getByName("Example"));
eos = (XEmbeddedObjectSupplier)
UnoRuntime.queryInterface( XEmbeddedObjectSupplier.class, tchart );
xifc = eos.getEmbeddedObject();
xChart = (XChartDocument)
UnoRuntime.queryInterface(XChartDocument.class, xifc);
xDocMSF = (XMultiServiceFactory)
UnoRuntime.queryInterface(XMultiServiceFactory.class, xChart);
diagObject = xDocMSF.createInstance("com.sun.star.chart.PieDiagram");
xDiagram = (XDiagram)
UnoRuntime.queryInterface(XDiagram.class, diagObject);
xChart.setDiagram(xDiagram);
propset = (XPropertySet)
UnoRuntime.queryInterface( XPropertySet.class, xChart.getTitle() );
propset.setPropertyValue("String", "JVM Memory Usage");
}
runtime = Runtime.getRuntime();
generator = new Random();
date = new Date();
// allocate a random number of bytes so that the data changes
len = (int)(generator.nextFloat() * runtime.freeMemory() / 5);
bytes = new byte[len];
sheet = createSpreadsheet();
addData(sheet, date.toString(), runtime.totalMemory(), runtime.freeMemory());
addChart(sheet);
return 0;

View File

@@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.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.apache.org/licenses/LICENSE-2.0 .
-->
<parcel language="BeanShell" xmlns:parcel="scripting.dtd">
<script language="BeanShell">
<locale lang="en">
<displayname value="BeanShell JVM Usage"/>
<description>
Updates a spreadsheet with the current memory usage statistics for the Java Virtual Machine
</description>
</locale>
<functionname value="memusage.bsh"/>
<logicalname value="MemoryUsage.BeanShell"/>
</script>
</parcel>

View File

@@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.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.apache.org/licenses/LICENSE-2.0 .
-->
<parcel language="BeanShell" xmlns:parcel="scripting.dtd">
<script language="BeanShell">
<locale lang="en">
<displayname value="Word Count"/>
<description>
Provides a word count of the selected text in A Writer document.
</description>
</locale>
<functionname value="wordcount.bsh"/>
<logicalname value="WordCount.BeanShell"/>
</script>
</parcel>

View File

@@ -0,0 +1,82 @@
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.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.apache.org/licenses/LICENSE-2.0 .
*/
//Provides a word count of the selected text in a Writer document.
import com.sun.star.uno.UnoRuntime;
import com.sun.star.frame.XModel;
import com.sun.star.view.XSelectionSupplier;
import com.sun.star.container.XIndexAccess;
import com.sun.star.text.XText;
import com.sun.star.text.XTextRange;
import com.sun.star.script.provider.XScriptContext;
// display the count in a Swing dialog
void doDisplay(numWords) {
wordsLabel = new JLabel("Word count = " + numWords);
closeButton = new JButton("Close");
frame = new JFrame("Word Count");
closeButton.addActionListener(new ActionListener() {
actionPerformed(ActionEvent e) {
frame.setVisible(false);
}
});
frame.getContentPane().setLayout(new BorderLayout());
frame.getContentPane().add(wordsLabel, BorderLayout.CENTER);
frame.getContentPane().add(closeButton, BorderLayout.SOUTH);
frame.pack();
frame.setSize(190,90);
frame.setLocation(430,430);
frame.setVisible(true);
}
int wordcount() {
result = 0;
// iterate through each of the selections
count = xIndexAccess.getCount();
for(i=0;i<count;i++) {
// get the XTextRange of the selection
xTextRange = (XTextRange)
UnoRuntime.queryInterface(XTextRange.class, xIndexAccess.getByIndex(i));
//System.out.println("string: "+xTextRange.getString());
// use the standard J2SE delimiters to tokenize the string
// obtained from the XTextRange
strTok = new StringTokenizer(xTextRange.getString());
result += strTok.countTokens();
}
doDisplay(result);
return result;
}
// The XSCRIPTCONTEXT variable is of type XScriptContext and is available to
// all BeanShell scripts executed by the Script Framework
xModel = (XModel)
UnoRuntime.queryInterface(XModel.class, XSCRIPTCONTEXT.getDocument());
//the writer controller impl supports the css.view.XSelectionSupplier interface
xSelectionSupplier = (XSelectionSupplier)
UnoRuntime.queryInterface(XSelectionSupplier.class, xModel.getCurrentController());
//see section 7.5.1 of developers' guide
// the getSelection provides an XIndexAccess to the one or more selections
xIndexAccess = (XIndexAccess)
UnoRuntime.queryInterface(XIndexAccess.class, xSelectionSupplier.getSelection());
count = wordcount();
System.out.println("count = "+count);
return 0;

View File

@@ -0,0 +1,36 @@
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
import com.sun.star.beans.XPropertySet;
import com.sun.star.lang.XServiceInfo;
import com.sun.star.uno.UnoRuntime;
import com.sun.star.frame.XModel;
import com.sun.star.container.XEnumeration;
import com.sun.star.container.XEnumerationAccess;
import com.sun.star.text.XTextDocument;
oDoc = UnoRuntime.queryInterface(XModel.class,XSCRIPTCONTEXT.getInvocationContext());
if ( oDoc == null )
oDoc = XSCRIPTCONTEXT.getDocument();
xTextDoc = (XTextDocument) UnoRuntime.queryInterface(XTextDocument.class,oDoc);
xText = xTextDoc.getText();
XEnumerationAccess xEnumAcc = (XEnumerationAccess)(UnoRuntime.queryInterface(XEnumerationAccess.class, xText));
XEnumeration xEnum = xEnumAcc.createEnumeration();
while (xEnum.hasMoreElements()) {
Object xObj = xEnum.nextElement();
XServiceInfo xServiceInfo = (XServiceInfo) UnoRuntime.queryInterface(XServiceInfo.class, xObj);
if (xServiceInfo.supportsService("com.sun.star.text.Paragraph")) {
XPropertySet xSet = UnoRuntime.queryInterface(XPropertySet.class, xServiceInfo );
xSet.setPropertyValue( "CharHeight", 28 );
xSet.setPropertyValue( "CharFontName", "Liberation Sans" );
}
}
return 0;

View File

@@ -0,0 +1,37 @@
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
import com.sun.star.beans.XPropertySet;
import com.sun.star.lang.XServiceInfo;
import com.sun.star.uno.UnoRuntime;
import com.sun.star.frame.XModel;
import com.sun.star.container.XEnumeration;
import com.sun.star.container.XEnumerationAccess;
import com.sun.star.text.XTextDocument;
import com.sun.star.text.XText;
oDoc = UnoRuntime.queryInterface(XModel.class,XSCRIPTCONTEXT.getInvocationContext());
if ( oDoc == null )
oDoc = XSCRIPTCONTEXT.getDocument();
xTextDoc = (XTextDocument) UnoRuntime.queryInterface(XTextDocument.class,oDoc);
xText = xTextDoc.getText();
XEnumerationAccess xEnumAcc = (XEnumerationAccess)(UnoRuntime.queryInterface(XEnumerationAccess.class, xText));
XEnumeration xEnum = xEnumAcc.createEnumeration();
while (xEnum.hasMoreElements()) {
Object xObj = xEnum.nextElement();
XServiceInfo xServiceInfo = (XServiceInfo) UnoRuntime.queryInterface(XServiceInfo.class, xObj);
if (xServiceInfo.supportsService("com.sun.star.text.Paragraph")) {
XPropertySet xSet = UnoRuntime.queryInterface(XPropertySet.class, xServiceInfo );
// Set the justification to be center justified
xSet.setPropertyValue( "ParaAdjust", com.sun.star.style.ParagraphAdjust.CENTER );
}
}
return 0;

View File

@@ -0,0 +1,32 @@
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
import com.sun.star.uno.UnoRuntime;
import com.sun.star.frame.XModel;
import com.sun.star.lang.XMultiServiceFactory;
import com.sun.star.text.XTextDocument;
import com.sun.star.text.XText;
import com.sun.star.text.XTextContent;
import com.sun.star.text.XTextTable;
oDoc = UnoRuntime.queryInterface(XModel.class,XSCRIPTCONTEXT.getInvocationContext());
if ( oDoc == null )
oDoc = XSCRIPTCONTEXT.getDocument();
XMultiServiceFactory xDocMSF = (XMultiServiceFactory) UnoRuntime.queryInterface(XMultiServiceFactory.class, oDoc);
Object oTab = xDocMSF.createInstance("com.sun.star.text.TextTable");
XTextTable xTextTable = (XTextTable)UnoRuntime.queryInterface(XTextTable.class, oTab);
xTextTable.initialize(4,3); // four rows, three columns
xTextContent = (XTextContent)UnoRuntime.queryInterface(XTextContent.class, xTextTable);
xTextDoc = (XTextDocument) UnoRuntime.queryInterface(XTextDocument.class,oDoc);
xText = (XText) UnoRuntime.queryInterface(XText.class, xTextDoc.getText());
xText.insertTextContent(xText.getEnd(), xTextContent, false);
return 0;

View File

@@ -0,0 +1,28 @@
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
import com.sun.star.uno.UnoRuntime;
import com.sun.star.frame.XModel;
import com.sun.star.text.XTextDocument;
import com.sun.star.text.XText;
import com.sun.star.text.XTextRange;
oDoc = UnoRuntime.queryInterface(XModel.class,XSCRIPTCONTEXT.getInvocationContext());
if ( oDoc == null )
oDoc = XSCRIPTCONTEXT.getDocument();
String sText = "This text is inserted before the existing text\n" +
"Here comes a second line\n";
xTextDoc = (XTextDocument) UnoRuntime.queryInterface(XTextDocument.class,oDoc);
xText = xTextDoc.getText();
xTextRange = xText.getEnd();
xTextRange.setString(sText);
return 0;

View File

@@ -0,0 +1,21 @@
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
import com.sun.star.uno.UnoRuntime;
import com.sun.star.frame.XModel;
import com.sun.star.text.XTextDocument;
oDoc = UnoRuntime.queryInterface(XModel.class,XSCRIPTCONTEXT.getInvocationContext());
if ( oDoc == null )
oDoc = XSCRIPTCONTEXT.getDocument();
xTextDoc = (XTextDocument) UnoRuntime.queryInterface(XTextDocument.class,oDoc);
xTextDoc.getText().setString("Hello from Beanshell!");
return 0;

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><parcel xmlns:parcel="scripting.dtd" language="BeanShell">
<script language="BeanShell"><locale lang="en"><displayname value="InsertText.bsh"/><description>InsertText.bsh</description></locale><logicalname value="InsertText.bsh"/><functionname value="InsertText.bsh"/></script><script language="BeanShell"><locale lang="en"><displayname value="SetText.bsh"/><description>SetText.bsh</description></locale><logicalname value="SetText.bsh"/><functionname value="SetText.bsh"/></script><script language="BeanShell"><locale lang="en"><displayname value="InsertTable.bsh"/><description>InsertTable.bsh</description></locale><logicalname value="InsertTable.bsh"/><functionname value="InsertTable.bsh"/></script><script language="BeanShell"><locale lang="en"><displayname value="ChangeParaAdjust.bsh"/><description>ChangeParaAdjust.bsh</description></locale><logicalname value="ChangeParaAdjust.bsh"/><functionname value="ChangeParaAdjust.bsh"/></script><script language="BeanShell"><locale lang="en"><displayname value="ChangeFont.bsh"/><description>ChangeFont.bsh</description></locale><logicalname value="ChangeFont.bsh"/><functionname value="ChangeFont.bsh"/></script></parcel>

View File

@@ -0,0 +1,42 @@
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.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.apache.org/licenses/LICENSE-2.0 .
*/
package org.libreoffice.example.java_scripts;
import com.sun.star.script.provider.XScriptContext;
import com.sun.star.uno.UnoRuntime;
import com.sun.star.text.XTextDocument;
import com.sun.star.text.XTextRange;
import com.sun.star.text.XText;
/**
* HelloWorld class
*
*/
public class HelloWorld {
public static void printHW(XScriptContext xSc) {
// getting the text document object
XTextDocument xtextdocument = (XTextDocument) UnoRuntime.queryInterface(
XTextDocument.class, xSc.getDocument());
XText xText = xtextdocument.getText();
XTextRange xTextRange = xText.getEnd();
xTextRange.setString("Hello World (in Java)");
}// printHW
}

View File

@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.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.apache.org/licenses/LICENSE-2.0 .
-->
<parcel language="Java" xmlns:parcel="scripting.dtd">
<script language="Java">
<locale lang="en">
<displayname value="HelloWorld.Java"/>
<description>
Prints "Hello World".
</description>
</locale>
<functionname value="org.libreoffice.example.java_scripts.HelloWorld.printHW"/>
<logicalname value="HelloWorld.printHW"/>
<languagedepprops>
<prop name="classpath" value="HelloWorld.jar"/>
</languagedepprops>
</script>
</parcel>

View File

@@ -0,0 +1,233 @@
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.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.apache.org/licenses/LICENSE-2.0 .
*/
package org.libreoffice.example.java_scripts;
import com.sun.star.uno.UnoRuntime;
import com.sun.star.script.provider.XScriptContext;
import com.sun.star.lang.XMultiComponentFactory;
import com.sun.star.lang.EventObject;
import com.sun.star.uno.Type;
import com.sun.star.uno.AnyConverter;
import com.sun.star.text.XTextDocument;
import com.sun.star.beans.PropertyValue;
import com.sun.star.script.XLibraryContainer;
import com.sun.star.awt.*;
import com.sun.star.util.*;
import java.awt.Color;
public class HighlightText implements com.sun.star.awt.XActionListener {
// UNO awt components of the Highlight dialog
XDialog findDialog = null;
XTextComponent findTextBox;
// The document being searched
XTextDocument theDocument;
// The text to be searched for
private String searchKey = "";
public void showForm(XScriptContext context) {
System.err.println("Starting showForm");
XMultiComponentFactory xmcf =
context.getComponentContext().getServiceManager();
Object[] args = new Object[1];
args[0] = context.getDocument();
Object obj;
try {
obj = xmcf.createInstanceWithArgumentsAndContext(
"com.sun.star.awt.DialogProvider", args,
context.getComponentContext());
} catch (com.sun.star.uno.Exception e) {
System.err.println("Error getting DialogProvider object");
return;
}
XDialogProvider xDialogProvider = (XDialogProvider)
UnoRuntime.queryInterface(XDialogProvider.class, obj);
System.err.println("Got DialogProvider, now get dialog");
try {
findDialog = xDialogProvider.createDialog(
"vnd.sun.star.script:" +
"ScriptBindingLibrary.Highlight?location=application");
} catch (java.lang.Exception e) {
System.err.println("Got exception on first creating dialog: " +
e.getMessage());
}
if (findDialog == null) {
if (!tryLoadingLibrary(xmcf, context, "Dialog") ||
!tryLoadingLibrary(xmcf, context, "Script")) {
System.err.println("Error loading ScriptBindingLibrary");
return;
}
try {
findDialog = xDialogProvider.createDialog(
"vnd.sun.star.script://" +
"ScriptBindingLibrary.Highlight?location=application");
} catch (com.sun.star.lang.IllegalArgumentException iae) {
System.err.println("Error loading ScriptBindingLibrary");
return;
}
}
XControlContainer controls = (XControlContainer)
UnoRuntime.queryInterface(XControlContainer.class, findDialog);
XButton highlightButton = (XButton) UnoRuntime.queryInterface(
XButton.class, controls.getControl("HighlightButton"));
highlightButton.setActionCommand("Highlight");
findTextBox = (XTextComponent) UnoRuntime.queryInterface(
XTextComponent.class, controls.getControl("HighlightTextField"));
XButton exitButton = (XButton) UnoRuntime.queryInterface(
XButton.class, controls.getControl("ExitButton"));
exitButton.setActionCommand("Exit");
theDocument = (XTextDocument) UnoRuntime.queryInterface(
XTextDocument.class, context.getDocument());
highlightButton.addActionListener(this);
exitButton.addActionListener(this);
findDialog.execute();
}
public void actionPerformed(ActionEvent e) {
if (e.ActionCommand.equals("Exit")) {
findDialog.endExecute();
return;
} else if (e.ActionCommand.equals("Highlight")) {
searchKey = findTextBox.getText();
// highlight the text in red
Color cRed = new Color(255, 0, 0);
int red = cRed.getRGB();
XReplaceable replaceable = (XReplaceable)
UnoRuntime.queryInterface(XReplaceable.class, theDocument);
XReplaceDescriptor descriptor =
(XReplaceDescriptor) replaceable.createReplaceDescriptor();
// Gets a XPropertyReplace object for altering the properties
// of the replaced text
XPropertyReplace xPropertyReplace = (XPropertyReplace)
UnoRuntime.queryInterface(XPropertyReplace.class, descriptor);
// Sets the replaced text property fontweight value to Bold
PropertyValue wv = new PropertyValue("CharWeight", -1,
new Float(com.sun.star.awt.FontWeight.BOLD),
com.sun.star.beans.PropertyState.DIRECT_VALUE);
// Sets the replaced text property color value to RGB parameter
PropertyValue cv = new PropertyValue("CharColor", -1,
Integer.valueOf(red),
com.sun.star.beans.PropertyState.DIRECT_VALUE);
// Apply the properties
PropertyValue[] props = new PropertyValue[] { cv, wv };
try {
xPropertyReplace.setReplaceAttributes(props);
// Only matches whole words and case sensitive
descriptor.setPropertyValue(
"SearchCaseSensitive", Boolean.TRUE);
descriptor.setPropertyValue("SearchWords", Boolean.TRUE);
} catch (com.sun.star.beans.UnknownPropertyException upe) {
System.err.println("Error setting up search properties");
return;
} catch (com.sun.star.beans.PropertyVetoException pve) {
System.err.println("Error setting up search properties");
return;
} catch (com.sun.star.lang.WrappedTargetException wte) {
System.err.println("Error setting up search properties");
return;
} catch (com.sun.star.lang.IllegalArgumentException iae) {
System.err.println("Error setting up search properties");
return;
}
// Replaces all instances of searchKey with new Text properties
// and gets the number of instances of the searchKey
descriptor.setSearchString(searchKey);
descriptor.setReplaceString(searchKey);
replaceable.replaceAll(descriptor);
}
}
public void disposing(EventObject o) {
// do nothing
}
private boolean tryLoadingLibrary(
XMultiComponentFactory xmcf, XScriptContext context, String name) {
System.err.println("Try to load ScriptBindingLibrary");
try {
Object obj = xmcf.createInstanceWithContext(
"com.sun.star.script.Application" + name + "LibraryContainer",
context.getComponentContext());
XLibraryContainer xLibraryContainer = (XLibraryContainer)
UnoRuntime.queryInterface(XLibraryContainer.class, obj);
System.err.println("Got XLibraryContainer");
Object serviceObj = context.getComponentContext().getValueByName(
"/singletons/com.sun.star.util.theMacroExpander");
XMacroExpander xme = (XMacroExpander) AnyConverter.toObject(
new Type(XMacroExpander.class), serviceObj);
String bootstrapName = "bootstraprc";
if (System.getProperty("os.name").startsWith("Windows")) {
bootstrapName = "bootstrap.ini";
}
String libURL = xme.expandMacros(
"$BRAND_BASE_DIR/$BRAND_SHARE_SUBDIR/basic/ScriptBindingLibrary/" +
name.toLowerCase() + ".xlb/");
System.err.println("libURL is: " + libURL);
xLibraryContainer.createLibraryLink(
"ScriptBindingLibrary", libURL, false);
System.err.println("liblink created");
} catch (com.sun.star.uno.Exception e) {
System.err.println("Got an exception loading lib: " + e.getMessage());
return false;
}
return true;
}
}

View File

@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.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.apache.org/licenses/LICENSE-2.0 .
-->
<parcel language="Java" xmlns:parcel="scripting.dtd">
<script language="Java">
<locale lang="en">
<displayname value="HighlightText.showForm"/>
<description>
Text highlighting
</description>
</locale>
<functionname value="org.libreoffice.example.java_scripts.HighlightText.showForm"/>
<logicalname value="HighlightText.showForm"/>
<languagedepprops>
<prop name="classpath" value="Highlight.jar"/>
</languagedepprops>
</script>
</parcel>

View File

@@ -0,0 +1,157 @@
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.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.apache.org/licenses/LICENSE-2.0 .
*/
package org.libreoffice.example.java_scripts;
import java.util.Random;
import java.util.Date;
import com.sun.star.uno.UnoRuntime;
import com.sun.star.uno.AnyConverter;
import com.sun.star.uno.Type;
import com.sun.star.uno.XInterface;
import com.sun.star.lang.XComponent;
import com.sun.star.lang.XMultiServiceFactory;
import com.sun.star.frame.XComponentLoader;
import com.sun.star.document.XEmbeddedObjectSupplier;
import com.sun.star.awt.Rectangle;
import com.sun.star.beans.XPropertySet;
import com.sun.star.beans.PropertyValue;
import com.sun.star.container.*;
import com.sun.star.chart.*;
import com.sun.star.table.*;
import com.sun.star.sheet.*;
import com.sun.star.script.provider.XScriptContext;
public class MemoryUsage {
public void updateMemoryUsage(XScriptContext ctxt)
throws Exception {
XSpreadsheet sheet = createSpreadsheet(ctxt);
Runtime runtime = Runtime.getRuntime();
Random generator = new Random();
Date date = new Date();
// allocate a random amount of memory
int len = (int)(generator.nextFloat() * runtime.freeMemory() / 5);
byte[] bytes = new byte[len];
addData(sheet, date.toString(),
runtime.totalMemory(), runtime.freeMemory());
addChart(sheet);
}
private XSpreadsheet createSpreadsheet(XScriptContext ctxt)
throws Exception {
XComponentLoader loader = (XComponentLoader)
UnoRuntime.queryInterface(
XComponentLoader.class, ctxt.getDesktop());
XComponent comp = loader.loadComponentFromURL(
"private:factory/scalc", "_blank", 4, new PropertyValue[0]);
XSpreadsheetDocument doc = (XSpreadsheetDocument)
UnoRuntime.queryInterface(XSpreadsheetDocument.class, comp);
XIndexAccess index = (XIndexAccess)
UnoRuntime.queryInterface(XIndexAccess.class, doc.getSheets());
XSpreadsheet sheet = (XSpreadsheet) AnyConverter.toObject(
new Type(com.sun.star.sheet.XSpreadsheet.class), index.getByIndex(0));
return sheet;
}
private void addData(
XSpreadsheet sheet, String date, long total, long free)
throws Exception {
sheet.getCellByPosition(0, 0).setFormula("Used");
sheet.getCellByPosition(0, 1).setFormula("Free");
sheet.getCellByPosition(0, 2).setFormula("Total");
sheet.getCellByPosition(1, 0).setValue(total - free);
sheet.getCellByPosition(1, 1).setValue(free);
sheet.getCellByPosition(1, 2).setValue(total);
}
private void addChart(XSpreadsheet sheet)
throws Exception {
Rectangle rect = new Rectangle();
rect.X = 500;
rect.Y = 3000;
rect.Width = 10000;
rect.Height = 8000;
XCellRange range = (XCellRange)
UnoRuntime.queryInterface(XCellRange.class, sheet);
XCellRange myRange =
range.getCellRangeByName("A1:B2");
XCellRangeAddressable rangeAddr = (XCellRangeAddressable)
UnoRuntime.queryInterface(XCellRangeAddressable.class, myRange);
CellRangeAddress myAddr = rangeAddr.getRangeAddress();
CellRangeAddress[] addr = new CellRangeAddress[1];
addr[0] = myAddr;
XTableChartsSupplier supp = (XTableChartsSupplier)
UnoRuntime.queryInterface(XTableChartsSupplier.class, sheet);
XTableCharts charts = supp.getCharts();
charts.addNewByName("Example", rect, addr, false, true);
try {
Thread.sleep(3000);
} catch (InterruptedException e) { }
// get the diagram and Change some of the properties
XNameAccess chartsAccess = (XNameAccess)
UnoRuntime.queryInterface(XNameAccess.class, charts);
XTableChart tchart = (XTableChart)
UnoRuntime.queryInterface(
XTableChart.class, chartsAccess.getByName("Example"));
XEmbeddedObjectSupplier eos = (XEmbeddedObjectSupplier)
UnoRuntime.queryInterface(XEmbeddedObjectSupplier.class, tchart);
XInterface xifc = eos.getEmbeddedObject();
XChartDocument xChart = (XChartDocument)
UnoRuntime.queryInterface(XChartDocument.class, xifc);
XMultiServiceFactory xDocMSF = (XMultiServiceFactory)
UnoRuntime.queryInterface(XMultiServiceFactory.class, xChart);
Object diagObject =
xDocMSF.createInstance("com.sun.star.chart.PieDiagram");
XDiagram xDiagram = (XDiagram)
UnoRuntime.queryInterface(XDiagram.class, diagObject);
xChart.setDiagram(xDiagram);
XPropertySet propset = (XPropertySet)
UnoRuntime.queryInterface(XPropertySet.class, xChart.getTitle());
propset.setPropertyValue("String", "JVM Memory Usage");
}
}

View File

@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.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.apache.org/licenses/LICENSE-2.0 .
-->
<parcel language="Java" xmlns:parcel="scripting.dtd">
<script language="Java">
<locale lang="en">
<displayname value="MemoryUtils.MemUsage"/>
<description>
Text highlighting
</description>
</locale>
<functionname value="org.libreoffice.example.java_scripts.MemoryUsage.updateMemoryUsage"/>
<logicalname value="MemoryUtils.MemUsage"/>
<languagedepprops>
<prop name="classpath" value="MemoryUsage.jar"/>
</languagedepprops>
</script>
</parcel>

View File

@@ -0,0 +1,88 @@
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.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.apache.org/licenses/LICENSE-2.0 .
*/
// When this script is run on an existing, saved, spreadsheet,
// eg. /home/testuser/myspreadsheet.sxc, the script will export
// each sheet to a separate html file,
// eg. /home/testuser/myspreadsheet_sheet1.html,
// /home/testuser/myspreadsheet_sheet2.html etc
importClass(Packages.com.sun.star.uno.UnoRuntime);
importClass(Packages.com.sun.star.sheet.XSpreadsheetDocument);
importClass(Packages.com.sun.star.container.XIndexAccess);
importClass(Packages.com.sun.star.beans.XPropertySet);
importClass(Packages.com.sun.star.beans.PropertyValue);
importClass(Packages.com.sun.star.util.XModifiable);
importClass(Packages.com.sun.star.frame.XStorable);
importClass(Packages.com.sun.star.frame.XModel);
importClass(Packages.com.sun.star.uno.AnyConverter);
importClass(Packages.com.sun.star.uno.Type);
importClass(java.lang.System);
//get the document object from the scripting context
oDoc = XSCRIPTCONTEXT.getDocument();
//get the XSpreadsheetDocument interface from the document
xSDoc = UnoRuntime.queryInterface(XSpreadsheetDocument, oDoc);
//get the XModel interface from the document
xModel = UnoRuntime.queryInterface(XModel,oDoc);
//get the XIndexAccess interface used to access each sheet
xSheetsIndexAccess = UnoRuntime.queryInterface(XIndexAccess, xSDoc.getSheets());
//get the XStorable interface used to save the document
xStorable = UnoRuntime.queryInterface(XStorable,xSDoc);
//get the XModifiable interface used to indicate if the document has been
//changed
xModifiable = UnoRuntime.queryInterface(XModifiable,xSDoc);
//set up an array of PropertyValue objects used to save each sheet in the
//document
storeProps = new Array;//PropertyValue[1];
storeProps[0] = new PropertyValue();
storeProps[0].Name = "FilterName";
storeProps[0].Value = "HTML (StarCalc)";
storeUrl = xModel.getURL();
storeUrl = storeUrl.substring(0,storeUrl.lastIndexOf('.'));
//set only one sheet visible, and store to HTML doc
for(var i=0;i<xSheetsIndexAccess.getCount();i++)
{
setAllButOneHidden(xSheetsIndexAccess,i);
xModifiable.setModified(false);
xStorable.storeToURL(storeUrl+"_sheet"+(i+1)+".html", storeProps);
}
// now set all visible again
for(var i=0;i<xSheetsIndexAccess.getCount();i++)
{
xPropSet = AnyConverter.toObject( new Type(XPropertySet), xSheetsIndexAccess.getByIndex(i));
xPropSet.setPropertyValue("IsVisible", true);
}
function setAllButOneHidden(xSheetsIndexAccess,vis) {
//System.err.println("count="+xSheetsIndexAccess.getCount());
//get an XPropertySet interface for the vis-th sheet
xPropSet = AnyConverter.toObject( new Type(XPropertySet), xSheetsIndexAccess.getByIndex(vis));
//set the vis-th sheet to be visible
xPropSet.setPropertyValue("IsVisible", true);
// set all other sheets to be invisible
for(var i=0;i<xSheetsIndexAccess.getCount();i++)
{
xPropSet = AnyConverter.toObject( new Type(XPropertySet), xSheetsIndexAccess.getByIndex(i));
if(i!=vis) {
xPropSet.setPropertyValue("IsVisible", false);
}
}
}

View File

@@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.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.apache.org/licenses/LICENSE-2.0 .
-->
<parcel language="JavaScript" xmlns:parcel="scripting.dtd">
<script language="JavaScript">
<locale lang="en">
<displayname value="ExportSheetsToHTML"/>
<description>
Saves each sheet in the current Calc document as a separate HTML file in the same directory as the original Calc document.
</description>
</locale>
<functionname value="exportsheetstohtml.js"/>
<logicalname value="ExportSheetsToHTML.JavaScript"/>
</script>
</parcel>

View File

@@ -0,0 +1,33 @@
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.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.apache.org/licenses/LICENSE-2.0 .
*/
// Hello World in JavaScript
importClass(Packages.com.sun.star.uno.UnoRuntime);
importClass(Packages.com.sun.star.text.XTextDocument);
importClass(Packages.com.sun.star.text.XText);
importClass(Packages.com.sun.star.text.XTextRange);
//get the document from the scripting context
oDoc = XSCRIPTCONTEXT.getDocument();
//get the XTextDocument interface
xTextDoc = UnoRuntime.queryInterface(XTextDocument,oDoc);
//get the XText interface
xText = xTextDoc.getText();
//get an (empty) XTextRange interface at the end of the text
xTextRange = xText.getEnd();
//set the text in the XTextRange
xTextRange.setString( "Hello World (in JavaScript)" );

View File

@@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.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.apache.org/licenses/LICENSE-2.0 .
-->
<parcel language="JavaScript" xmlns:parcel="scripting.dtd">
<script language="JavaScript">
<locale lang="en">
<displayname value="Hello World"/>
<description>
Adds the string "Hello World" into the current text doc.
</description>
</locale>
<functionname value="helloworld.js"/>
<logicalname value="HelloWorld.JavaScript"/>
</script>
</parcel>

View File

@@ -0,0 +1,122 @@
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.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.apache.org/licenses/LICENSE-2.0 .
*/
//this script acts as a handler for the buttons in the Highlight dialog
importClass(Packages.com.sun.star.uno.UnoRuntime);
importClass(Packages.com.sun.star.uno.Type);
importClass(Packages.com.sun.star.uno.AnyConverter);
importClass(Packages.com.sun.star.awt.XButton);
importClass(Packages.com.sun.star.awt.XControl);
importClass(Packages.com.sun.star.awt.ActionEvent);
importClass(Packages.com.sun.star.awt.XControlModel);
importClass(Packages.com.sun.star.awt.XControlContainer);
importClass(Packages.com.sun.star.awt.XDialog);
importClass(Packages.com.sun.star.awt.XTextComponent);
importClass(Packages.com.sun.star.util.XReplaceable);
importClass(Packages.com.sun.star.util.XReplaceDescriptor);
importClass(Packages.com.sun.star.util.XPropertyReplace);
importClass(Packages.com.sun.star.beans.XPropertySet);
importClass(Packages.com.sun.star.beans.PropertyValue);
// Scripting Framework DialogFactory class
importClass(Packages.com.sun.star.script.framework.browse.DialogFactory);
// Get the ActionEvent object from the ARGUMENTS list
event = ARGUMENTS[0];
// Each argument is of type Any so we must use the AnyConverter class to
// convert it into the interface or primitive type we expect
button = AnyConverter.toObject(new Type(XButton), event.Source);
// We can now query for the model of the button and get its properties
control = UnoRuntime.queryInterface(XControl, button);
cmodel = control.getModel();
pset = UnoRuntime.queryInterface(XPropertySet, cmodel);
if (pset.getPropertyValue("Label").equals("Exit"))
{
// We can get the XDialog in which this control appears by calling
// getContext() on the XControl interface
xDialog = UnoRuntime.queryInterface(
XDialog, control.getContext());
// Close the dialog
xDialog.endExecute();
}
else
{
// We can get the list of controls for this dialog by calling
// getContext() on the XControl interface of the button
controls = UnoRuntime.queryInterface(
XControlContainer, control.getContext());
// Now get the text field control from the list
textField =
UnoRuntime.queryInterface(
XTextComponent, controls.getControl("HighlightTextField"));
searchKey = textField.getText();
// highlight the text in red
red = java.awt.Color.red.getRGB();
replaceable =
UnoRuntime.queryInterface(XReplaceable, XSCRIPTCONTEXT.getDocument());
descriptor = replaceable.createReplaceDescriptor();
// Gets a XPropertyReplace object for altering the properties
// of the replaced text
xPropertyReplace = UnoRuntime.queryInterface(XPropertyReplace, descriptor);
// Sets the replaced text property fontweight value to Bold
wv = new PropertyValue("CharWeight", -1,
new java.lang.Float(Packages.com.sun.star.awt.FontWeight.BOLD),
Packages.com.sun.star.beans.PropertyState.DIRECT_VALUE);
// Sets the replaced text property color value to RGB parameter
cv = new PropertyValue("CharColor", -1,
new java.lang.Integer(red),
Packages.com.sun.star.beans.PropertyState.DIRECT_VALUE);
// Apply the properties
props = new Array;
props[0] = cv;
props[1] = wv;
try {
xPropertyReplace.setReplaceAttributes(props);
// Only matches whole words and case sensitive
descriptor.setPropertyValue(
"SearchCaseSensitive", new java.lang.Boolean(true));
descriptor.setPropertyValue("SearchWords", new java.lang.Boolean(true));
// Replaces all instances of searchKey with new Text properties
// and gets the number of instances of the searchKey
descriptor.setSearchString(searchKey);
descriptor.setReplaceString(searchKey);
replaceable.replaceAll(descriptor);
}
catch (e) {
java.lang.System.err.println("Error setting up search properties"
+ e.getMessage());
}
}

View File

@@ -0,0 +1,131 @@
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.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.apache.org/licenses/LICENSE-2.0 .
*/
importClass(Packages.com.sun.star.uno.UnoRuntime);
importClass(Packages.com.sun.star.lang.XMultiComponentFactory);
importClass(Packages.com.sun.star.awt.XDialogProvider);
importClass(Packages.com.sun.star.awt.XDialog);
importClass(Packages.com.sun.star.uno.Exception);
importClass(Packages.com.sun.star.script.provider.XScriptContext);
importClass(java.lang.Thread);
importClass(java.lang.System);
function tryLoadingLibrary( xmcf, context, name )
{
try
{
obj = xmcf.createInstanceWithContext(
"com.sun.star.script.Application" + name + "LibraryContainer",
context.getComponentContext());
xLibraryContainer = UnoRuntime.queryInterface(XLibraryContainer, obj);
System.err.println("Got XLibraryContainer");
serviceObj = context.getComponentContext().getValueByName(
"/singletons/com.sun.star.util.theMacroExpander");
xme = AnyConverter.toObject(new Type(XMacroExpander), serviceObj);
bootstrapName = "bootstraprc";
if (System.getProperty("os.name").startsWith("Windows"))
{
bootstrapName = "bootstrap.ini";
}
libURL = xme.expandMacros(
"$BRAND_BASE_DIR/$BRAND_SHARE_SUBDIR/basic/ScriptBindingLibrary/" +
name.toLowerCase() + ".xlb/");
System.err.println("libURL is: " + libURL);
xLibraryContainer.createLibraryLink(
"ScriptBindingLibrary", libURL, false);
System.err.println("liblink created");
}
catch (e)
{
System.err.println("Got an exception loading lib: " + e.getMessage());
return false;
}
return true;
}
function getDialogProvider()
{
// UNO awt components of the Highlight dialog
//get the XMultiServiceFactory
xmcf = XSCRIPTCONTEXT.getComponentContext().getServiceManager();
args = new Array;
//get the XDocument from the context
args[0] = XSCRIPTCONTEXT.getDocument();
//try to create the DialogProvider
try {
obj = xmcf.createInstanceWithArgumentsAndContext(
"com.sun.star.awt.DialogProvider", args,
XSCRIPTCONTEXT.getComponentContext());
}
catch (e) {
System.err.println("Error getting DialogProvider object");
return null;
}
return UnoRuntime.queryInterface(XDialogProvider, obj);
}
//get the DialogProvider
xDialogProvider = getDialogProvider();
if (xDialogProvider != null)
{
//try to create the Highlight dialog (found in the ScriptBinding library)
try
{
findDialog = xDialogProvider.createDialog("vnd.sun.star.script:" +
"ScriptBindingLibrary.Highlight?location=application");
if( findDialog == null )
{
if (tryLoadingLibrary(xmcf, XSCRIPTCONTEXT, "Dialog") == false ||
tryLoadingLibrary(xmcf, XSCRIPTCONTEXT, "Script") == false)
{
System.err.println("Error loading ScriptBindingLibrary");
}
else
{
// try to create the Highlight dialog (found in the
// ScriptBindingLibrary)
findDialog = xDialogProvider.createDialog("vnd.sun.star.script:" +
"ScriptBindingLibrary.Highlight?location=application");
}
}
//launch the dialog
if ( findDialog != null )
{
findDialog.execute();
}
}
catch (e) {
System.err.println("Got exception on first creating dialog: " +
e.getMessage());
}
}

View File

@@ -0,0 +1,41 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.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.apache.org/licenses/LICENSE-2.0 .
-->
<parcel language="JavaScript" xmlns:parcel="scripting.dtd">
<script language="JavaScript">
<locale lang="en">
<displayname value="ShowDialog" />
<description>
Example of how to show a dialog from JavaScript
</description>
</locale>
<functionname value="ShowDialog.js" />
<logicalname value="ShowDialog.JavaScript" />
</script>
<script language="JavaScript">
<locale lang="en">
<displayname value="ButtonPressHandler" />
<description>
Example of handle button press events for the Dialog
</description>
</locale>
<functionname value="ButtonPressHandler.js" />
<logicalname value="ButtonPressHandler.JavaScript" />
</script>
</parcel>

View File

@@ -0,0 +1,96 @@
#
# This file is part of the LibreOffice project.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# This file incorporates work covered by the following license notice:
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed
# with this work for additional information regarding copyright
# ownership. The ASF licenses this file to you under the Apache
# License, Version 2.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.apache.org/licenses/LICENSE-2.0 .
#
def getNewString(theString):
"""helper function
"""
if (not theString):
return ""
# should we tokenize on "."?
if len(theString) >= 2 and theString[:2].isupper():
# first two chars are UC => first UC, rest LC
newString = theString[0].upper() + theString[1:].lower()
elif theString[0].isupper():
# first char UC => all to LC
newString = theString.lower()
else:
# all to UC.
newString = theString.upper()
return newString
def capitalisePython():
"""Change the case of the selected or current word(s).
If at least the first two characters are "UPpercase, then it is changed
to first char "Uppercase".
If the first character is "Uppercase", then it is changed to
all "lowercase".
Otherwise, all are changed to "UPPERCASE".
"""
# The context variable is of type XScriptContext and is available to
# all BeanShell scripts executed by the Script Framework
xModel = XSCRIPTCONTEXT.getDocument()
# the writer controller impl supports the css.view.XSelectionSupplier
# interface
xSelectionSupplier = xModel.getCurrentController()
# see section 7.5.1 of developers' guide
xIndexAccess = xSelectionSupplier.getSelection()
count = xIndexAccess.getCount()
if(count >= 1): # ie we have a selection
i = 0
while i < count:
xTextRange = xIndexAccess.getByIndex(i)
theString = xTextRange.getString()
# print("theString")
if len(theString) == 0:
# sadly we can have a selection where nothing is selected
# in this case we get the XWordCursor and make a selection!
xText = xTextRange.getText()
xWordCursor = xText.createTextCursorByRange(xTextRange)
if not xWordCursor.isStartOfWord():
xWordCursor.gotoStartOfWord(False)
xWordCursor.gotoNextWord(True)
theString = xWordCursor.getString()
newString = getNewString(theString)
if newString:
xWordCursor.setString(newString)
xSelectionSupplier.select(xWordCursor)
else:
newString = getNewString(theString)
if newString:
xTextRange.setString(newString)
xSelectionSupplier.select(xTextRange)
i += 1
# lists the scripts, that shall be visible inside OOo. Can be omitted, if
# all functions shall be visible, however here getNewString shall be suppressed
g_exportedScripts = capitalisePython,
# vim: set shiftwidth=4 softtabstop=4 expandtab:

View File

@@ -0,0 +1,47 @@
# HelloWorld python script for the scripting framework
#
# This file is part of the LibreOffice project.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# This file incorporates work covered by the following license notice:
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed
# with this work for additional information regarding copyright
# ownership. The ASF licenses this file to you under the Apache
# License, Version 2.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.apache.org/licenses/LICENSE-2.0 .
#
def HelloWorldPython():
"""Prints the string 'Hello World (in Python)' into the current document.
"""
# Get the doc from the scripting context which is made available to all
# scripts.
desktop = XSCRIPTCONTEXT.getDesktop()
model = desktop.getCurrentComponent()
# Check whether there's already an opened document.
# Otherwise, create a new one
if not hasattr(model, "Text"):
model = desktop.loadComponentFromURL(
"private:factory/swriter", "_blank", 0, ())
# get the XText interface
text = model.Text
# create an XTextRange at the end of the document
tRange = text.End
# and set the string
tRange.String = "Hello World (in Python)"
return None
# vim: set shiftwidth=4 softtabstop=4 expandtab:

View File

@@ -0,0 +1,72 @@
# Example python script for the scripting framework
#
# This file is part of the LibreOffice project.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# This file incorporates work covered by the following license notice:
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed
# with this work for additional information regarding copyright
# ownership. The ASF licenses this file to you under the Apache
# License, Version 2.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.apache.org/licenses/LICENSE-2.0 .
#
def InsertText(text):
"""Inserts the argument string into the current document.
If there is a selection, the selection is replaced by it.
"""
# Get the doc from the scripting context which is made available to
# all scripts.
desktop = XSCRIPTCONTEXT.getDesktop()
model = desktop.getCurrentComponent()
# Check whether there's already an opened document.
if not hasattr(model, "Text"):
return
# The context variable is of type XScriptContext and is available to
# all BeanShell scripts executed by the Script Framework
xModel = XSCRIPTCONTEXT.getDocument()
# The writer controller impl supports the css.view.XSelectionSupplier
# interface.
xSelectionSupplier = xModel.getCurrentController()
# See section 7.5.1 of developers' guide
xIndexAccess = xSelectionSupplier.getSelection()
count = xIndexAccess.getCount()
if count >= 1: # ie we have a selection
i = 0
while i < count:
xTextRange = xIndexAccess.getByIndex(i)
theString = xTextRange.getString()
if not len(theString):
# Nothing really selected, just insert.
xText = xTextRange.getText()
xWordCursor = xText.createTextCursorByRange(xTextRange)
xWordCursor.setString(text)
xSelectionSupplier.select(xWordCursor)
else:
# Replace the selection.
xTextRange.setString(text)
xSelectionSupplier.select(xTextRange)
i += 1
def InsertHello(event=None):
# Calls the InsertText function to insert the "Hello" string
InsertText("Hello")
# Make InsertHello visible by the Macro Selector
g_exportedScripts = (InsertHello, )

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=voorwaarts|vw
BACKWARD=terug|tg
TURNLEFT=links|linksaf|li
TURNRIGHT=regs|regsaf|re
PENUP=penop|po
PENDOWN=penaf|pa
HOME=tuis
POINT=punt
CIRCLE=sirkel
ELLIPSE=ellips
SQUARE=vierkant
RECTANGLE=reghoek
LABEL=byskrif
PENCOLOR=penkleur|lynkleur|pk
ANY=elke
PENWIDTH=pengrootte|pendikte|penbreedte|pg
PENSTYLE=penstyl|lynstyl
PENJOINT=pen-oorgang|lyn-oorgang
PENCAP=pen-einde|lyn-einde
NONE=geen
BEVEL=afskuinsing
MITER=hoeksny
ROUNDED=ronding
SOLID=solied
DASH=gestreep
DOTTED=gestippel
CLOSE=sluit
FILL=vul in
FILLCOLOR=vulkleur|vk
FILLTRANSPARENCY=vuldeursigtigheid
PENTRANSPARENCY=pen-deursigtigheid|lyn-deursigtigheid
FILLSTYLE=vulstyl
FONTCOLOR=fontkleur|tekskleur
FONTTRANSPARENCY=fontdeursigtigheid|teksdeursigtigheid
FONTHEIGHT=fontgrootte|teksgrootte
FONTWEIGHT=fontdikte
FONTSTYLE=fontstyl
BOLD=vetdruk
ITALIC=skuinsdruk
UPRIGHT=regop|normaal
NORMAL=normaal
FONTFAMILY=font familie
CLEARSCREEN=skerm uitve\u00EB
TEXT=teks
HIDETURTLE=verberg
SHOWTURTLE=vertoon
POSITION=posisie|pos
HEADING=rigting
PAGESIZE=bladsygrootte
GROUP=afbeelding
# control structures
TO=na
END=einde
STOP=stop
REPEAT=herhaal
REPCOUNT=herhaal teller
BREAK=breuk
CONTINUE=gaan voort
WHILE=terwyl
FOR=vir
IN=dm
IF=as
OUTPUT=uitvoer
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=waar
FALSE=onwaar
NOT=nie
AND=en
OR=of
INPUT=invoer
PRINT=uitdruk
SLEEP=wag
GLOBAL=globaal
# functions
RANDOM=willekeurig
INT=heel
FLOAT=komma
STR=str
SQRT=vierkantswortel
LOG10=log10
SIN=sin
COS=cos
ROUND=rondaf
ABS=abs
COUNT=telling
SET=versameling
RANGE=omvang
LIST=lys
TUPLE=tupel
SORTED=gesorteer
RESUB=voetskrif
RESEARCH=soek
REFINDALL=vind alles
MIN=min
MAX=maks
PI=pi|\u03C0
# measurement
DECIMAL=,
DEG=\u00B0
HOUR=h
MM=mm
CM=cm
PT=pt
INCH=dm|"
# color codes
INVISIBLE=onsigbaar
BLACK=swart
SILVER=silwer
GRAY=grys
WHITE=wit
MAROON=maroon
RED=rooi
PURPLE=pers
FUCHSIA=fuchsia
GREEN=groen
LIME=lemmetjie
OLIVE=olyfgroen
YELLOW=geel
NAVY=vlootblou
BLUE=blou
TEAL=blougroen
AQUA=siaan
PINK=roos
TOMATO=tamatie
ORANGE=oranje
GOLD=goud
VIOLET=violet
SKYBLUE=hemelblou
CHOCOLATE=sjokolade
BROWN=bruin
# messages
LIBRELOGO=LibreLogo
ERROR=Fout (in re\u00EBl %s)
ERR_ZERODIVISION=Deling deur nul.
ERR_NAME=Onbekende naam: "%s".
ERR_ARGUMENTS=%s het %s argumente nodig (%s gegee).
ERR_BLOCK=Fout (ekstra of ontbrekende spasies by haakies?)
ERR_KEY=Onbekende element: %s
ERR_INDEX=Indeks oorskry bereik.
ERR_STOP=Program be-eindig:
ERR_MAXRECURSION=maksimum rekursie diepte (%d) oorskry.
ERR_MEMORY=Onvoldoende geheue.
ERR_NOTAPROGRAM=Wil u die teksdokument uitvoer?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=\u12C8\u12F0 \u134A\u1275|\u12C8\u12F0 \u134A\u1275
BACKWARD=\u12C8\u12F0 \u128B\u120B|\u12C8\u12F0 \u128B\u120B
TURNLEFT=\u130D\u122B|\u12C8\u12F0 \u130D\u122B \u121B\u12DF\u122A\u12EB|\u12C8\u12F0 \u130D\u122B
TURNRIGHT=\u1240\u129D|\u12C8\u12F0 \u1240\u129D \u121B\u12DF\u122A\u12EB|\u12C8\u12F0 \u1240\u129D
PENUP=\u1265\u12D5\u122D \u12C8\u12F0 \u120B\u12ED |pu
PENDOWN=\u1265\u12D5\u122D \u12C8\u12F0 \u1273\u127D |pd
HOME=\u1264\u1275
POINT=\u1290\u1325\u1266\u127D
CIRCLE=\u12AD\u1265
ELLIPSE=\u12A4\u120A\u1355\u1235
SQUARE=\u1235\u12B4\u122D
RECTANGLE=\u12A0\u122B\u1275 \u121B\u12A5\u12D8\u1295
LABEL=\u121D\u120D\u12AD\u1275
PENCOLOR=\u12E8 \u1265\u12D5\u122D \u1240\u1208\u121D|\u12E8 \u1265\u12D5\u122D \u1240\u1208\u121D|\u12E8 \u1218\u1235\u1218\u122D \u1240\u1208\u121D|\u1265/\u1240
ANY=\u121B\u1295\u129B\u12CD\u121D
PENWIDTH=\u12E8 \u1265\u12D5\u122D \u1218\u1320\u1295 |\u12E8 \u1265\u12D5\u122D \u1235\u134B\u1275 |\u12E8 \u1218\u1235\u1218\u122D \u1235\u134B\u1275 |ps
PENSTYLE=\u12E8\u1265\u12D5\u122D \u12D8\u12F4 |\u12E8 \u1218\u1235\u1218\u122D \u12D8\u12F4
PENJOINT=\u12E8\u1265\u12D5\u122D \u1218\u1308\u1293\u129B |\u12E8\u1218\u1235\u1218\u122D \u1218\u1308\u1293\u129B
PENCAP=\u12E8\u1265\u12D5\u122D \u1218\u1308\u1293\u129B |\u12E8\u1218\u1235\u1218\u122D \u1218\u1308\u1293\u129B
NONE=\u121D\u1295\u121D
BEVEL=\u1235\u120B\u123D
MITER=\u1218\u130B\u1320\u121A\u12EB
ROUNDED=\u12AD\u1265
SOLID=\u1219\u1209
DASH=\u12F3\u123D
DOTTED=\u1290\u1320\u1265\u1323\u1265
CLOSE=\u1218\u12DD\u130A\u12EB
FILL=\u1218\u1219\u12EB
FILLCOLOR=\u1240\u1208\u121D \u1218\u1219\u12EB|\u1240\u1208\u121D \u1218\u1219\u12EB|\u1240.\u1218
FILLTRANSPARENCY=\u130D\u120D\u133D\u1290\u1275 \u1218\u1219\u12EB
PENTRANSPARENCY=pentransparency|linetransparency
FILLSTYLE=\u1218\u1219\u12EB \u12D8\u12F4
FONTCOLOR=\u12E8 \u134A\u12F0\u120D \u1240\u1208\u121D|\u12E8 \u133D\u1201\u134D \u1240\u1208\u121D|\u12E8 \u133D\u1201\u134D \u1240\u1208\u121D
FONTTRANSPARENCY=\u12E8 \u134A\u12F0\u120D|\u133D\u1201\u134D \u130D\u120D\u133D\u1290\u1275:
FONTHEIGHT=\u12E8 \u134A\u12F0\u120D \u1218\u1320\u1295|\u12E8 \u133D\u1201\u134D \u1218\u1320\u1295|\u12E8 \u133D\u1201\u134D \u12A5\u122D\u12DD\u1218\u1275
FONTWEIGHT=\u12E8 \u134A\u12F0\u120D \u12AD\u1265\u12F0\u1275
FONTSTYLE=\u12E8 \u134A\u12F0\u120D \u12D8\u12F4
BOLD=\u121B\u12F5\u1218\u1242\u12EB
ITALIC=\u121B\u12DD\u1218\u121A\u12EB
UPRIGHT=\u1240\u1325\u1270\u129B|\u1218\u12F0\u1260\u129B
NORMAL=\u1218\u12F0\u1260\u129B
FONTFAMILY=\u12E8 \u134A\u12F0\u120D \u1264\u1270\u1230\u1265
CLEARSCREEN=\u1218\u1218\u120D\u12A8\u127B \u121B\u133D\u1303|\u1218.\u121B
TEXT=\u133D\u1201\u134D
HIDETURTLE=\u12A4\u120A \u1218\u12F0\u1260\u1242\u12EB|ht|\u12ED\u12F0\u1265\u1241\u129D
SHOWTURTLE=\u12A4\u120A \u121B\u1233\u12EB|st|\u12EB\u1233\u12E9\u129D
POSITION=\u1266\u1273|\u1266\u1273|\u1266\u1273 \u121B\u1230\u1293\u1303
HEADING=\u122B\u1235\u130C|\u122B\u1235\u130C \u121B\u1230\u1293\u1303|\u122B.\u121B
PAGESIZE=\u12E8 \u1308\u133D \u1218\u1320\u1295
GROUP=\u1235\u12A5\u120D|\u1235\u12A5\u120D
# control structures
TO=\u1208
END=\u1218\u1328\u1228\u123B
STOP=\u121B\u1235\u1246\u121A\u12EB
REPEAT=\u1218\u12F5\u1308\u121A\u12EB|\u1208\u12D8\u1208\u12A0\u1208\u121D
REPCOUNT=repcount
BREAK=\u1218\u1328\u1228\u123B
CONTINUE=\u12ED\u1240\u1325\u1209
WHILE=\u1275\u1295\u123D
FOR=\u1208
IN=\u12A2\u1295\u127D
IF=\u12A8
OUTPUT=\u12CD\u1324\u1275
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=\u12A5\u12CD\u1290\u1275
FALSE=\u1200\u1230\u1275
NOT=\u12A0\u12ED\u12F0\u1208\u121D
AND=\u12A5\u1293
OR=\u12C8\u12ED\u121D
INPUT=\u121B\u1235\u1308\u1262\u12EB
PRINT=\u121B\u1270\u121A\u12EB
SLEEP=\u121B\u1235\u1270\u129B
GLOBAL=\u12A0\u1208\u121D \u12A0\u1240\u134D
# functions
RANDOM=\u1260\u1290\u1232\u1265
INT=int
FLOAT=\u121B\u1295\u1233\u1348\u134A\u12EB
STR=str
SQRT=\u1235\u12B4\u122D \u1229\u1275
LOG10=\u120E\u130D10
SIN=\u1233\u12ED\u1295
COS=\u12AE\u1235
ROUND=\u12AD\u1265
ABS=\u134D\u1339\u121D
COUNT=\u1218\u1241\u1320\u122A\u12EB
SET=\u121B\u1230\u1293\u1303
RANGE=\u1218\u1320\u1295
LIST=\u12DD\u122D\u12DD\u122D
TUPLE=\u1271\u1355\u120D
SORTED=\u1270\u1208\u12ED\u1277\u120D
RESUB=\u1295\u12D1\u1235
RESEARCH=\u1218\u1348\u1208\u130A\u12EB
REFINDALL=\u1201\u1209\u1295\u121D \u1218\u1348\u1208\u130A\u12EB
MIN=\u12A0\u1290\u1235\u1270\u129B
MAX=\u12A8\u134D\u1270\u129B
PI=\u1353\u12ED|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=h
MM=\u121A/\u121A
CM=\u1234/\u121A
PT=\u1290\u1325\u1265
INCH=\u12A2\u1295\u127D|"
# color codes
INVISIBLE=\u12E8\u121B\u12ED\u1273\u12ED
BLACK=\u1325\u1241\u122D
SILVER=\u1265\u122D
GRAY=\u130D\u122B\u132B|\u130D\u122B\u132B
WHITE=\u1290\u132D
MAROON=\u12E8\u1238\u12AD\u120B \u1240\u1208\u121D
RED=\u1240\u12ED
PURPLE=\u12C8\u12ED\u1295 \u1320\u1305
FUCHSIA=fuchsia|magenta
GREEN=\u12A0\u1228\u1295\u1313\u12F4
LIME=\u120E\u121A
OLIVE=\u12C8\u12ED\u122B
YELLOW=\u1262\u132B
NAVY=\u12E8\u1263\u1205\u122D \u1283\u12ED\u120D
BLUE=\u1230\u121B\u12EB\u12CA
TEAL=\u12A0\u1228\u1295\u1313\u12F4 \u1230\u121B\u12EB\u12CA
AQUA=\u12C9\u1200|\u12A0\u1228\u1295\u1313\u12F4
PINK=\u122E\u12DD
TOMATO=\u1272\u121B\u1272\u121D
ORANGE=\u1265\u122D\u1271\u12AB\u1295
GOLD=\u12C8\u122D\u1245\u121B
VIOLET=\u12C8\u12ED\u1295 \u1320\u1305
SKYBLUE=\u1230\u121B\u12EB\u12CA
CHOCOLATE=\u1325\u1241\u122D \u1261\u1293\u121B
BROWN=\u1261\u1293\u121B
# messages
LIBRELOGO=\u12E8\u120A\u1265\u122C \u121D\u120D\u12AD\u1275
ERROR=\u1235\u1205\u1270\u1275 (\u1260 \u1218\u1235\u1218\u122D %s) \u120B\u12ED
ERR_ZERODIVISION=\u1260\u12DC\u122E \u121B\u12AB\u1348\u120D
ERR_NAME=\u12EB\u120D\u1273\u12C8\u1240 \u1235\u121D: \u201C%s\u201D.
ERR_ARGUMENTS=%s \u12E8\u121A\u12C8\u1235\u12F0\u12CD %s \u12AD\u122D\u12AD\u122D (%s \u12E8\u1270\u1230\u1320\u12CD)
ERR_BLOCK=\u1235\u1205\u1270\u1275 (\u1270\u1328\u121B\u122A \u12C8\u12ED\u1295\u121D \u1260\u1245\u1295\u1349 \u12CD\u1235\u1325 \u1263\u12F6 \u1266\u1273 \u12E8\u1208\u121D?)
ERR_KEY=\u12EB\u120D\u1273\u12C8\u1240 \u12A0\u12AB\u120D: %s
ERR_INDEX=\u121B\u12CD\u132B\u12CD \u12A8\u1270\u12C8\u1230\u1290\u12CD \u12CD\u132A \u1290\u12CD
ERR_STOP=\u1218\u1270\u130D\u1260\u122A\u12EB\u12CD \u1270\u124B\u122D\u1327\u120D :
ERR_MAXRECURSION=\u12A8\u134D\u1270\u129B\u12CD\u1295 \u1218\u12F0\u130B\u1308\u121A\u12EB \u1218\u1320\u1295 (%d) \u12A0\u120D\u134F\u120D
ERR_MEMORY=\u1260\u1242 memory \u12E8\u1208\u121D
ERR_NOTAPROGRAM=\u12ED\u1205\u1295 \u12E8\u133D\u1201\u134D \u1230\u1290\u12F5 \u121B\u1235\u12AC\u12F5 \u12ED\u1348\u120D\u130B\u1209?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=\u0644\u0644\u0623\u0645\u0627\u0645|\u0623\u0645
BACKWARD=\u0644\u0644\u062E\u0644\u0641|\u062E\u0641
TURNLEFT=\u0644\u0644\u064A\u0633\u0627\u0631
TURNRIGHT=\u0644\u0644\u064A\u0645\u064A\u0646
PENUP=\u0627\u0631\u0641\u0639_\u0627\u0644\u0642\u0644\u0645|\u0627\u0631\u0641\u0639
PENDOWN=\u0623\u0646\u0632\u0644_\u0627\u0644\u0642\u0644\u0645|\u0623\u0646\u0632\u0644
HOME=\u0627\u0644\u0645\u0646\u0632\u0644
POINT=\u0646\u0642\u0637\u0629
CIRCLE=\u062F\u0627\u0626\u0631\u0629
ELLIPSE=\u0628\u064A\u0636\u0627\u0648\u064A
SQUARE=\u0645\u0631\u0628\u0639
RECTANGLE=\u0645\u0633\u062A\u0637\u064A\u0644
LABEL=\u0627\u0644\u0644\u0635\u064A\u0642\u0629
PENCOLOR=\u0644\u0648\u0646_\u0627\u0644\u0642\u0644\u0645
ANY=\u0623\u064A
PENWIDTH=\u062D\u062C\u0645_\u0627\u0644\u0642\u0644\u0645|\u0639\u0631\u0636_\u0627\u0644\u0642\u0644\u0645
PENSTYLE=\u0646\u0645\u0637_\u0627\u0644\u0642\u0644\u0645
PENJOINT=penjoint|linejoint
PENCAP=pencap|linecap
NONE=\u0628\u0644\u0627
BEVEL=\u0645\u0634\u0637\u0648\u0641
MITER=\u0642\u0644\u0646\u0633\u0648\u0629
ROUNDED=\u062F\u0627\u0626\u0631\u064A
SOLID=\u0635\u0644\u0628
DASH=\u0645\u062A\u0642\u0637\u0639
DOTTED=\u0645\u0646\u0642\u0637
CLOSE=\u0623\u063A\u0644\u0642
FILL=\u0627\u0645\u0644\u0623
FILLCOLOR=\u0645\u0644\u0623_\u0644\u0648\u0646
FILLTRANSPARENCY=\u0645\u0644\u0623_\u0634\u0641\u0627\u0641\u064A\u0629
PENTRANSPARENCY=\u0634\u0641\u0627\u0641\u064A\u0629_\u0627\u0644\u0642\u0644\u0645
FILLSTYLE=\u0646\u0645\u0637_\u0627\u0644\u0645\u0644\u0623
FONTCOLOR=\u0644\u0648\u0646_\u0627\u0644\u062E\u0637
FONTTRANSPARENCY=fonttransparency|texttransparency
FONTHEIGHT=\u062D\u062C\u0645_\u0627\u0644\u062E\u0637
FONTWEIGHT=\u0648\u0632\u0646_\u0627\u0644\u062E\u0637
FONTSTYLE=\u0637\u0631\u0627\u0632_\u0627\u0644\u062E\u0637
BOLD=\u062B\u062E\u064A\u0646
ITALIC=\u0645\u0627\u0626\u0644
UPRIGHT=\u0645\u0639\u062A\u062F\u0644|\u0639\u0627\u062F\u064A
NORMAL=\u0639\u0627\u062F\u064A
FONTFAMILY=\u0639\u0627\u0626\u0644\u0629_\u0627\u0644\u062E\u0637
CLEARSCREEN=\u0645\u062D\u0648_\u0627\u0644\u0634\u0627\u0634\u0629|\u0645\u062D\u0648
TEXT=\u0646\u0635
HIDETURTLE=\u0623\u062E\u0641_\u0627\u0644\u0633\u0644\u062D\u0641\u0627\u0629|\u0623\u062E\u0641
SHOWTURTLE=\u0623\u0638\u0647\u0631_\u0627\u0644\u0633\u0644\u062D\u0641\u0627\u0629|\u0623\u0638\u0647\u0631
POSITION=\u0645\u0648\u0642\u0639|\u0639\u064A\u0646_\u0645\u0648\u0642\u0639
HEADING=\u062E\u0637\u200C\u0639\u0646\u0648\u0627\u0646|\u0639\u064A\u0651\u0646\u200C\u062E\u0637\u200C\u0639\u0646\u0648\u0627\u0646
PAGESIZE=\u062D\u062C\u0645_\u0627\u0644\u0635\u0641\u062D\u0629
GROUP=\u0631\u0633\u0645|\u0635\u0648\u0631
# control structures
TO=\u0625\u0644\u0649
END=\u0627\u0644\u0646\u0647\u0627\u064A\u0629
STOP=\u0623\u0648\u0642\u0641
REPEAT=\u0643\u0631\u0631|\u0644\u0644\u0623\u0628\u062F
REPCOUNT=\u0639\u062F\u0627\u062F_\u0627\u0644\u062A\u0643\u0631\u0627\u0631
BREAK=\u0627\u0643\u0633\u0631
CONTINUE=\u062A\u0627\u0628\u0639
WHILE=\u0637\u0627\u0644\u0645\u0627
FOR=\u0644\u0640
IN=\u0641\u064A
IF=\u0625\u0646
OUTPUT=\u0623\u062E\u0631\u0650\u062C
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=\u0635\u062D\u064A\u062D
FALSE=\u062E\u0637\u0623
NOT=\u0644\u064A\u0633
AND=\u0648
OR=\u0623\u0648
INPUT=\u0623\u062F\u062E\u0650\u0644
PRINT=\u0627\u0637\u0628\u0639
SLEEP=\u0646\u064E\u0645
GLOBAL=\u0639\u0645\u0648\u0645\u064A
# functions
RANDOM=\u0639\u0634\u0648\u0627\u0626\u064A
INT=\u0639\u062F\u062F_\u0635\u062D\u064A\u062D
FLOAT=\u0639\u062F\u062F \u0639\u0634\u0631\u064A
STR=\u0633\u0644\u0633\u0644\u0629
SQRT=\u062C\u0630\u0631 \u062A\u0631\u0628\u064A\u0639\u064A
LOG10=\u0644\u0648\u063A\u0627\u0631\u064A\u062B\u0645 \u0639\u0634\u0631\u064A
SIN=\u062C\u0627
COS=\u062C\u062A\u0627
ROUND=\u062F\u0627\u0626\u0631\u064A
ABS=\u0645\u0637\u0644\u0642
COUNT=\u0639\u064F\u062F\u0651
SET=\u0645\u062C\u0645\u0648\u0639\u0629
RANGE=\u0627\u0644\u0646\u0637\u0627\u0642
LIST=\u0642\u0627\u0626\u0645\u0629
TUPLE=tuple
SORTED=\u0645\u064F\u0641\u0631\u064E\u0632
RESUB=\u0627\u0633\u062A\u0628\u062F\u0644
RESEARCH=\u0627\u0628\u062D\u062B
REFINDALL=\u0627\u0639\u062B\u0631_\u0639\u0644\u0649_\u0643\u0644
MIN=\u0627\u0644\u0623\u062F\u0646\u0649
MAX=\u0627\u0644\u0623\u0642\u0635\u0649
PI=\u0637|\u0628\u0627\u064A|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=\u0633
MM=\u0645\u0645
CM=\u0633\u0645
PT=\u0646\u0642\u0637\u0629
INCH=\u0641\u064A|"
# color codes
INVISIBLE=\u0645\u062E\u0641\u064A
BLACK=\u0623\u0633\u0648\u062F
SILVER=\u0641\u0636\u064A
GRAY=\u0631\u0645\u0627\u062F\u064A|\u0631\u0635\u0627\u0635\u064A
WHITE=\u0623\u0628\u064A\u0636
MAROON=\u0643\u0633\u062A\u0646\u0627\u0626\u064A
RED=\u0623\u062D\u0645\u0631
PURPLE=\u0628\u0646\u0641\u0633\u062C\u064A
FUCHSIA=\u0641\u0648\u0634\u064A\u0627|\u0623\u0631\u062C\u0648\u0627\u0646\u064A
GREEN=\u0623\u062E\u0636\u0631
LIME=\u0644\u064A\u0645\u0648\u0646\u064A
OLIVE=\u0632\u064A\u062A\u0648\u0646\u064A
YELLOW=\u0623\u0635\u0641\u0631
NAVY=\u0623\u0632\u0631\u0642_\u0628\u062D\u0631\u064A
BLUE=\u0623\u0632\u0631\u0642
TEAL=\u0623\u0632\u0631\u0642_\u0645\u062E\u0636\u0631
AQUA=\u0633\u0645\u0627\u0648\u064A|\u0633\u064A\u0627\u0646
PINK=\u0648\u0631\u062F\u064A
TOMATO=\u0637\u0645\u0627\u0637\u0645\u064A
ORANGE=\u0628\u0631\u062A\u0642\u0627\u0644\u064A
GOLD=\u0630\u0647\u0628\u064A
VIOLET=\u0628\u0646\u0641\u0633\u062C\u064A
SKYBLUE=\u0633\u0645\u0627\u0648\u064A
CHOCOLATE=\u0634\u0648\u0643\u0648\u0644\u0627\u062A\u064A
BROWN=\u0628\u0646\u064A
# messages
LIBRELOGO=\u0644\u064A\u0628\u0631\u200C\u0644\u0648\u063A\u0648
ERROR=\u062E\u0637\u0623 (\u0641\u064A \u0627\u0644\u0633\u0637\u0631 %s)
ERR_ZERODIVISION=\u0627\u0644\u0642\u0633\u0645\u0629 \u0639\u0644\u0649 \u0635\u0641\u0631.
ERR_NAME=\u0627\u0644\u0627\u0633\u0645 \u0645\u062C\u0647\u0648\u0644: \u201D%s\u201C.
ERR_ARGUMENTS=%s \u064A\u0623\u062E\u0630 %s \u0645\u0646 \u0627\u0644\u0645\u0639\u0627\u0645\u0644\u0627\u062A (%s \u0623\u064F\u0639\u0637\u064A\u062A).
ERR_BLOCK=\u062E\u0637\u0623 (\u0645\u0633\u0627\u0641\u0627\u062A \u0625\u0636\u0627\u0641\u064A\u0629 \u0623\u0648 \u0645\u0641\u0642\u0648\u062F\u0629 \u0641\u064A \u0627\u0644\u0623\u0642\u0648\u0627\u0633\u061F)
ERR_KEY=\u0639\u0646\u0635\u0631 \u0645\u062C\u0647\u0648\u0644: %s
ERR_INDEX=\u0627\u0644\u0641\u0647\u0631\u0633 \u062E\u0627\u0631\u062C \u0627\u0644\u0645\u062C\u0627\u0644.
ERR_STOP=\u062A\u0648\u0642\u0641 \u0627\u0644\u0628\u0631\u0646\u0627\u0645\u062C:
ERR_MAXRECURSION=\u062A\u062C\u0627\u0648\u0632\u062A\u064F \u0627\u0644\u062D\u062F \u0627\u0644\u0623\u0642\u0635\u0649 \u0644\u0644\u0639\u0645\u0642 \u0627\u0644\u062A\u0643\u0631\u0627\u0631\u064A (%d)
ERR_MEMORY=\u0644\u0627 \u0630\u0627\u0643\u0631\u0629 \u0643\u0627\u0641\u064A\u0629.
ERR_NOTAPROGRAM=\u0623\u062A\u0631\u064A\u062F \u062A\u0634\u063A\u064A\u0644 \u0647\u0630\u0627 \u0627\u0644\u0645\u0633\u062A\u0646\u062F \u0627\u0644\u0646\u0635\u0651\u064A\u0651\u061F

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=forward|fd
BACKWARD=back|bk
TURNLEFT=left|turnleft|lt
TURNRIGHT=right|turnright|rt
PENUP=penup|pu
PENDOWN=pendown|pd
HOME=\u0998\u09F0
POINT=\u09AC\u09BF\u09A8\u09CD\u09A6\u09C1
CIRCLE=\u09AC\u09C3\u09A4\u09CD\u09A4
ELLIPSE=\u0989\u09AA\u09AC\u09C3\u09A4\u09CD\u09A4
SQUARE=\u09AC\u09F0\u09CD\u0997
RECTANGLE=\u0986\u09DF\u09A4
LABEL=\u09B2\u09C7\u09AC\u09C7\u09B2
PENCOLOR=pencolor|pencolour|linecolor|pc
ANY=\u09AF\u09BF\u0995\u09CB\u09A8\u09CB
PENWIDTH=pensize|penwidth|linewidth|ps
PENSTYLE=penstyle|linestyle
PENJOINT=penjoint|linejoint
PENCAP=pencap|linecap
NONE=\u0995\u09CB\u09A8\u09CB \u09A8\u09B9\u09DF
BEVEL=bevel
MITER=miter
ROUNDED=\u0997\u09CB\u09B2\u09BE\u0995\u09BE\u09F0
SOLID=\u0995\u09A0\u09BF\u09A8
DASH=\u09A1\u09C7\u09B6\u09CD\u09AC\u09AF\u09C1\u0995\u09CD\u09A4
DOTTED=\u09A1\u099F\u09C7\u09A1
CLOSE=\u09AC\u09A8\u09CD\u09A7 \u0995\u09F0\u0995
FILL=\u09AA\u09C2\u09F0\u09CD\u09A3 \u0995\u09F0\u0995
FILLCOLOR=fillcolor|fillcolour|fc
FILLTRANSPARENCY=filltransparency
PENTRANSPARENCY=pentransparency|linetransparency
FILLSTYLE=fillstyle
FONTCOLOR=fontcolor|textcolor|textcolour
FONTTRANSPARENCY=fonttransparency|texttransparency
FONTHEIGHT=fontsize|textsize|textheight
FONTWEIGHT=fontweight
FONTSTYLE=fontstyle
BOLD=\u09A1\u09BE\u09A0
ITALIC=\u0987\u09A4\u09BE\u09B2\u09BF\u0995
UPRIGHT=upright|normal
NORMAL=\u09B8\u09BE\u09A7\u09BE\u09F0\u09A8
FONTFAMILY=fontfamily
CLEARSCREEN=clearscreen|cs
TEXT=\u09B2\u09BF\u0996\u09A8\u09C0
HIDETURTLE=hideturtle|ht|hideme
SHOWTURTLE=showturtle|st|showme
POSITION=position|pos|setpos
HEADING=heading|setheading|seth
PAGESIZE=pagesize
GROUP=picture|pic
# control structures
TO=\u09B2\u09C8
END=\u0985\u09A8\u09CD\u09A4
STOP=\u09AC\u09A8\u09CD\u09A7 \u0995\u09F0\u0995
REPEAT=repeat|forever
REPCOUNT=repcount
BREAK=break
CONTINUE=\u0985\u09AC\u09CD\u09AF\u09BE\u09B9\u09A4 \u09F0\u09BE\u0996\u0995
WHILE=while
FOR=\u0995\u09BE\u09F0\u09A3\u09C7
IN=\u0987\u09A8
IF=if
OUTPUT=\u0986\u0989\u099F\u09AA\u09C1\u099F
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=\u09B8\u0981\u099A\u09BE
FALSE=\u09AE\u09BF\u099B\u09BE
NOT=not
AND=and
OR=or
INPUT=input
PRINT=print
SLEEP=\u09A8\u09BF\u09A6\u09CD\u09F0\u09BE
GLOBAL=\u09AC\u09BF\u09B6\u09CD\u09AC\u09AC\u09CD\u09AF\u09BE\u09AA\u09C0
# functions
RANDOM=\u09AF\u09BE\u09A6\u09C3\u099A\u09CD\u099B\u09BF\u0995
INT=int
FLOAT=float
STR=str
SQRT=sqrt
LOG10=log10
SIN=sin
COS=cos
ROUND=\u0997\u09CB\u09B2\u09BE\u0995\u09BE\u09F0
ABS=abs
COUNT=\u0997\u09A3\u09A8\u09BE
SET=set
RANGE=\u09AC\u09BF\u09B8\u09CD\u09A4\u09BE\u09F0
LIST=list
TUPLE=tuple
SORTED=\u09AC\u09F0\u09CD\u0997\u09C0\u0995\u09F0\u09A3 \u0995\u09F0\u09BF \u09A5\u09CB\u09F1\u09BE
RESUB=sub
RESEARCH=\u09B8\u09A8\u09CD\u09A7\u09BE\u09A8 \u0995\u09F0\u0995
REFINDALL=findall
MIN=min
MAX=max
PI=pi|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=h
MM=\u09AE\u09BF.\u09AE\u09BF.
CM=\u099B\u09C7.\u09AE\u09BF.
PT=pt
INCH=in|"
# color codes
INVISIBLE=\u0985\u09A6\u09C3\u09B6\u09CD\u09AF
BLACK=\u0995\u09B2\u09BE
SILVER=\u09F0\u09C2\u09AA
GRAY=gray|grey
WHITE=\u09AC\u0997\u09BE
MAROON=\u0995\u09C3\u09B7\u09CD\u09A3\u09F0\u0995\u09CD\u09A4\u09AC\u09F0\u09CD\u09A3
RED=\u09F0\u0999\u09BE
PURPLE=\u099C\u09BE\u09AE\u09C1\u0995\u09B2\u09C0\u09DF\u09BE
FUCHSIA=fuchsia|magenta
GREEN=\u09B8\u09C7\u0989\u099C\u09C0\u09DF\u09BE
LIME=\u09A8\u09C7\u09AE\u09C1
OLIVE=\u099C\u09B2\u09AB\u09BE\u0987
YELLOW=\u09B9\u09BE\u09B2\u09A7\u09C0\u09DF\u09BE
NAVY=\u0987\u09B7\u09CE\u09A8\u09C0\u09B2\u09BE
BLUE=\u09A8\u09C0\u09B2\u09BE
TEAL=\u099F\u09BF\u09B2
AQUA=aqua|cyan
PINK=\u0997\u09CB\u09B2\u09BE\u09AA\u09C0
TOMATO=\u099F\u09AE\u09C7\u099F\u09CB
ORANGE=\u09B8\u09C1\u09AE\u09A5\u09C0\u09F0\u09BE
GOLD=\u09B8\u09CB\u09A8
VIOLET=\u09AC\u09C7\u0999\u09C1\u09A8\u09C0\u09DF\u09BE
SKYBLUE=\u0986\u0995\u09BE\u09B6\u09A8\u09C0\u09B2\u09BE
CHOCOLATE=\u099A\u0995\u09CB\u09B2\u09C7\u099F
BROWN=\u09AE\u09C2\u0997\u09BE
# messages
LIBRELOGO=LibreLogo
ERROR=\u09A4\u09CD\u09F0\u09C1\u099F\u09BF (\u09B6\u09BE\u09F0\u09C0 %s \u09A4)
ERR_ZERODIVISION=\u09B6\u09C1\u09A3\u09CD\u09AF\u09F0\u09C7 \u09B9\u09F0\u09A3 \u0995\u09F0\u09BE \u0964
ERR_NAME=Unknown name: \u201C%s\u201D.
ERR_ARGUMENTS=%s \u098F %s \u09A4\u09F0\u09CD\u0995\u09B8\u09AE\u09C2\u09B9 \u0997\u09CD\u09F0\u09B9\u09A3 \u0995\u09F0\u09C7 (%s \u09A6\u09BF\u09DF\u09BE \u09B9\u09C8\u099B\u09C7)\u0964
ERR_BLOCK=\u09A4\u09CD\u09F0\u09C1\u099F\u09BF (\u09AC\u09CD\u09F0\u09C7\u0995\u09C7\u099F\u09B8\u09AE\u09C2\u09B9\u09A4 \u0985\u09A4\u09BF\u09F0\u09BF\u0995\u09CD\u09A4 \u0985\u09A5\u09AC\u09BE \u09B8\u09A8\u09CD\u09A7\u09BE\u09A8\u09B9\u09BF\u09A8 \u09B8\u09CD\u09AA\u09C7\u0987\u099A?)
ERR_KEY=\u0985\u099C\u09CD\u099E\u09BE\u09A4 \u0989\u09AA\u09BE\u09A6\u09BE\u09A8: %s
ERR_INDEX=\u09B8\u09C2\u099A\u09C0 \u09AC\u09BF\u09B8\u09CD\u09A4\u09BE\u09F0\u09F0 \u09AC\u09BE\u09B9\u09BF\u09F0\u0964
ERR_STOP=\u09AA\u09CD\u09F0\u0997\u09CD\u09F0\u09BE\u09AE \u0985\u09A8\u09CD\u09A4 \u0995\u09F0\u09BE \u09B9\u09B2:
ERR_MAXRECURSION=\u09B8\u09F0\u09CD\u09AC\u09BE\u09A7\u09BF\u0995 \u09F0\u09BF\u0995\u09BE\u09F0\u09CD\u099A\u09A8 \u0997\u09AD\u09BF\u09F0\u09A4\u09BE (%d) \u0985\u09A4\u09BF\u0995\u09CD\u09F0\u09AE \u09B9\u09C8\u099B\u09C7\u0964
ERR_MEMORY=\u09AA\u09F0\u09CD\u09AF\u09BE\u09AA\u09CD\u09A4 \u09AE\u09C7\u09AE\u09F0\u09BF \u09A8\u09BE\u0987\u0964
ERR_NOTAPROGRAM=\u0986\u09AA\u09C1\u09A8\u09BF \u098F\u0987 \u09B2\u09BF\u0996\u09A8\u09C0 \u09A6\u09B8\u09CD\u09A4\u09BE\u09AC\u09C7\u099C \u099A\u09B2\u09BE\u09AC \u09AC\u09BF\u099A\u09BE\u09F0\u09C7 \u09A8\u09C7?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=avanzar|av
BACKWARD=atr\u00E1s|pt
TURNLEFT=izquierda|xiraizquierda|xi
TURNRIGHT=drecha|xiradrecha|xd
PENUP=llapizxubir|lx
PENDOWN=llapizbaxar|lb
HOME=aniciu
POINT=puntu
CIRCLE=c\u00EDrculu
ELLIPSE=elipse
SQUARE=cuadr\u00E1u
RECTANGLE=rect\u00E1ngulu
LABEL=etiqueta
PENCOLOR=llapizcolor|lliniacolor|lc
ANY=cualquier
PENWIDTH=llapiztama\u00F1u|llapizanchor|lliniaanchor|lt
PENSTYLE=llapizestilu|lliniaestilu|le
PENJOINT=llapizxunir|lliniaxunir|lx
PENCAP=finllapiz|finllinia
NONE=deng\u00FAn
BEVEL=moldura
MITER=inglete
ROUNDED=redondu
SOLID=s\u00F3lidu
DASH=discontinuu
DOTTED=punti\u00E1u
CLOSE=zarrar
FILL=rellenar
FILLCOLOR=colorrellenu|cr
FILLTRANSPARENCY=tresparencia.rellenu
PENTRANSPARENCY=tresparenciall\u00E1piz|tresparenciallinia
FILLSTYLE=estiluderrellenu
FONTCOLOR=colorlletra|colortestu
FONTTRANSPARENCY=fonttransparency|texttransparency
FONTHEIGHT=tama\u00F1ulletra|tama\u00F1utestu|altortestu
FONTWEIGHT=pesudefonte
FONTSTYLE=estiludefonte
BOLD=gruesu
ITALIC=cursiva
UPRIGHT=normal
NORMAL=normal
FONTFAMILY=familiafonte
CLEARSCREEN=llimpiapantalla|lp
TEXT=testu
HIDETURTLE=anubretortuga|anubrime|at
SHOWTURTLE=amuesatortuga|veme|vt
POSITION=posici\u00F3n|pos|dirposici\u00F3n
HEADING=direici\u00F3n|pondireici\u00F3n|dir
PAGESIZE=tama\u00F1upaxina
GROUP=figura|fig
# control structures
TO=a
END=final
STOP=parar
REPEAT=repetir|pasiempres
REPCOUNT=repetirvegaes
BREAK=saltu
CONTINUE=siguir
WHILE=mentanto
FOR=pa
IN=en
IF=si
OUTPUT=salida
LEFTSTRING=\u201C|\u2018|\u00AB
RIGHTSTRING=\u201D|\u2019|\u00BB
TRUE=braero
FALSE=falso
NOT=non
AND=y
OR=o
INPUT=entrada
PRINT=imprentar
SLEEP=dormir
GLOBAL=global
# functions
RANDOM=aleatoriu
INT=int
FLOAT=flotante
STR=str
SQRT=raiz
LOG10=log10
SIN=sen
COS=cos
ROUND=redondu
ABS=abs
COUNT=cont\u00E9u
SET=establecer
RANGE=estaya
LIST=llista
TUPLE=tupla
SORTED=ordenao
RESUB=sub
RESEARCH=guetar
REFINDALL=alcontrartoo
MIN=min
MAX=max
PI=pi|\u03C0
# measurement
DECIMAL=,
DEG=\u00B0
HOUR=h
MM=mm
CM=cm
PT=pt
INCH=in|"
# color codes
INVISIBLE=invisible
BLACK=prietu
SILVER=plata
GRAY=buxu
WHITE=blancu
MAROON=marr\u00F3n
RED=bermeyu
PURPLE=p\u00FArpura
FUCHSIA=fucsia|maxenta
GREEN=verde
LIME=llima
OLIVE=oliva
YELLOW=mariellu
NAVY=azulmar\u00EDn|mar\u00EDn
BLUE=azul
TEAL=xade
AQUA=agua|cian
PINK=rosa
TOMATO=tomate
ORANGE=naranxa
GOLD=dor\u00E1u
VIOLET=violeta
SKYBLUE=celeste
CHOCOLATE=chocolate
BROWN=marr\u00F3n
# messages
LIBRELOGO=LibreLogo
ERROR=Fallu (na ringlera %s)
ERR_ZERODIVISION=Divisi\u00F3n por cero.
ERR_NAME=Desconozse'l nome: \u00AB%s\u00BB.
ERR_ARGUMENTS=%s lleva %s argumentos (%s daos).
ERR_BLOCK=Error (\u00BFsobren o falten espacios nos par\u00E9ntesis?)
ERR_KEY=Desconozse l'elementu: %s
ERR_INDEX=\u00CDndiz fuera de rangu.
ERR_STOP=Programa fin\u00E1u:
ERR_MAXRECURSION=fondura m\u00E1xima recursiva (%d) perpasada.
ERR_MEMORY=nun hai memoria bastante.
ERR_NOTAPROGRAM=\u00BFQuier executar esti documentu de testu?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=\u043D\u0430\u043F\u0435\u0440\u0430\u0434|\u043D\u043F
BACKWARD=\u043D\u0430\u0437\u0430\u0434|\u043D\u0437
TURNLEFT=\u0443\u043B\u0435\u0432\u0430|\u043F\u0430\u0432\u0430\u0440\u043E\u0442_\u0443\u043B\u0435\u0432\u0430|\u043B\u0432
TURNRIGHT=\u0443\u043F\u0440\u0430\u0432\u0430|\u043F\u0430\u0432\u0430\u0440\u043E\u0442_\u0443\u043F\u0440\u0430\u0432\u0430|\u043F\u0440
PENUP=penup|pu
PENDOWN=pendown|pd
HOME=\u043F\u0430\u0447\u0430\u0442\u0430\u043A
POINT=\u043F\u0443\u043D\u043A\u0442
CIRCLE=\u0430\u043A\u0440\u0443\u0436\u044B\u043D\u0430
ELLIPSE=\u044D\u043B\u0456\u043F\u0441
SQUARE=\u043A\u0432\u0430\u0434\u0440\u0430\u0442
RECTANGLE=\u043F\u0440\u0430\u043C\u0430\u0432\u0443\u0433\u043E\u043B\u044C\u043D\u0456\u043A
LABEL=\u043C\u0435\u0442\u043A\u0430
PENCOLOR=pencolor|pencolour|linecolor|pc
ANY=any
PENWIDTH=pensize|penwidth|linewidth|ps
PENSTYLE=\u0441\u0442\u044B\u043B\u044C_\u043F\u044F\u0440\u0430|\u0441\u0442\u044B\u043B\u044C_\u043B\u0456\u043D\u0456\u0456
PENJOINT=penjoint|linejoint
PENCAP=pencap|linecap
NONE=\u043D\u044F\u043C\u0430
BEVEL=\u0441\u043A\u043E\u0441
MITER=miter
ROUNDED=\u043A\u0440\u0443\u0433\u043B\u044B
SOLID=\u0441\u0443\u0446\u044D\u043B\u044C\u043D\u044B
DASH=\u0440\u044B\u0441\u043A\u0456
DOTTED=\u043F\u0443\u043D\u043A\u0446\u0456\u0440
CLOSE=\u0437\u0430\u043A\u0440\u044B\u0446\u044C
FILL=\u0437\u0430\u043F\u0430\u045E\u043D\u0435\u043D\u043D\u0435
FILLCOLOR=fillcolor|fillcolour|fc
FILLTRANSPARENCY=filltransparency
PENTRANSPARENCY=pentransparency|linetransparency
FILLSTYLE=\u0441\u0442\u044B\u043B\u044C_\u0437\u0430\u043B\u0456\u045E\u043A\u0456
FONTCOLOR=fontcolor|textcolor|textcolour
FONTTRANSPARENCY=fonttransparency|texttransparency
FONTHEIGHT=fontsize|textsize|textheight
FONTWEIGHT=fontweight
FONTSTYLE=\u0441\u0442\u044B\u043B\u044C_\u0448\u0440\u044B\u0444\u0442\u0443
BOLD=\u0446\u0451\u043C\u043D\u044B
ITALIC=\u043A\u0443\u0440\u0441\u0456\u045E
UPRIGHT=upright|normal
NORMAL=\u0437\u0432\u044B\u0447\u0430\u0439\u043D\u044B
FONTFAMILY=\u0433\u0430\u0440\u043D\u0456\u0442\u0443\u0440\u0430
CLEARSCREEN=clearscreen|cs
TEXT=\u0442\u044D\u043A\u0441\u0442
HIDETURTLE=hideturtle|ht|hideme
SHOWTURTLE=showturtle|st|showme
POSITION=position|pos|setpos
HEADING=heading|setheading|seth
PAGESIZE=\u043F\u0430\u043C\u0435\u0440\u044B_\u0441\u0442\u0430\u0440\u043E\u043D\u043A\u0456
GROUP=picture|pic
# control structures
TO=to
END=end
STOP=stop
REPEAT=\u043F\u0430\u045E\u0442\u0430\u0440\u0430\u0446\u044C|\u0431\u044F\u0441\u043A\u043E\u043D\u0446\u0430
REPCOUNT=repcount
BREAK=break
CONTINUE=\u043F\u0440\u0430\u0446\u044F\u0433\u0432\u0430\u0446\u044C
WHILE=\u043F\u0430\u043A\u0443\u043B\u044C
FOR=\u0434\u043B\u044F
IN=\u0443
IF=\u043A\u0430\u043B\u0456
OUTPUT=\u0432\u044B\u0432\u0430\u0434
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=\u0441\u0430\u043F\u0440\u0430\u045E\u0434\u043D\u0430
FALSE=\u043D\u0435\u0441\u0430\u043F\u0440\u0430\u045E\u0434\u043D\u0430
NOT=\u043D\u0435
AND=\u0456
OR=\u0430\u0431\u043E
INPUT=\u0443\u0432\u043E\u0434
PRINT=\u0434\u0440\u0443\u043A
SLEEP=\u0447\u0430\u043A\u0430\u0446\u044C
GLOBAL=\u0430\u0433\u0443\u043B\u044C\u043D\u044B
# functions
RANDOM=\u0432\u044B\u043F\u0430\u0434\u043A\u043E\u0432\u0430
INT=\u0446\u044D\u043B\u0430\u0435
FLOAT=\u0434\u0440\u043E\u0431\u0430\u0432\u0430\u0435
STR=\u0440\u0430\u0434\u043E\u043A
SQRT=\u043A\u043E\u0440\u0430\u043D\u044C
LOG10=log10
SIN=sin
COS=cos
ROUND=\u043A\u0440\u0443\u0433\u043B\u044B
ABS=abs
COUNT=count
SET=set
RANGE=range
LIST=\u0441\u043F\u0456\u0441
TUPLE=\u043A\u0430\u0440\u0442\u044D\u0436
SORTED=sorted
RESUB=sub
RESEARCH=\u0437\u043D\u0430\u0439\u0441\u0446\u0456
REFINDALL=findall
MIN=\u043C\u0456\u043D
MAX=\u043C\u0430\u043A\u0441
PI=pi|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=h
MM=\u043C\u043C
CM=\u0441\u043C
PT=\u043F\u0442
INCH=\u0446\u0430\u043B\u044C|"
# color codes
INVISIBLE=\u043D\u044F\u0431\u0430\u0447\u043D\u044B
BLACK=\u0447\u043E\u0440\u043D\u044B
SILVER=\u0441\u0440\u044D\u0431\u043D\u044B
GRAY=\u0448\u044D\u0440\u044B
WHITE=\u0431\u0435\u043B\u044B
MAROON=\u0431\u0430\u0440\u0434\u043E\u0432\u044B
RED=\u0447\u044B\u0440\u0432\u043E\u043D\u044B
PURPLE=\u043F\u0443\u0440\u043F\u0443\u0440\u043D\u044B
FUCHSIA=\u0444\u0443\u043A\u0441\u0456\u044F|\u043F\u0443\u0440\u043F\u0443\u0440\u043D\u044B
GREEN=\u0437\u044F\u043B\u0451\u043D\u044B
LIME=\u044F\u0440\u043A\u0430-\u0437\u044F\u043B\u0451\u043D\u044B
OLIVE=\u0430\u043B\u0456\u045E\u043A\u0430\u0432\u044B
YELLOW=\u0436\u043E\u045E\u0442\u044B
NAVY=\u0446\u0451\u043C\u043D\u0430-\u0441\u0456\u043D\u0456
BLUE=\u0441\u0456\u043D\u0456
TEAL=\u0431\u0456\u0440\u0443\u0437\u043E\u0432\u044B
AQUA=\u0431\u043B\u0430\u043A\u0456\u0442\u043D\u044B
PINK=\u0440\u0443\u0436\u043E\u0432\u044B
TOMATO=\u0442\u0430\u043C\u0430\u0442
ORANGE=\u0430\u0440\u0430\u043D\u0436\u0430\u0432\u044B
GOLD=\u0437\u0430\u043B\u0430\u0442\u044B
VIOLET=\u0431\u044D\u0437\u0430\u0432\u044B
SKYBLUE=\u043D\u044F\u0431\u0435\u0441\u043D\u0430-\u0431\u043B\u0430\u043A\u0456\u0442\u043D\u044B
CHOCOLATE=\u0448\u0430\u043A\u0430\u043B\u0430\u0434\u043D\u044B
BROWN=\u043A\u0430\u0440\u044B\u0447\u043D\u0435\u0432\u044B
# messages
LIBRELOGO=LibreLogo
ERROR=\u041F\u0430\u043C\u044B\u043B\u043A\u0430 (\u0443 \u0440\u0430\u0434\u043A\u0443 %s)
ERR_ZERODIVISION=\u0414\u0437\u044F\u043B\u0435\u043D\u043D\u0435 \u043D\u0430 \u043D\u0443\u043B\u044C.
ERR_NAME=\u041D\u0435\u0432\u044F\u0434\u043E\u043C\u0430\u044F \u043D\u0430\u0437\u0432\u0430: \u201C%s\u201D.
ERR_ARGUMENTS=%s \u043F\u0440\u044B\u043C\u0430\u0435 %s \u0430\u0440\u0433\u0443\u043C\u0435\u043D\u0442\u0430\u045E (\u043F\u0430\u0434\u0430\u0434\u0437\u0435\u043D\u0430 %s).
ERR_BLOCK=\u041F\u0430\u043C\u044B\u043B\u043A\u0430 (\u043B\u0456\u0448\u043D\u0456\u044F \u0446\u0456 \u043D\u0435\u0434\u0430\u0441\u0442\u0430\u0442\u043A\u043E\u0432\u044B\u044F \u043F\u0440\u0430\u0431\u0435\u043B\u044B \u045E \u0434\u0443\u0436\u043A\u0430\u0445?)
ERR_KEY=\u041D\u0435\u0432\u044F\u0434\u043E\u043C\u044B \u044D\u043B\u0435\u043C\u0435\u043D\u0442: %s
ERR_INDEX=\u0406\u043D\u0434\u044D\u043A\u0441 \u043F\u0430-\u0437\u0430 \u0430\u0431\u0441\u044F\u0433\u0430\u043C.
ERR_STOP=\u041F\u0440\u0430\u0433\u0440\u0430\u043C\u0430 \u0441\u043F\u044B\u043D\u0435\u043D\u0430:
ERR_MAXRECURSION=\u043F\u0435\u0440\u0430\u0432\u044B\u0448\u0430\u043D\u0430 \u043C\u0430\u043A\u0441\u0456\u043C\u0430\u043B\u044C\u043D\u0430\u044F \u0433\u043B\u044B\u0431\u0456\u043D\u044F \u0440\u044D\u043A\u0443\u0440\u0441\u0456\u0456 (%d).
ERR_MEMORY=\u043D\u0435\u0434\u0430\u0441\u0442\u0430\u0442\u043A\u043E\u0432\u0430 \u043F\u0430\u043C\u044F\u0446\u0456.
ERR_NOTAPROGRAM=\u0412\u044B\u043A\u0430\u043D\u0430\u0446\u044C \u0433\u044D\u0442\u044B \u0442\u044D\u043A\u0441\u0442\u0430\u0432\u044B \u0434\u0430\u043A\u0443\u043C\u0435\u043D\u0442?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=forward|fd
BACKWARD=back|bk
TURNLEFT=left|turnleft|lt
TURNRIGHT=right|turnright|rt
PENUP=penup|pu
PENDOWN=pendown|pd
HOME=home
POINT=point
CIRCLE=circle
ELLIPSE=ellipse
SQUARE=square
RECTANGLE=rectangle
LABEL=label
PENCOLOR=pencolor|pencolour|linecolor|pc
ANY=any
PENWIDTH=pensize|penwidth|linewidth|ps
PENSTYLE=penstyle|linestyle
PENJOINT=penjoint|linejoint
PENCAP=pencap|linecap
NONE=none
BEVEL=bevel
MITER=miter
ROUNDED=round
SOLID=solid
DASH=dashed
DOTTED=dotted
CLOSE=close
FILL=fill
FILLCOLOR=fillcolor|fillcolour|fc
FILLTRANSPARENCY=filltransparency
PENTRANSPARENCY=pentransparency|linetransparency
FILLSTYLE=fillstyle
FONTCOLOR=fontcolor|textcolor|textcolour
FONTTRANSPARENCY=fonttransparency|texttransparency
FONTHEIGHT=fontsize|textsize|textheight
FONTWEIGHT=fontweight
FONTSTYLE=fontstyle
BOLD=bold
ITALIC=italic
UPRIGHT=upright|normal
NORMAL=normal
FONTFAMILY=fontfamily
CLEARSCREEN=clearscreen|cs
TEXT=text
HIDETURTLE=hideturtle|ht|hideme
SHOWTURTLE=showturtle|st|showme
POSITION=position|pos|setpos
HEADING=heading|setheading|seth
PAGESIZE=pagesize
GROUP=picture|pic
# control structures
TO=to
END=end
STOP=stop
REPEAT=repeat|forever
REPCOUNT=repcount
BREAK=break
CONTINUE=continue
WHILE=while
FOR=for
IN=in
IF=if
OUTPUT=output
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=true
FALSE=false
NOT=not
AND=and
OR=or
INPUT=input
PRINT=print
SLEEP=sleep
GLOBAL=global
# functions
RANDOM=random
INT=int
FLOAT=float
STR=str
SQRT=sqrt
LOG10=log10
SIN=sin
COS=cos
ROUND=round
ABS=abs
COUNT=count
SET=set
RANGE=range
LIST=list
TUPLE=tuple
SORTED=sorted
RESUB=sub
RESEARCH=search
REFINDALL=findall
MIN=min
MAX=max
PI=pi|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=h
MM=mm
CM=cm
PT=pt
INCH=in|"
# color codes
INVISIBLE=invisible
BLACK=black
SILVER=silver
GRAY=gray|grey
WHITE=white
MAROON=maroon
RED=red
PURPLE=purple
FUCHSIA=fuchsia|magenta
GREEN=green
LIME=lime
OLIVE=olive
YELLOW=yellow
NAVY=navy
BLUE=blue
TEAL=teal
AQUA=aqua|cyan
PINK=pink
TOMATO=tomato
ORANGE=orange
GOLD=gold
VIOLET=violet
SKYBLUE=skyblue
CHOCOLATE=chocolate
BROWN=brown
# messages
LIBRELOGO=LibreLogo
ERROR=\u0413\u0440\u0435\u0448\u043A\u0430 (\u0432 \u0440\u0435\u0434 %s)
ERR_ZERODIVISION=\u0414\u0435\u043B\u0435\u043D\u0438\u0435 \u043D\u0430 \u043D\u0443\u043B\u0430.
ERR_NAME=\u041D\u0435\u043F\u043E\u0437\u043D\u0430\u0442\u043E \u0438\u043C\u0435: \u201E%s\u201C.
ERR_ARGUMENTS=%s \u043F\u0440\u0438\u0435\u043C\u0430 %s \u0430\u0440\u0433\u0443\u043C\u0435\u043D\u0442\u0430 (\u043F\u043E\u0434\u0430\u0434\u0435\u043D\u0438 \u0441\u0430 %s).
ERR_BLOCK=\u0413\u0440\u0435\u0448\u043A\u0430 (\u0438\u0437\u043B\u0438\u0448\u043D\u0438 \u0438\u043B\u0438 \u043B\u0438\u043F\u0441\u0432\u0430\u0449\u0438 \u0438\u043D\u0442\u0435\u0440\u0432\u0430\u043B\u0438 \u043F\u0440\u0438 \u0441\u043A\u043E\u0431\u0438?)
ERR_KEY=\u041D\u0435\u043F\u043E\u0437\u043D\u0430\u0442 \u0435\u043B\u0435\u043C\u0435\u043D\u0442: %s
ERR_INDEX=\u0418\u043D\u0434\u0435\u043A\u0441 \u0438\u0437\u0432\u044A\u043D \u043E\u0431\u0445\u0432\u0430\u0442\u0430.
ERR_STOP=\u041F\u0440\u043E\u0433\u0440\u0430\u043C\u0430\u0442\u0430 \u0435 \u043F\u0440\u0435\u043A\u0440\u0430\u0442\u0435\u043D\u0430:
ERR_MAXRECURSION=\u043D\u0430\u0434\u0445\u0432\u044A\u0440\u043B\u0435\u043D\u0430 \u0435 \u043C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u043D\u0430\u0442\u0430 \u0434\u044A\u043B\u0431\u043E\u0447\u0438\u043D\u0430 \u043D\u0430 \u0440\u0435\u043A\u0443\u0440\u0441\u0438\u044F (%d).
ERR_MEMORY=\u043D\u0435\u0434\u043E\u0441\u0442\u0430\u0442\u044A\u0447\u043D\u0430 \u043F\u0430\u043C\u0435\u0442.
ERR_NOTAPROGRAM=\u0416\u0435\u043B\u0430\u0435\u0442\u0435 \u043B\u0438 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043F\u044A\u043B\u043D\u0438 \u0442\u043E\u0437\u0438 \u0442\u0435\u043A\u0441\u0442\u043E\u0432 \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=forward|fd
BACKWARD=back|bk
TURNLEFT=left|turnleft|lt
TURNRIGHT=right|turnright|rt
PENUP=penup|pu
PENDOWN=pendown|pd
HOME=home
POINT=point
CIRCLE=circle
ELLIPSE=ellipse
SQUARE=square
RECTANGLE=rectangle
LABEL=label
PENCOLOR=pencolor|pencolour|linecolor|pc
ANY=any
PENWIDTH=pensize|penwidth|linewidth|ps
PENSTYLE=penstyle|linestyle
PENJOINT=penjoint|linejoint
PENCAP=pencap|linecap
NONE=\u0995\u09CB\u09A8\u099F\u09BF \u09A8\u09BE
BEVEL=bevel
MITER=miter
ROUNDED=round
SOLID=solid
DASH=dashed
DOTTED=dotted
CLOSE=close
FILL=fill
FILLCOLOR=fillcolor|fillcolour|fc
FILLTRANSPARENCY=filltransparency
PENTRANSPARENCY=pentransparency|linetransparency
FILLSTYLE=fillstyle
FONTCOLOR=fontcolor|textcolor|textcolour
FONTTRANSPARENCY=fonttransparency|texttransparency
FONTHEIGHT=fontsize|textsize|textheight
FONTWEIGHT=fontweight
FONTSTYLE=fontstyle
BOLD=\u0997\u09BE\u09DD
ITALIC=italic
UPRIGHT=upright|normal
NORMAL=\u09B8\u09BE\u09A7\u09BE\u09B0\u09A3
FONTFAMILY=fontfamily
CLEARSCREEN=clearscreen|cs
TEXT=\u09AA\u09BE\u09A0\u09CD\u09AF
HIDETURTLE=hideturtle|ht|hideme
SHOWTURTLE=showturtle|st|showme
POSITION=position|pos|setpos
HEADING=heading|setheading|seth
PAGESIZE=pagesize
GROUP=picture|pic
# control structures
TO=to
END=\u09B6\u09C7\u09B7
STOP=stop
REPEAT=repeat|forever
REPCOUNT=repcount
BREAK=break
CONTINUE=continue
WHILE=while
FOR=\u099C\u09A8\u09CD\u09AF
IN=\u0987\u099E\u09CD\u099A\u09BF
IF=if
OUTPUT=output
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=\u09B8\u09A4\u09CD\u09AF
FALSE=\u09AE\u09BF\u09A5\u09CD\u09AF\u09BE
NOT=not
AND=\u098F\u09AC\u0982
OR=\u0985\u09A5\u09AC\u09BE
INPUT=input
PRINT=print
SLEEP=sleep
GLOBAL=global
# functions
RANDOM=random
INT=int
FLOAT=float
STR=str
SQRT=sqrt
LOG10=log10
SIN=sin
COS=cos
ROUND=round
ABS=abs
COUNT=count
SET=set
RANGE=\u09AA\u09B0\u09BF\u09B8\u09B0
LIST=list
TUPLE=tuple
SORTED=\u09AC\u09BF\u09A8\u09CD\u09AF\u09B8\u09CD\u09A4
RESUB=sub
RESEARCH=search
REFINDALL=findall
MIN=min
MAX=max
PI=pi|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=h
MM=\u09AE\u09BF\u09AE\u09BF
CM=\u09B8\u09C7\u09AE\u09BF
PT=\u09AA\u09DF\u09C7\u09A8\u09CD\u099F
INCH=in|"
# color codes
INVISIBLE=invisible
BLACK=\u0995\u09BE\u09B2\u09CB
SILVER=silver
GRAY=gray|grey
WHITE=white
MAROON=maroon
RED=red
PURPLE=purple
FUCHSIA=fuchsia|magenta
GREEN=green
LIME=lime
OLIVE=olive
YELLOW=yellow
NAVY=navy
BLUE=blue
TEAL=teal
AQUA=aqua|cyan
PINK=pink
TOMATO=tomato
ORANGE=orange
GOLD=gold
VIOLET=violet
SKYBLUE=skyblue
CHOCOLATE=chocolate
BROWN=brown
# messages
LIBRELOGO=LibreLogo
ERROR=Error (in line %s)
ERR_ZERODIVISION=\u09B6\u09C2\u09A8\u09CD\u09AF \u09A6\u09BF\u09AF\u09BC\u09C7 \u09AC\u09BF\u09AD\u09BE\u099C\u09A8\u0964
ERR_NAME=Unknown name: \u201C%s\u201D.
ERR_ARGUMENTS=%s takes %s arguments (%s given).
ERR_BLOCK=Error (extra or missing spaces at brackets?)
ERR_KEY=Unknown element: %s
ERR_INDEX=Index out of range.
ERR_STOP=Program terminated:
ERR_MAXRECURSION=maximum recursion depth (%d) exceeded.
ERR_MEMORY=not enough memory.
ERR_NOTAPROGRAM=Do you want to run this text document?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=forward|fd
BACKWARD=back|bk
TURNLEFT=left|turnleft|lt
TURNRIGHT=right|turnright|rt
PENUP=penup|pu
PENDOWN=pendown|pd
HOME=Home
POINT=\u09AA\u09DF\u09C7\u09A8\u09CD\u099F
CIRCLE=\u09AC\u09C3\u09A4\u09CD\u09A4
ELLIPSE=\u0989\u09AA\u09AC\u09C3\u09A4\u09CD\u09A4
SQUARE=\u09AC\u09B0\u09CD\u0997\u0995\u09CD\u09B7\u09C7\u09A4\u09CD\u09B0
RECTANGLE=\u0986\u09AF\u09BC\u09A4\u0995\u09CD\u09B7\u09C7\u09A4\u09CD\u09B0
LABEL=\u09B2\u09C7\u09AC\u09C7\u09B2
PENCOLOR=pencolor|pencolour|linecolor|pc
ANY=\u09AF\u09C7\u0995\u09CB\u09A8\u09CB
PENWIDTH=pensize|penwidth|linewidth|ps
PENSTYLE=penstyle|linestyle
PENJOINT=penjoint|linejoint
PENCAP=pencap|linecap
NONE=\u0995\u09CB\u09A8\u099F\u09BF \u09A8\u09BE
BEVEL=\u09B8\u09CD\u09A4\u09B0
MITER=miter
ROUNDED=\u09B0\u09BE\u0989\u09A8\u09CD\u09A1
SOLID=\u09A8\u09BF\u09B0\u09C7\u099F
DASH=\u09A1\u09CD\u09AF\u09BE\u09B6\u09AF\u09C1\u0995\u09CD\u09A4
DOTTED=\u09A1\u099F\u09C7\u09A1
CLOSE=\u09AC\u09A8\u09CD\u09A7
FILL=\u09AA\u09C2\u09B0\u09A3 \u0995\u09B0\u09C1\u09A8
FILLCOLOR=fillcolor|fillcolour|fc
FILLTRANSPARENCY=filltransparency
PENTRANSPARENCY=pentransparency|linetransparency
FILLSTYLE=\u09AD\u09B0\u09BE\u099F \u09B6\u09C8\u09B2\u09C0
FONTCOLOR=fontcolor|textcolor|textcolour
FONTTRANSPARENCY=fonttransparency|texttransparency
FONTHEIGHT=fontsize|textsize|textheight
FONTWEIGHT=\u09AB\u09A8\u09CD\u099F\u09C7\u09B0 \u09AA\u09C1\u09B0\u09C1\u09A4\u09CD\u09AC
FONTSTYLE=\u09B9\u09B0\u09AB-\u09B6\u09C8\u09B2\u09C0
BOLD=\u0997\u09BE\u09DD
ITALIC=\u09A4\u09BF\u09B0\u09CD\u09AF\u0995
UPRIGHT=upright|normal
NORMAL=\u09B8\u09BE\u09A7\u09BE\u09B0\u09A3
FONTFAMILY=fontfamily
CLEARSCREEN=clearscreen|cs
TEXT=\u09AA\u09BE\u09A0\u09CD\u09AF
HIDETURTLE=hideturtle|ht|hideme
SHOWTURTLE=showturtle|st|showme
POSITION=position|pos|setpos
HEADING=heading|setheading|seth
PAGESIZE=\u0995\u09BE\u0997\u099C\u09C7\u09B0 \u09AE\u09BE\u09AA
GROUP=picture|pic
# control structures
TO=\u09AA\u09CD\u09B0\u09A4\u09BF
END=\u09B6\u09C7\u09B7
STOP=\u09A5\u09BE\u09AE\u09BE\u09A8
REPEAT=repeat|forever
REPCOUNT=repcount
BREAK=\u09AC\u09BF\u09B0\u09A4\u09BF
CONTINUE=\u09AA\u09B0\u09AC\u09B0\u09CD\u09A4\u09C0 (~C)
WHILE=\u09AF\u09C7\u0996\u09BE\u09A8\u09C7
FOR=\u099C\u09A8\u09CD\u09AF
IN=\u0987\u099E\u09CD\u099A\u09BF
IF=\u09AF\u09A6\u09BF
OUTPUT=\u0986\u0989\u099F\u09AA\u09C1\u099F
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=\u09B8\u09A4\u09CD\u09AF
FALSE=\u09AE\u09BF\u09A5\u09CD\u09AF\u09BE
NOT=\u09A8\u09DF
AND=\u098F\u09AC\u0982
OR=\u0985\u09A5\u09AC\u09BE
INPUT=\u0987\u09A8\u09AA\u09C1\u099F
PRINT=\u09AE\u09C1\u09A6\u09CD\u09B0\u09A3
SLEEP=sleep
GLOBAL=\u0997\u09CD\u09B2\u09CB\u09AC\u09BE\u09B2
# functions
RANDOM=\u098F\u09B2\u09CB\u09AE\u09C7\u09B2\u09CB
INT=int
FLOAT=\u09AD\u09BE\u09B8\u09AE\u09BE\u09A8
STR=str
SQRT=sqrt
LOG10=log10
SIN=sin
COS=cos
ROUND=\u09B0\u09BE\u0989\u09A8\u09CD\u09A1
ABS=\u099F\u09CD\u09AF\u09BE\u09AC
COUNT=count
SET=\u09B8\u09C7\u099F
RANGE=\u09AA\u09B0\u09BF\u09B8\u09B0
LIST=\u09A4\u09BE\u09B2\u09BF\u0995\u09BE
TUPLE=tuple
SORTED=\u09AC\u09BF\u09A8\u09CD\u09AF\u09B8\u09CD\u09A4
RESUB=sub
RESEARCH=\u0985\u09A8\u09C1\u09B8\u09A8\u09CD\u09A7\u09BE\u09A8
REFINDALL=findall
MIN=\u09B8\u09B0\u09CD\u09AC\u09A8\u09BF\u09AE\u09CD\u09A8
MAX=\u09B8\u09B0\u09CD\u09AC\u09CB\u099A\u09CD\u099A
PI=pi|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=h
MM=\u09AE\u09BF\u09AE\u09BF
CM=\u09B8\u09C7\u09AE\u09BF
PT=\u09AA\u09DF\u09C7\u09A8\u09CD\u099F
INCH=in|"
# color codes
INVISIBLE=\u0985\u09A6\u09C3\u09B6\u09CD\u09AF
BLACK=\u0995\u09BE\u09B2\u09CB
SILVER=\u09B0\u09C2\u09AA\u09BE\u09B2\u09C0
GRAY=gray|grey
WHITE=\u09B8\u09BE\u09A6\u09BE
MAROON=\u09AE\u09C7\u09B0\u09C1\u09A8
RED=\u09B2\u09BE\u09B2
PURPLE=\u0997\u09CB\u09B2\u09BE\u09AA\u09C0
FUCHSIA=fuchsia|magenta
GREEN=\u09B8\u09AC\u09C1\u099C
LIME=\u09B8\u09AE\u09AF\u09BC
OLIVE=\u099C\u09B2\u09AA\u09BE\u0987 \u09B0\u0982
YELLOW=\u09B9\u09B2\u09C1\u09A6
NAVY=\u0985\u09BE\u0995\u09BE\u09B6\u09BF
BLUE=\u09A8\u09C0\u09B2
TEAL=\u099F\u09BF\u09B2
AQUA=aqua|cyan
PINK=\u09B2\u09BF\u0982\u0995
TOMATO=\u099F\u09CB\u09AE\u09BE\u099F\u09CB
ORANGE=\u09AA\u09B0\u09BF\u09B8\u09B0
GOLD=\u0997\u09BE\u09DD
VIOLET=\u09AC\u09C7\u0997\u09C1\u09A8\u09C0
SKYBLUE=\u0985\u09BE\u0995\u09BE\u09B6\u09BF \u09A8\u09C0\u09B2
CHOCOLATE=\u099A\u0995\u09CB\u09B2\u09C7\u099F
BROWN=\u09AC\u09BE\u09A6\u09BE\u09AE\u09BF
# messages
LIBRELOGO=LibreLogo
ERROR=\u09A4\u09CD\u09B0\u09C1\u099F\u09BF (\u0987\u09A8 \u09B2\u09BE\u0987\u09A8 %s)
ERR_ZERODIVISION=\u09B6\u09C2\u09A8\u09CD\u09AF \u09A6\u09BF\u09AF\u09BC\u09C7 \u09AC\u09BF\u09AD\u09BE\u099C\u09A8\u0964
ERR_NAME=\u0985\u099C\u09BE\u09A8\u09BE \u09A8\u09BE\u09AE: \u201C%s\u201D.
ERR_ARGUMENTS=%s takes %s arguments (%s given).
ERR_BLOCK=\u09A4\u09CD\u09B0\u09C1\u099F\u09BF (\u09AC\u09CD\u09B0\u09CD\u09AF\u09BE\u0995\u09C7\u099F\u09C7 \u0985\u09A4\u09BF\u09B0\u09BF\u0995\u09CD\u09A4 \u09AC\u09BE \u0985\u09A8\u09C1\u09AA\u09B8\u09CD\u09A5\u09BF\u09A4 \u09B8\u09CD\u09AA\u09C7\u09B8?)
ERR_KEY=\u0985\u099C\u09BE\u09A8\u09BE \u09B8\u09CD\u09AC\u09A4\u09CD\u09AC\u09BE %s
ERR_INDEX=\u09B8\u09C2\u099A\u09BF \u09AE\u09BE\u09A8 \u09B8\u09C0\u09AE\u09BE\u09AC\u09B9\u09BF\u09B0\u09CD\u09AD\u09C2\u09A4\u0964
ERR_STOP=\u09AA\u09CD\u09B0\u09CB\u0997\u09CD\u09B0\u09BE\u09AE \u09B8\u09BE\u09AE\u09DF\u09BF\u0995 \u09AD\u09BE\u09AC\u09C7 \u09AC\u09A8\u09CD\u09A7 \u0995\u09B0\u09BE \u09B9\u09DF\u09C7\u099B\u09C7:
ERR_MAXRECURSION=\u09B8\u09B0\u09CD\u09AC\u09BE\u09A7\u09BF\u0995 \u09B0\u09BF\u0995\u09BE\u09B0\u09B8\u09BF\u09DF\u09A8 \u09A1\u09C7\u09AA\u09A5 (%d) \u099B\u09BE\u09DC\u09BF\u09DF\u09C7 \u0997\u09C7\u099B\u09C7\u0964
ERR_MEMORY=\u0985\u09AA\u09CD\u09B0\u09A4\u09C1\u09B2 \u09AE\u09C7\u09AE\u09B0\u09BF\u0964
ERR_NOTAPROGRAM=\u0985\u09BE\u09AA\u09A8\u09BF \u0995\u09BF \u098F\u0987 \u09AA\u09BE\u09A0\u09CD\u09AF \u09A8\u09A5\u09BF \u099A\u09BE\u09B2\u09BE\u09A4\u09C7 \u099A\u09BE\u09A8?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=forward|fd
BACKWARD=back|bk
TURNLEFT=left|turnleft|lt
TURNRIGHT=right|turnright|rt
PENUP=penup|pu
PENDOWN=pendown|pd
HOME=home
POINT=point
CIRCLE=circle
ELLIPSE=ellipse
SQUARE=square
RECTANGLE=rectangle
LABEL=label
PENCOLOR=pencolor|pencolour|linecolor|pc
ANY=any
PENWIDTH=pensize|penwidth|linewidth|ps
PENSTYLE=penstyle|linestyle
PENJOINT=penjoint|linejoint
PENCAP=pencap|linecap
NONE=\u0F58\u0F7A\u0F51\u0F0B\u0F54\u0F0D
BEVEL=bevel
MITER=miter
ROUNDED=round
SOLID=solid
DASH=dashed
DOTTED=dotted
CLOSE=close
FILL=fill
FILLCOLOR=fillcolor|fillcolour|fc
FILLTRANSPARENCY=filltransparency
PENTRANSPARENCY=pentransparency|linetransparency
FILLSTYLE=fillstyle
FONTCOLOR=fontcolor|textcolor|textcolour
FONTTRANSPARENCY=fonttransparency|texttransparency
FONTHEIGHT=fontsize|textsize|textheight
FONTWEIGHT=fontweight
FONTSTYLE=fontstyle
BOLD=bold
ITALIC=italic
UPRIGHT=upright|normal
NORMAL=normal
FONTFAMILY=fontfamily
CLEARSCREEN=clearscreen|cs
TEXT=text
HIDETURTLE=hideturtle|ht|hideme
SHOWTURTLE=showturtle|st|showme
POSITION=position|pos|setpos
HEADING=heading|setheading|seth
PAGESIZE=pagesize
GROUP=picture|pic
# control structures
TO=to
END=end_period
STOP=stop
REPEAT=repeat|forever
REPCOUNT=repcount
BREAK=break
CONTINUE=continue
WHILE=while
FOR=\u0F63\u0F0B\u0F66\u0FA4\u0FB1\u0F7C\u0F51\u0F0D
IN=\u0F51\u0F56\u0FB1\u0F72\u0F53\u0F0B\u0F5A\u0F74\u0F53\u0F0D
IF=if
OUTPUT=output
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=true
FALSE=false
NOT=not
AND=and
OR=\u0F61\u0F44\u0F0B\u0F53\u0F0D
INPUT=input
PRINT=print
SLEEP=sleep
GLOBAL=global
# functions
RANDOM=random
INT=int
FLOAT=float
STR=str
SQRT=sqrt
LOG10=log10
SIN=sin
COS=cos
ROUND=round
ABS=abs
COUNT=count
SET=set
RANGE=range
LIST=list
TUPLE=tuple
SORTED=range_lookup
RESUB=sub
RESEARCH=search
REFINDALL=findall
MIN=min
MAX=max
PI=pi|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=h
MM=\u0F67\u0F60\u0F72\u0F0B\u0F66\u0FA8\u0F72\u0F0D
CM=\u0F63\u0F72\u0F60\u0F72\u0F0B\u0F66\u0FA8\u0F72\u0F0D
PT=pt
INCH=in|"
# color codes
INVISIBLE=invisible
BLACK=black
SILVER=silver
GRAY=gray|grey
WHITE=white
MAROON=maroon
RED=red
PURPLE=purple
FUCHSIA=fuchsia|magenta
GREEN=green
LIME=lime
OLIVE=olive
YELLOW=yellow
NAVY=navy
BLUE=blue
TEAL=teal
AQUA=aqua|cyan
PINK=pink
TOMATO=tomato
ORANGE=orange
GOLD=gold
VIOLET=violet
SKYBLUE=skyblue
CHOCOLATE=chocolate
BROWN=brown
# messages
LIBRELOGO=LibreLogo
ERROR=Error (in line %s)
ERR_ZERODIVISION=\u0F40\u0FB3\u0F51\u0F0B\u0F40\u0F7C\u0F62\u0F0B\u0F55\u0F74\u0F51\u0F0D
ERR_NAME=Unknown name: \u201C%s\u201D.
ERR_ARGUMENTS=%s takes %s arguments (%s given).
ERR_BLOCK=Error (extra or missing spaces at brackets?)
ERR_KEY=Unknown element: %s
ERR_INDEX=Index out of range.
ERR_STOP=Program terminated:
ERR_MAXRECURSION=maximum recursion depth (%d) exceeded.
ERR_MEMORY=not enough memory.
ERR_NOTAPROGRAM=Do you want to run this text document?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=war-raok|fd
BACKWARD=war-gil|bk
TURNLEFT=left|turnleft|lt
TURNRIGHT=dehou|trotudehou|de
PENUP=penup|pu
PENDOWN=pendown|pd
HOME=Degemer
POINT=poent
CIRCLE=kelc'h
ELLIPSE=elipsenn
SQUARE=karrez
RECTANGLE=reizhkorneg
LABEL=tikedenn
PENCOLOR=pencolor|pencolour|linecolor|pc
ANY=any
PENWIDTH=pensize|penwidth|linewidth|ps
PENSTYLE=penstyle|linestyle
PENJOINT=penjoint|linejoint
PENCAP=pennkreion|pennlinenn
NONE=tra ebet
BEVEL=beskell
MITER=garan
ROUNDED=ront
SOLID=unvan
DASH=gourzhello\u00F9
DOTTED=pikennaoueg
CLOSE=serri\u00F1
FILL=leunia\u00F1
FILLCOLOR=fillcolor|fillcolour|fc
FILLTRANSPARENCY=boullderleunia\u00F1
PENTRANSPARENCY=boullderkreion|boullderlinenn
FILLSTYLE=stil leunia\u00F1
FONTCOLOR=fontcolor|textcolor|textcolour
FONTTRANSPARENCY=fonttransparency|texttransparency
FONTHEIGHT=fontsize|textsize|textheight
FONTWEIGHT=lard
FONTSTYLE=stil an nodrezh
BOLD=Tev
ITALIC=stouet
UPRIGHT=a-serzh|normal
NORMAL=Reizh
FONTFAMILY=spletad nodrezho\u00F9
CLEARSCREEN=skarzha\u00F1skramm|cs
TEXT=testenn
HIDETURTLE=kuzhatbaot|ht|hideme
SHOWTURTLE=diskouezbaot|st|showme
POSITION=lec'hiadur|pos|setpos
HEADING=talbenn|setheading|seth
PAGESIZE=ment ar bajenn
GROUP=picture|pic
# control structures
TO=e
END=Marevezh echui\u00F1
STOP=arsavi\u00F1
REPEAT=arren|forever
REPCOUNT=arren ar gont
BREAK=rannadur
CONTINUE=kenderc'hel
WHILE=e pad ma
FOR=evit
IN=e
IF=mar
OUTPUT=ec'hankad
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=gwir
FALSE=diwir
NOT=ket
AND=ha
OR=pe
INPUT=enanka\u00F1
PRINT=moulla\u00F1
SLEEP=kousket
GLOBAL=hollek
# functions
RANDOM=dargouezhek
INT=kevan
FLOAT=tonna\u00F1
STR=hedad
SQRT=daouvonad
LOG10=log10
SIN=sin
COS=kos
ROUND=ront
ABS=dizave
COUNT=Niver
SET=arventenn
RANGE=lijorenn
LIST=roll
TUPLE=kemalenn
SORTED=rummet
RESUB=is
RESEARCH=klask
REFINDALL=kavout an holl
MIN=izek
MAX=uc'hek
PI=pi|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=e
MM=mm
CM=cm
PT=pt
INCH=meutad|"
# color codes
INVISIBLE=diwelus
BLACK=Du
SILVER=argant
GRAY=loued|grey
WHITE=gwenn
MAROON=gell
RED=ruz
PURPLE=limestra
FUCHSIA=fuchia|magenta
GREEN=gwer
LIME=sitro\u00F1s
OLIVE=olivez
YELLOW=melen
NAVY=glaz mor
BLUE=glas
TEAL=houad
AQUA=dour|cyan
PINK=roz
TOMATO=tomatez
ORANGE=ora\u00F1jez
GOLD=aour
VIOLET=mouk
SKYBLUE=glaz oabl
CHOCOLATE=chokolad
BROWN=liv kistin
# messages
LIBRELOGO=LibreLogo
ERROR=Fazi (gant linenn %s)
ERR_ZERODIVISION=Rannadur dre vann.
ERR_NAME=Unknown name: \u201C%s\u201D.
ERR_ARGUMENTS=%s a geler %s arguzenn (%s roet).
ERR_BLOCK=Fazi (esaouio\u00F9 a vank pe a zo re etre ar c'hrommello\u00F9 ?)
ERR_KEY=Elfenn dianav : %s
ERR_INDEX=Ibil er maez eus al lijorenn.
ERR_STOP=Goulev arsavet :
ERR_MAXRECURSION=aet eo dreist an donder (%d) askiza\u00F1 uc'hek .
ERR_MEMORY=memor re skort.
ERR_NOTAPROGRAM=Ha fellout a ra deoc'h erounit an teul mod testenn-ma\u00F1 ?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=forward|fd
BACKWARD=back|bk
TURNLEFT=left|turnleft|lt
TURNRIGHT=right|turnright|rt
PENUP=penup|pu
PENDOWN=pendown|pd
HOME=home
POINT=point
CIRCLE=circle
ELLIPSE=ellipse
SQUARE=square
RECTANGLE=rectangle
LABEL=label
PENCOLOR=pencolor|pencolour|linecolor|pc
ANY=any
PENWIDTH=pensize|penwidth|linewidth|ps
PENSTYLE=penstyle|linestyle
PENJOINT=penjoint|linejoint
PENCAP=pencap|linecap
NONE=\u0930\u093E\u0935\u092C\u094B \u0928\u0919\u093E
BEVEL=bevel
MITER=miter
ROUNDED=round
SOLID=solid
DASH=dashed
DOTTED=dotted
CLOSE=close
FILL=fill
FILLCOLOR=fillcolor|fillcolour|fc
FILLTRANSPARENCY=filltransparency
PENTRANSPARENCY=pentransparency|linetransparency
FILLSTYLE=fillstyle
FONTCOLOR=fontcolor|textcolor|textcolour
FONTTRANSPARENCY=fonttransparency|texttransparency
FONTHEIGHT=fontsize|textsize|textheight
FONTWEIGHT=fontweight
FONTSTYLE=fontstyle
BOLD=bold
ITALIC=italic
UPRIGHT=upright|normal
NORMAL=normal
FONTFAMILY=fontfamily
CLEARSCREEN=clearscreen|cs
TEXT=\u092B\u0930\u093E\u092F \u092C\u093F\u091C\u093E\u092C
HIDETURTLE=hideturtle|ht|hideme
SHOWTURTLE=showturtle|st|showme
POSITION=position|pos|setpos
HEADING=heading|setheading|seth
PAGESIZE=pagesize
GROUP=picture|pic
# control structures
TO=to
END=\u091C\u094B\u092C\u0928\u093E\u092F
STOP=stop
REPEAT=repeat|forever
REPCOUNT=repcount
BREAK=break
CONTINUE=continue
WHILE=while
FOR=\u0925\u093E\u0916\u093E\u092F
IN=in
IF=if
OUTPUT=output
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=true
FALSE=false
NOT=not
AND=\u0906\u0930\u094B
OR=\u090F\u092C\u093E
INPUT=input
PRINT=print
SLEEP=sleep
GLOBAL=global
# functions
RANDOM=random
INT=int
FLOAT=float
STR=str
SQRT=sqrt
LOG10=log10
SIN=sin
COS=cos
ROUND=round
ABS=abs
COUNT=\u0938\u093E\u0928\u0928\u093E\u092F
SET=set
RANGE=\u0938\u093E\u0930\u093F
LIST=list
TUPLE=tuple
SORTED=\u0925\u093E\u0916\u094B \u0916\u093E\u0932\u093E\u0916\u093E\u0928\u093E\u092F
RESUB=sub
RESEARCH=search
REFINDALL=findall
MIN=min
MAX=max
PI=pi|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=h
MM=mm
CM=cm
PT=pt
INCH=in|"
# color codes
INVISIBLE=invisible
BLACK=black
SILVER=silver
GRAY=gray|grey
WHITE=white
MAROON=maroon
RED=red
PURPLE=purple
FUCHSIA=fuchsia|magenta
GREEN=green
LIME=lime
OLIVE=olive
YELLOW=yellow
NAVY=navy
BLUE=blue
TEAL=teal
AQUA=aqua|cyan
PINK=pink
TOMATO=tomato
ORANGE=orange
GOLD=gold
VIOLET=violet
SKYBLUE=skyblue
CHOCOLATE=chocolate
BROWN=brown
# messages
LIBRELOGO=LibreLogo
ERROR=Error (in line %s)
ERR_ZERODIVISION=\u0932\u093E\u0925\u093F\u0916\u091C\u094B\u0902 \u0930\u093E\u0928\u0928\u093E\u092F.
ERR_NAME=Unknown name: \u201C%s\u201D.
ERR_ARGUMENTS=%s takes %s arguments (%s given).
ERR_BLOCK=Error (extra or missing spaces at brackets?)
ERR_KEY=Unknown element: %s
ERR_INDEX=Index out of range.
ERR_STOP=Program terminated:
ERR_MAXRECURSION=maximum recursion depth (%d) exceeded.
ERR_MEMORY=not enough memory.
ERR_NOTAPROGRAM=Do you want to run this text document?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=naprijed|fd
BACKWARD=nazad|bk
TURNLEFT=lijevo|skrenilijevo|lt
TURNRIGHT=desno|skrenidesno|rt
PENUP=pengore|pu
PENDOWN=pendole|pd
HOME=ku\u0107i
POINT=ta\u010Dka
CIRCLE=krug
ELLIPSE=elipsa
SQUARE=kvadrat
RECTANGLE=pravougao
LABEL=naljepnica
PENCOLOR=bojaolovke|bojaolovke|bojalinije|pc
ANY=bilo koji
PENWIDTH=veli\u010Dinaolovke|\u0161irinaolovke|\u0161irinalinije|ps
PENSTYLE=stilolovke|stillinije
PENJOINT=vezaolovke|vezalinije
PENCAP=pencap|linecap
NONE=ni\u0161ta
BEVEL=kosina
MITER=kosispoj
ROUNDED=okruglo
SOLID=\u010Dvrsto
DASH=isprekidano
DOTTED=ta\u010Dkasto
CLOSE=blizu
FILL=popuni
FILLCOLOR=popuniboju|popuniboju|fc
FILLTRANSPARENCY=filltransparency
PENTRANSPARENCY=pentransparency|linetransparency
FILLSTYLE=stil popunjavanja
FONTCOLOR=bojafonta|bojateksta|bojateksta
FONTTRANSPARENCY=fonttransparency|texttransparency
FONTHEIGHT=veli\u010Dinafonta|veli\u010Dinateksta|visinateksta
FONTWEIGHT=te\u017Einafonta
FONTSTYLE=stilfonta
BOLD=masno
ITALIC=koso
UPRIGHT=goredesno|normalno
NORMAL=obicno
FONTFAMILY=fontfamilija
CLEARSCREEN=o\u010Distiekran|cs
TEXT=tekst
HIDETURTLE=sakrijkornja\u010Du|ht|sakrijmene
SHOWTURTLE=prika\u017Eikornja\u010Du|st|prika\u017Eimene
POSITION=pozicija|pos|postavipos
HEADING=zaglavlje|postavizaglavlje|seth
PAGESIZE=veli\u010Dinastranice
GROUP=slika|pic
# control structures
TO=do
END=kraj
STOP=zaustavi
REPEAT=ponavljaj|zauvijek
REPCOUNT=repbroji
BREAK=isko\u010Di
CONTINUE=nastavak
WHILE=dok
FOR=za
IN=u
IF=ako
OUTPUT=izlaz
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=true
FALSE=false
NOT=ne
AND=i
OR=ili
INPUT=ulaz
PRINT=\u0161tampaj
SLEEP=spavanje
GLOBAL=op\u0161te
# functions
RANDOM=slu\u010Dajno
INT=cijeli broj
FLOAT=realni
STR=str
SQRT=korijen
LOG10=log10
SIN=sin
COS=cos
ROUND=okruglo
ABS=abs
COUNT=mjesta
SET=postavi
RANGE=opseg
LIST=lista
TUPLE=pobrojane
SORTED=sortirano
RESUB=sub
RESEARCH=tra\u017Ei
REFINDALL=nadjisve
MIN=min
MAX=max
PI=pi|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=h
MM=mm
CM=cm
PT=pt
INCH=in|"
# color codes
INVISIBLE=nevidljivo
BLACK=crna
SILVER=srebrena
GRAY=siva|siva
WHITE=bijela
MAROON=kestenjasta
RED=crvena
PURPLE=ljubi\u010Dasta
FUCHSIA=fuchsia|magenta
GREEN=zelena
LIME=lime
OLIVE=maslinasta
YELLOW=\u017Euta
NAVY=mornarska
BLUE=plava
TEAL=grogotovac
AQUA=vodena|cyan
PINK=roza
TOMATO=paradajz
ORANGE=narand\u017Easta
GOLD=zlatna
VIOLET=ljubi\u010Dasta
SKYBLUE=nebeskoplava
CHOCOLATE=\u010Dokolada
BROWN=sme\u0111a
# messages
LIBRELOGO=LibreLogo
ERROR=Gre\u0161ka (u liniji %s)
ERR_ZERODIVISION=Dijeljenje sa nulom.
ERR_NAME=Unknown name: \u201C%s\u201D.
ERR_ARGUMENTS=%s uzima %s argumenata (%s dato).
ERR_BLOCK=Gre\u0161ka (vi\u0161ka ili fali razmaka u ragradama?)
ERR_KEY=Nepoznat element: %s
ERR_INDEX=Indeks van opsega.
ERR_STOP=Program okon\u010Dan:
ERR_MAXRECURSION=maksimalna dubina rekurzija (%d) prema\u0161ena.
ERR_MEMORY=nema dovoljnomemorije.
ERR_NOTAPROGRAM=Da li \u017Eelite pokrenuti ovaj tekstualni dokument?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=avan\u00E7a|endavant|davant|av
BACKWARD=retrocedeix|recula|enrere|re
TURNLEFT=esquerra|giraesquerra|gira.esquerra|ge
TURNRIGHT=dreta|giradreta|gira.dreta|gd
PENUP=aixeca.llapis|al
PENDOWN=baixa.llapis|bl
HOME=inici|centre
POINT=punt
CIRCLE=cercle
ELLIPSE=el\u00B7lipse
SQUARE=quadrat
RECTANGLE=rectangle
LABEL=etiqueta
PENCOLOR=color.llapis|color.l\u00EDnia|cl
ANY=qualsevol
PENWIDTH=mida.llapis|mida.l\u00EDnia|ml
PENSTYLE=estil.llapis|estil.l\u00EDnia|el
PENJOINT=uni\u00F3.llapis|uni\u00F3.l\u00EDnia|ul
PENCAP=tap.llapis|final.l\u00EDnia|extrem.l\u00EDnia
NONE=cap
BEVEL=bisell
MITER=esbiaixa|biaix
ROUNDED=arrodoneix|arrod
SOLID=s\u00F2lid
DASH=tra\u00E7at
DOTTED=puntejat
CLOSE=tanca
FILL=omple|emplena
FILLCOLOR=color.emplenament|ce
FILLTRANSPARENCY=transpar\u00E8ncia.emplenament
PENTRANSPARENCY=llapis.transpar\u00E8ncia|l\u00EDnia.transpar\u00E8ncia
FILLSTYLE=estil.emplenament|ee
FONTCOLOR=color.lletra|color.text
FONTTRANSPARENCY=transpar\u00E8ncia.lletra|transpar\u00E8ncia.text
FONTHEIGHT=mida.lletra|mida.text
FONTWEIGHT=pes.lletra|pl
FONTSTYLE=estil.lletra|el
BOLD=negreta
ITALIC=cursiva|it\u00E0lica
UPRIGHT=vertical|normal
NORMAL=normal
FONTFAMILY=fam\u00EDlia.lletra|fl
CLEARSCREEN=neteja.dibuix|inicia.dibuix|net|id
TEXT=text
HIDETURTLE=amaga.tortuga|oculta.tortuga|at|ot
SHOWTURTLE=mostra.tortuga|mt
POSITION=posici\u00F3|pos|estableix.posici\u00F3
HEADING=canvia.sentit|sentit|heading|setheading|seth
PAGESIZE=mida.p\u00E0gina|mp
GROUP=figura|fig
# control structures
TO=fins.a
END=final|fi
STOP=atura|para
REPEAT=repeteix|rep
REPCOUNT=repeteix.vegades|repv
BREAK=salta|trenca
CONTINUE=continua
WHILE=mentre
FOR=per.a
IN=a|en
IF=si
OUTPUT=sortida
LEFTSTRING=\u201C|\u2018|\u00AB
RIGHTSTRING=\u201D|\u2019|\u00BB
TRUE=cert|veritat
FALSE=fals
NOT=no
AND=i
OR=o
INPUT=entrada
PRINT=imprimeix
SLEEP=dorm|espera
GLOBAL=global
# functions
RANDOM=aleatori
INT=int
FLOAT=float
STR=str
SQRT=arrel
LOG10=log10
SIN=sin
COS=cos
ROUND=arrodoneix|arrod
ABS=abs
COUNT=compte
SET=conjunt
RANGE=interval
LIST=llista
TUPLE=tupla
SORTED=ordenat
RESUB=sub
RESEARCH=cerca
REFINDALL=cerca.tot|troba.tot
MIN=m\u00EDn|min
MAX=m\u00E0x|max
PI=pi|\u03C0
# measurement
DECIMAL=,
DEG=\u00B0
HOUR=h
MM=mm
CM=cm
PT=pt
INCH=in|"
# color codes
INVISIBLE=invisible
BLACK=negre
SILVER=plata|argent
GRAY=gris
WHITE=blanc
MAROON=granat|grana
RED=vermell|roig
PURPLE=porpra|p\u00FArpura
FUCHSIA=f\u00FAcsia|magenta
GREEN=verd
LIME=llima|verd.llima
OLIVE=oliva|verd.oliva
YELLOW=groc
NAVY=blau.mar\u00ED|mar\u00ED
BLUE=blau
TEAL=jade
AQUA=cian
PINK=rosa
TOMATO=tom\u00E0quet|tomata
ORANGE=taronja
GOLD=or|daurat
VIOLET=violat|violeta
SKYBLUE=blau.cel|cel
CHOCOLATE=xocolata|xocolate
BROWN=marr\u00F3
# messages
LIBRELOGO=LibreLogo
ERROR=S'ha produ\u00EFt un error (a la l\u00EDnia %s)
ERR_ZERODIVISION=Divisi\u00F3 per zero.
ERR_NAME=Nom desconegut: \u00AB%s\u00BB.
ERR_ARGUMENTS=%s pren %s arguments (%s donats).
ERR_BLOCK=S'ha produ\u00EFt un error (espais extra o omesos als par\u00E8ntesis?)
ERR_KEY=L'element \u00AB%s\u00BB no \u00E9s conegut.
ERR_INDEX=L'\u00EDndex \u00E9s fora de l'interval.
ERR_STOP=El programa ha acabat:
ERR_MAXRECURSION=s'ha superat la profunditat m\u00E0xima de recursivitat (%d).
ERR_MEMORY=no hi ha prou mem\u00F2ria.
ERR_NOTAPROGRAM=Voleu executar aquest document de text?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=avan\u00E7a|avant|davant|av
BACKWARD=retrocedeix|recula|arrere|re
TURNLEFT=esquerra|giraesquerra|gira.esquerra|ge
TURNRIGHT=dreta|giradreta|gira.dreta|gd
PENUP=al\u00E7a.llapis|al
PENDOWN=baixa.llapis|bl
HOME=inici|centre
POINT=punt
CIRCLE=cercle
ELLIPSE=el\u00B7lipse
SQUARE=quadrat
RECTANGLE=rectangle
LABEL=etiqueta
PENCOLOR=color.llapis|color.l\u00EDnia|cl
ANY=qualsevol
PENWIDTH=mida.llapis|mida.l\u00EDnia|ml
PENSTYLE=estil.llapis|estil.l\u00EDnia|el
PENJOINT=uni\u00F3.llapis|uni\u00F3.l\u00EDnia|ul
PENCAP=tap.llapis|final.l\u00EDnia|extrem.l\u00EDnia
NONE=cap
BEVEL=bisell
MITER=esbiaixa|biaix
ROUNDED=arredoneix|arred
SOLID=s\u00F2lid
DASH=tra\u00E7at
DOTTED=puntejat
CLOSE=tanca
FILL=omple|ompli
FILLCOLOR=color.emplenament|ce
FILLTRANSPARENCY=transpar\u00E8ncia.emplenament
PENTRANSPARENCY=llapis.transpar\u00E8ncia|l\u00EDnia.transpar\u00E8ncia
FILLSTYLE=estil.emplenament|ee
FONTCOLOR=color.lletra|color.text
FONTTRANSPARENCY=transpar\u00E8ncia.lletra|transpar\u00E8ncia.text
FONTHEIGHT=mida.lletra|mida.text
FONTWEIGHT=pes.lletra|pl
FONTSTYLE=estil.lletra|el
BOLD=negreta
ITALIC=cursiva|it\u00E0lica
UPRIGHT=vertical|normal
NORMAL=normal
FONTFAMILY=fam\u00EDlia.lletra|fl
CLEARSCREEN=neteja.dibuix|inicia.dibuix|net|id
TEXT=text
HIDETURTLE=amaga.tortuga|oculta.tortuga|at|ot
SHOWTURTLE=mostra.tortuga|mt
POSITION=posici\u00F3|pos|estableix.posici\u00F3
HEADING=canvia.sentit|sentit
PAGESIZE=mida.p\u00E0gina|mp
GROUP=figura|fig
# control structures
TO=fins.a
END=final|fi
STOP=para
REPEAT=repeteix|rep
REPCOUNT=repeteix.vegades|repv
BREAK=salta|trenca
CONTINUE=continua
WHILE=mentre
FOR=per.a
IN=a|en
IF=si
OUTPUT=eixida
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=cert|veritat
FALSE=fals
NOT=no
AND=i
OR=o
INPUT=entrada
PRINT=imprimeix
SLEEP=dorm|espera
GLOBAL=global
# functions
RANDOM=aleatori
INT=int
FLOAT=float
STR=str
SQRT=arrel
LOG10=log10
SIN=sin
COS=cos
ROUND=arredoneix|arred
ABS=abs
COUNT=compte
SET=conjunt
RANGE=interval
LIST=llista
TUPLE=tupla
SORTED=ordenat
RESUB=sub
RESEARCH=busca
REFINDALL=busca.tot|troba.tot
MIN=m\u00EDn|min
MAX=m\u00E0x|max
PI=pi|\u03C0
# measurement
DECIMAL=,
DEG=\u00B0
HOUR=h
MM=mm
CM=cm
PT=pt
INCH=in|"
# color codes
INVISIBLE=invisible
BLACK=negre
SILVER=plata|argent
GRAY=gris
WHITE=blanc
MAROON=granat|grana
RED=roig
PURPLE=porpra|p\u00FArpura
FUCHSIA=f\u00FAcsia|magenta
GREEN=verd
LIME=llima|verd.llima
OLIVE=oliva|verd.oliva
YELLOW=groc
NAVY=blau.mar\u00ED|mar\u00ED
BLUE=blau
TEAL=jade
AQUA=cian
PINK=rosa
TOMATO=tomata|tomaca
ORANGE=taronja
GOLD=or|daurat
VIOLET=violat|violeta
SKYBLUE=blau.cel|cel
CHOCOLATE=xocolata|xocolate
BROWN=marr\u00F3
# messages
LIBRELOGO=LibreLogo
ERROR=S'ha produ\u00EFt un error (a la l\u00EDnia %s)
ERR_ZERODIVISION=Divisi\u00F3 per zero.
ERR_NAME=Nom desconegut: \u00AB%s\u00BB.
ERR_ARGUMENTS=%s pren %s arguments (%s donats).
ERR_BLOCK=S'ha produ\u00EFt un error (espais extra o omesos als par\u00E8ntesis?)
ERR_KEY=L'element \u00AB%s\u00BB no \u00E9s conegut.
ERR_INDEX=L'\u00EDndex \u00E9s fora de l'interval.
ERR_STOP=El programa ha acabat:
ERR_MAXRECURSION=s'ha superat la profunditat m\u00E0xima de recursivitat (%d).
ERR_MEMORY=no hi ha prou mem\u00F2ria.
ERR_NOTAPROGRAM=Voleu executar aquest document de text?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=forward|fd
BACKWARD=back|bk
TURNLEFT=left|turnleft|lt
TURNRIGHT=right|turnright|rt
PENUP=penup|pu
PENDOWN=pendown|pd
HOME=\u0645\u0627\u06B5\u06D5\u0648\u06D5
POINT=\u062E\u0627\u06B5
CIRCLE=\u0628\u0627\u0632\u0646\u06D5
ELLIPSE=\u0647\u06CE\u0644\u06A9\u06D5\u06CC\u06CC
SQUARE=\u0686\u0648\u0627\u0631\u06AF\u06C6\u0634\u06D5
RECTANGLE=\u0644\u0627\u06A9\u06CE\u0634\u06D5
LABEL=\u067E\u06CE\u0646\u0627\u0633\u06A9\u0631\u0627\u0648
PENCOLOR=\u202Bpencolor|pencolour|linecolor|pc
ANY=\u0647\u06D5\u0631\u06CC\u06D5\u06A9\u06CE\u06A9
PENWIDTH=\u202Bpensize|penwidth|linewidth|ps
PENSTYLE=penstyle|linestyle
PENJOINT=penjoint|linejoint
PENCAP=pencap|linecap
NONE=\u0647\u06CC\u0686
BEVEL=bevel
MITER=miter
ROUNDED=\u062E\u0648\u0644\u0627\u0648\u06D5
SOLID=\u0695\u06D5\u0642
DASH=\u0647\u06CE\u06B5\u06CC \u067E\u0686\u0695 \u067E\u0686\u0631
DOTTED=\u062E\u0627\u06B5\u06A9\u0631\u0627\u0648
CLOSE=\u062F\u0627\u062E\u0633\u062A\u0646
FILL=\u067E\u0695\u06CC
FILLCOLOR=fillcolor|fillcolour|fc
FILLTRANSPARENCY=filltransparency
PENTRANSPARENCY=pentransparency|linetransparency
FILLSTYLE=fillstyle
FONTCOLOR=fontcolor|textcolor|textcolour
FONTTRANSPARENCY=fonttransparency|texttransparency
FONTHEIGHT=fontsize|textsize|textheight
FONTWEIGHT=\u067E\u0627\u0646\u06CC \u062C\u06C6\u0631\u06D5\u067E\u06CC\u062A
FONTSTYLE=\u0634\u06CE\u0648\u0627\u0632\u06CC \u062C\u06C6\u0631\u06D5\u067E\u06CC\u062A
BOLD=\u0642\u06D5\u06B5\u06D5\u0648
ITALIC=\u0644\u0627\u0631
UPRIGHT=upright|normal
NORMAL=\u0626\u0627\u0633\u0627\u06CC\u06CC
FONTFAMILY=\u062E\u06CE\u0632\u0627\u0646\u06CC \u062C\u06C6\u0631\u06D5\u067E\u06CC\u062A
CLEARSCREEN=clearscreen|cs
TEXT=\u062F\u06D5\u0642
HIDETURTLE=hideturtle|ht|hideme
SHOWTURTLE=showturtle|st|showme
POSITION=position|pos|setpos
HEADING=heading|setheading|seth
PAGESIZE=\u0642\u06D5\u0628\u0627\u0631\u06D5\u06CC \u067E\u06D5\u0695\u06D5
GROUP=picture|pic
# control structures
TO=\u202Bto
END=\u202Bend
STOP=\u202Bstop
REPEAT=\u202Brepeat|forever
REPCOUNT=\u202Bbreak
BREAK=\u202Bbreak
CONTINUE=\u202Bcontinue
WHILE=\u202Bwhile
FOR=\u202Bfor
IN=\u202Bin
IF=\u202Bif
OUTPUT=\u062F\u06D5\u0631\u062E\u0633\u062A\u06D5
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=\u202Btrue
FALSE=\u202Bfalse
NOT=\u202Bnot
AND=\u202Band
OR=\u202Bor
INPUT=\u062A\u06CE\u062E\u0633\u062A\u06D5
PRINT=\u0686\u0627\u067E\u06A9\u0631\u062F\u0646
SLEEP=\u062E\u06D5\u0648\u062A\u0646
GLOBAL=\u062C\u06CC\u0647\u0627\u0646\u06CC\u06CC
# functions
RANDOM=\u0647\u06D5\u0695\u06D5\u0645\u06D5\u06A9\u06CC
INT=int
FLOAT=float
STR=\u202Bstr
SQRT=\u0695\u06D5\u06AF
LOG10=\u202Blog10
SIN=\u0633\u0627\u06CC\u0646
COS=\u06A9\u06C6\u0633
ROUND=\u062E\u0648\u0644\u0627\u0648\u06D5
ABS=\u202Babs
COUNT=\u0698\u0645\u0627\u0631\u062F\u0646
SET=\u0633\u06CE\u062A
RANGE=\u0628\u0648\u0627\u0631
LIST=\u0644\u06CC\u0633\u062A\u06D5
TUPLE=tuple
SORTED=\u0631\u06CE\u06A9\u062E\u0631\u0627\u0648
RESUB=sub
RESEARCH=\u06AF\u06D5\u0695\u0627\u0646
REFINDALL=findall
MIN=\u0646\u0632\u0645\u062A\u0631\u06CC\u0646
MAX=\u0628\u06D5\u0631\u0632\u062A\u0631\u06CC\u0646
PI=\u202Bpi|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=\u06A9
MM=\u0645\u0644\u0645
CM=\u0633\u0645
PT=pt
INCH=in|"
# color codes
INVISIBLE=\u0646\u06D5\u0628\u06CC\u0646\u0631\u0627\u0648
BLACK=\u0695\u06D5\u0634
SILVER=\u0632\u06CC\u0648\u06CC
GRAY=\u062E\u06C6\u06B5\u06D5\u0645\u06CE\u0634\u06CC
WHITE=\u0633\u067E\u06CC
MAROON=\u0645\u0627\u0631\u06C6\u0646\u06CC\u06CC
RED=\u0633\u0648\u0631
PURPLE=\u0645\u06C6\u0631
FUCHSIA=\u0633\u0648\u0631\u06CC \u0626\u06D5\u0631\u062E\u06D5\u0648\u0627\u0646\u06CC
GREEN=\u0633\u06D5\u0648\u0632
LIME=lime
OLIVE=\u0632\u06D5\u06CC\u062A\u0648\u0648\u0646\u06CC
YELLOW=\u0632\u06D5\u0631\u062F
NAVY=navy
BLUE=\u0634\u06CC\u0646
TEAL=teal
AQUA=aqua|cyan
PINK=\u067E\u06D5\u0645\u06D5\u06CC\u06CC
TOMATO=\u062A\u06D5\u0645\u0627\u062A\u06D5\u06CC\u06CC
ORANGE=\u067E\u0631\u062A\u06D5\u0642\u0627\u06B5\u06CC
GOLD=\u0626\u0627\u06B5\u062A\u0648\u0648\u0646\u06CC
VIOLET=\u0648\u06D5\u0646\u06D5\u0648\u0634\u06D5\u06CC\u06CC
SKYBLUE=\u0634\u06CC\u0646\u06CC \u0626\u0627\u0633\u0645\u0627\u0646\u06CC
CHOCOLATE=\u0686\u0648\u06A9\u0644\u06CE\u062A\u06CC
BROWN=\u0642\u0627\u0648\u06D5\u06CC\u06CC
# messages
LIBRELOGO=\u202BLibreLogo
ERROR=Error (in line %s)
ERR_ZERODIVISION=\u062F\u0627\u0628\u06D5\u0634\u06A9\u0631\u062F\u0646 \u0628\u06D5\u0633\u06D5\u0631 \u0633\u0641\u0631\u062F\u0627.
ERR_NAME=\u0646\u0627\u0648\u06CC \u0646\u06D5\u0646\u0627\u0633\u0631\u0627\u0648: %s
ERR_ARGUMENTS=%s takes %s arguments (%s given).
ERR_BLOCK=Error (extra or missing spaces at brackets?)
ERR_KEY=\u062A\u0648\u062E\u0645\u06CC \u0646\u06D5\u0646\u0627\u0633\u0631\u0627\u0648: %s
ERR_INDEX=\u067E\u06CE\u0695\u0633\u062A \u0644\u06D5 \u062F\u06D5\u0631\u06D5\u0648\u06D5\u06CC \u0628\u0648\u0627\u0631\u06D5\u06A9\u06D5\u06CC\u06D5.
ERR_STOP=\u0628\u06D5\u0631\u0646\u0627\u0645\u06D5 \u062F\u0627\u062E\u0631\u0627:
ERR_MAXRECURSION=maximum recursion depth (%d) exceeded.
ERR_MEMORY=\u0628\u06CC\u0631\u06AF\u06D5\u06CC \u067E\u06CE\u0648\u06CC\u0633\u062A \u0646\u06CC\u06D5.
ERR_NOTAPROGRAM=\u062F\u06D5\u062A\u06D5\u0648\u06CE\u062A \u062F\u06D5\u0642\u06D5\u06A9\u0627\u0646\u06CC \u0646\u0627\u0648 \u0626\u06D5\u0645 \u0628\u06D5\u06B5\u06AF\u06D5\u0646\u0627\u0645\u06D5\u06CC\u06D5 \u06A9\u0627\u0631\u067E\u06CE\u0628\u06A9\u06D5\u06CC\u062A\u061F

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=dop\u0159edu|do
BACKWARD=vzad|vz
TURNLEFT=vlevo|vl
TURNRIGHT=vpravo|vp
PENUP=peronahoru|pn
PENDOWN=perodol\u016F|pd
HOME=dom\u016F
POINT=bod|punt\u00EDk
CIRCLE=kruh
ELLIPSE=elipsa
SQUARE=\u010Dtverec
RECTANGLE=obd\u00E9ln\u00EDk
LABEL=text
PENCOLOR=barvapera|barva\u010D\u00E1ry|bp
ANY=libovoln\u011B|lib
PENWIDTH=tlou\u0161\u0165kapera|tlou\u0161\u0165ka\u010D\u00E1ry|tp
PENSTYLE=druhpera|druh\u010D\u00E1ry
PENJOINT=napojen\u00EDpera|napojen\u00ED\u010D\u00E1ry
PENCAP=zakon\u010Den\u00EDpera|zakon\u010Den\u00ED\u010D\u00E1ry
NONE=\u017E\u00E1dn\u00E9
BEVEL=\u0161ikm\u00E9
MITER=ostr\u00E9
ROUNDED=obl\u00E9
SOLID=pln\u00E1
DASH=\u010D\u00E1rkovan\u00E1
DOTTED=te\u010Dkovan\u00E1
CLOSE=uzav\u0159i
FILL=vypl\u0148
FILLCOLOR=barvav\u00FDpln\u011B|bv
FILLTRANSPARENCY=pr\u016Fhlednostv\u00FDpln\u011B|pr\u016Fhlv\u00FDpln\u011B
PENTRANSPARENCY=pr\u016Fhlednostpera|pr\u016Fhlednost\u010D\u00E1ry|pr\u016Fhlpera|pr\u016Fhl\u010D\u00E1ry
FILLSTYLE=druhv\u00FDpln\u011B
FONTCOLOR=barvap\u00EDsma|barvatextu
FONTTRANSPARENCY=pr\u016Fhlednostp\u00EDsma|pr\u016Fhlp\u00EDsma|pr\u016Fhlednosttextu|pr\u016Fhltextu
FONTHEIGHT=velikostp\u00EDsma|velikosttextu
FONTWEIGHT=tlou\u0161\u0165kap\u00EDsma
FONTSTYLE=stylp\u00EDsma
BOLD=tu\u010Dn\u00E9
ITALIC=kurz\u00EDva
UPRIGHT=norm\u00E1ln\u00ED
NORMAL=norm\u00E1ln\u00ED
FONTFAMILY=druhp\u00EDsma
CLEARSCREEN=sma\u017Eobrazovku|so
TEXT=popisek
HIDETURTLE=skryj\u017Eelvu|skryj|s\u017E
SHOWTURTLE=uka\u017E\u017Eelvu|uka\u017E|u\u017E
POSITION=pozice|poz|nastavpoz
HEADING=sm\u011Br|nastavsm\u011Br
PAGESIZE=velikoststr\u00E1nky
GROUP=obr\u00E1zek|obr
# control structures
TO=p\u0159\u00EDkaz
END=konec
STOP=zastav
REPEAT=opakuj|po\u0159\u00E1d
REPCOUNT=po\u010D\u00EDtadlo|po\u010D
BREAK=ukon\u010Di
CONTINUE=pokra\u010Duj
WHILE=dokud
FOR=pro
IN=z
IF=kdy\u017E
OUTPUT=v\u00FDsledek
LEFTSTRING=\u201E|"
RIGHTSTRING=\u201C|"
TRUE=pravda
FALSE=nepravda
NOT=nen\u00ED
AND=az\u00E1rove\u0148|az
OR=nebo
INPUT=vstup
PRINT=pi\u0161
SLEEP=\u010Dekej
GLOBAL=glob\u00E1ln\u00ED
# functions
RANDOM=n\u00E1hodn\u00E9
INT=cel\u00E9
FLOAT=desetinn\u00E9
STR=\u0159et\u011Bzec
SQRT=odmocnina
LOG10=log10
SIN=sin
COS=cos
ROUND=obl\u00E9
ABS=absolutn\u00ED
COUNT=po\u010Det
SET=mno\u017Eina
RANGE=rozsah
LIST=seznam
TUPLE=ntice
SORTED=se\u0159azeno
RESUB=nahra\u010F
RESEARCH=hledej
REFINDALL=najdiv\u0161e
MIN=min
MAX=max
PI=pi|\u03C0
# measurement
DECIMAL=,
DEG=\u00B0
HOUR=h
MM=mm
CM=cm
PT=pt
INCH=in|"
# color codes
INVISIBLE=neviditeln\u00E1
BLACK=\u010Dern\u00E9
SILVER=st\u0159\u00EDbrn\u00E1
GRAY=\u0161ed\u00E1
WHITE=b\u00EDl\u00E1
MAROON=ka\u0161tanov\u00E1
RED=\u010Derven\u00E1
PURPLE=purpurov\u00E1
FUCHSIA=magenta
GREEN=zelen\u00E1
LIME=\u017Elutozelen\u00E1
OLIVE=olivov\u00E1
YELLOW=\u017Elut\u00E1
NAVY=tmavomodr\u00E1
BLUE=modr\u00E1
TEAL=zelenomodr\u00E1
AQUA=azurov\u00E1
PINK=r\u016F\u017Eov\u00E1
TOMATO=cihlov\u00E1
ORANGE=oran\u017Eov\u00E1
GOLD=zlat\u00E1
VIOLET=fialov\u00E1
SKYBLUE=bled\u011Bmodr\u00E1
CHOCOLATE=\u010Dokol\u00E1dov\u00E1
BROWN=hn\u011Bd\u00E1
# messages
LIBRELOGO=LibreLogo
ERROR=Chyba (na \u0159\u00E1dku %s)
ERR_ZERODIVISION=D\u011Blen\u00ED nulou.
ERR_NAME=Nezn\u00E1m\u00FD n\u00E1zev: \u201E%s\u201C.
ERR_ARGUMENTS=%s vy\u017Eaduje %s argument\u016F (p\u0159ed\u00E1no %s).
ERR_BLOCK=Chyba (p\u0159eb\u00FDvaj\u00EDc\u00ED nebo chyb\u011Bj\u00EDc\u00ED mezery u z\u00E1vorek?)
ERR_KEY=Nezn\u00E1m\u00FD prvek: %s
ERR_INDEX=Index mimo rozsah.
ERR_STOP=Program ukon\u010Den:
ERR_MAXRECURSION=p\u0159ekro\u010Dena maxim\u00E1ln\u00ED hloubka rekurze (%d).
ERR_MEMORY=nedostatek pam\u011Bti.
ERR_NOTAPROGRAM=P\u0159ejete si spustit tento textov\u00FD dokument?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=ymlaen|fd
BACKWARD=back|bk
TURNLEFT=left|turnleft|lt
TURNRIGHT=right|turnright|rt
PENUP=penup|pu
PENDOWN=pendown|pd
HOME=cartref
POINT=pwynt
CIRCLE=cylch
ELLIPSE=elips
SQUARE=sgw\u00E2r
RECTANGLE=petryal
LABEL=label
PENCOLOR=pencolor|pencolour|linecolor|pc
ANY=unrhyw un
PENWIDTH=pensize|penwidth|linewidth|ps
PENSTYLE=penstyle|linestyle
PENJOINT=penjoint|linejoint
PENCAP=pencap|linecap
NONE=dim
BEVEL=befel
MITER=meitr
ROUNDED=crwn
SOLID=solet
DASH=dashedig
DOTTED=dotiog
CLOSE=cau
FILL=llanw
FILLCOLOR=fillcolor|fillcolour|fc
FILLTRANSPARENCY=filltransparency
PENTRANSPARENCY=pentransparency|linetransparency
FILLSTYLE=fillstyle
FONTCOLOR=fontcolor|textcolor|textcolour
FONTTRANSPARENCY=fonttransparency|texttransparency
FONTHEIGHT=fontsize|textsize|textheight
FONTWEIGHT=pwysau ffont
FONTSTYLE=fontstyle
BOLD=trwm
ITALIC=italig
UPRIGHT=upright|normal
NORMAL=normal
FONTFAMILY=fontfamily
CLEARSCREEN=clearscreen|cs
TEXT=testun
HIDETURTLE=hideturtle|ht|hideme
SHOWTURTLE=showturtle|st|showme
POSITION=position|pos|setpos
HEADING=heading|setheading|seth
PAGESIZE=pagesize
GROUP=picture|pic
# control structures
TO=to
END=diwedd
STOP=atal
REPEAT=repeat|forever
REPCOUNT=repcount
BREAK=toriad
CONTINUE=parhau
WHILE=while
FOR=ar gyfer
IN=mod
IF=if
OUTPUT=allbwn
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=gwir
FALSE=ffug
NOT=not
AND=a
OR=neu
INPUT=mewnbwn
PRINT=argraffu
SLEEP=cysgu
GLOBAL=byd eang
# functions
RANDOM=ar hap
INT=int
FLOAT=arnofio
STR=str
SQRT=sqrt
LOG10=log10
SIN=sin
COS=cos
ROUND=crwn
ABS=abs
COUNT=cyfrif
SET=set
RANGE=ystod
LIST=rhestr
TUPLE=tuple
SORTED=trefnwyd
RESUB=sub
RESEARCH=chwilio
REFINDALL=findall
MIN=mun
MAX=uchaf
PI=pi|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=h
MM=mm
CM=cm
PT=pt
INCH=in|"
# color codes
INVISIBLE=anweledig
BLACK=du
SILVER=arian
GRAY=gray|grey
WHITE=gwyn
MAROON=mar\u0175n
RED=coch
PURPLE=porffor
FUCHSIA=fuchsia|magenta
GREEN=green
LIME=leim
OLIVE=olewydden
YELLOW=melyn
NAVY=glas y llynges
BLUE=glas
TEAL=teal
AQUA=aqua|cyan
PINK=pinc
TOMATO=tomato
ORANGE=oren
GOLD=aur
VIOLET=fioled
SKYBLUE=skyblue
CHOCOLATE=siocled
BROWN=brown
# messages
LIBRELOGO=LibreLogo
ERROR=Gwall (yn llinell: %s)
ERR_ZERODIVISION=Rhannu gyda sero.
ERR_NAME=Enw anhysbys: \u201C%s\u201D.
ERR_ARGUMENTS=Mae %s yn cymryd %s ymresymiad (Derbyn %s ).
ERR_BLOCK=Gwall (bylchau ychwanegol neu goll wrth y cromfachau?)
ERR_KEY=Elfen anhysbys: %s
ERR_INDEX=Mynegai tu allan o'r ystod.
ERR_STOP=Rhaglen wedi dod i ben:
ERR_MAXRECURSION=tu hwnt i'r uchafswm dychweliad dyfnder (%d).
ERR_MEMORY=dim digon o gof.
ERR_NOTAPROGRAM=Hoffech chi redeg y ddogfen testun hon?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=forward|fd
BACKWARD=back|bk
TURNLEFT=left|turnleft|lt
TURNRIGHT=right|turnright|rt
PENUP=penup|pu
PENDOWN=pendown|pd
HOME=home
POINT=point
CIRCLE=circle
ELLIPSE=ellipse
SQUARE=square
RECTANGLE=rectangle
LABEL=label
PENCOLOR=pencolor|pencolour|linecolor|pc
ANY=any
PENWIDTH=pensize|penwidth|linewidth|ps
PENSTYLE=penstyle|linestyle
PENJOINT=penjoint|linejoint
PENCAP=pencap|linecap
NONE=none
BEVEL=bevel
MITER=miter
ROUNDED=round
SOLID=solid
DASH=dashed
DOTTED=dotted
CLOSE=close
FILL=fill
FILLCOLOR=fillcolor|fillcolour|fc
FILLTRANSPARENCY=filltransparency
PENTRANSPARENCY=pentransparency|linetransparency
FILLSTYLE=fillstyle
FONTCOLOR=fontcolor|textcolor|textcolour
FONTTRANSPARENCY=skrifttransparens|teksttransparens
FONTHEIGHT=fontsize|textsize|textheight
FONTWEIGHT=fontweight
FONTSTYLE=fontstyle
BOLD=bold
ITALIC=italic
UPRIGHT=upright|normal
NORMAL=normal
FONTFAMILY=fontfamily
CLEARSCREEN=clearscreen|cs
TEXT=text
HIDETURTLE=hideturtle|ht|hideme
SHOWTURTLE=showturtle|st|showme
POSITION=position|pos|setpos
HEADING=heading|setheading|seth
PAGESIZE=pagesize
GROUP=picture|pic
# control structures
TO=to
END=end
STOP=stop
REPEAT=repeat|forever
REPCOUNT=repcount
BREAK=break
CONTINUE=continue
WHILE=while
FOR=for
IN=in
IF=if
OUTPUT=output
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=true
FALSE=false
NOT=not
AND=and
OR=or
INPUT=input
PRINT=print
SLEEP=sleep
GLOBAL=global
# functions
RANDOM=random
INT=int
FLOAT=float
STR=str
SQRT=sqrt
LOG10=log10
SIN=sin
COS=cos
ROUND=round
ABS=abs
COUNT=count
SET=set
RANGE=range
LIST=list
TUPLE=tuple
SORTED=sorted
RESUB=sub
RESEARCH=search
REFINDALL=findall
MIN=min
MAX=max
PI=pi|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=h
MM=mm
CM=cm
PT=pt
INCH=in|"
# color codes
INVISIBLE=invisible
BLACK=black
SILVER=silver
GRAY=gray|grey
WHITE=white
MAROON=maroon
RED=red
PURPLE=purple
FUCHSIA=fuchsia|magenta
GREEN=green
LIME=lime
OLIVE=olive
YELLOW=yellow
NAVY=navy
BLUE=blue
TEAL=teal
AQUA=aqua|cyan
PINK=pink
TOMATO=tomato
ORANGE=orange
GOLD=gold
VIOLET=violet
SKYBLUE=skyblue
CHOCOLATE=chocolate
BROWN=bbrown
# messages
LIBRELOGO=LibreLogo
ERROR=Fejl (i linje %s)
ERR_ZERODIVISION=Division med nul.
ERR_NAME=Ukendt navn: \u201C%s\u201D.
ERR_ARGUMENTS=%s tager %s argumenter (%s givet).
ERR_BLOCK=Fejl (ekstra eller manglende mellemrum ved kantede parenteser?)
ERR_KEY=Ukendt element: %s
ERR_INDEX=Indeks uden for tilladt omr\u00E5de.
ERR_STOP=Programmet afbrudt:
ERR_MAXRECURSION=maksimale genneml\u00F8b (%d) blev overskredet.
ERR_MEMORY=ikke nok hukommelse
ERR_NOTAPROGRAM=\u00D8nsker du at k\u00F8re dette tekstdokument?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=vor|vr
BACKWARD=zur\u00FCck|zk
TURNLEFT=links|li
TURNRIGHT=rechts|re
PENUP=fliegen
PENDOWN=laufen
HOME=anfang
POINT=punkt
CIRCLE=kreis
ELLIPSE=ellipse
SQUARE=quadrat
RECTANGLE=rechteck
LABEL=schreibe
PENCOLOR=stiftfarbe|linienfarbe|sf|lf
ANY=beliebig|bel
PENWIDTH=stiftbreite|linienbreite|sb|lb
PENSTYLE=stiftstil|linienstil|ss|ls
PENJOINT=stift\u00FCbergang|linien\u00FCbergang|s\u00FC|l\u00FC
PENCAP=stiftende|linienende|se|le
NONE=kein
BEVEL=schr\u00E4g
MITER=gehrung
ROUNDED=rund
SOLID=voll
DASH=gestrichelt
DOTTED=gepunktet
CLOSE=schliessen|schlie\u00DFen
FILL=f\u00FCllen
FILLCOLOR=f\u00FCllfarbe|ff
FILLTRANSPARENCY=f\u00FClltransparenz|ft
PENTRANSPARENCY=stifttransparenz|linientransparenz|st|lt
FILLSTYLE=f\u00FCllstil|fs
FONTCOLOR=schriftfarbe|textfarbe|schf|tf
FONTTRANSPARENCY=schrifttransparenz|texttransparenz
FONTHEIGHT=schriftgr\u00F6sse|schriftgr\u00F6\u00DFe|textgr\u00F6sse|textgr\u00F6\u00DFe|schgr|tgr
FONTWEIGHT=schriftgewicht|schgw
FONTSTYLE=schriftstil|schs
BOLD=fett
ITALIC=kursiv
UPRIGHT=normal
NORMAL=normal
FONTFAMILY=schriftart|scha
CLEARSCREEN=s\u00E4ubern
TEXT=text
HIDETURTLE=verbergen
SHOWTURTLE=zeigen
POSITION=position|pos
HEADING=richtung|ri
PAGESIZE=seite
GROUP=bild
# control structures
TO=zu|als
END=ende
STOP=stopp
REPEAT=wiederhole|wdh
REPCOUNT=z\u00E4hler
BREAK=abbruch
CONTINUE=weiter
WHILE=solange
FOR=f\u00FCr
IN=in
IF=wenn
OUTPUT=r\u00FCckgabe
LEFTSTRING=\u201E|\u201A|"|'
RIGHTSTRING=\u201C|\u2018|"|'
TRUE=wahr
FALSE=falsch
NOT=nicht
AND=und
OR=oder
INPUT=eingabe
PRINT=ausgabe
SLEEP=warte
GLOBAL=global
# functions
RANDOM=zuf\u00E4llig
INT=ganz
FLOAT=dezimal
STR=zeichen
SQRT=wurzel
LOG10=log10
SIN=sin
COS=cos
ROUND=runde
ABS=betrag
COUNT=z\u00E4hle
SET=menge
RANGE=folge
LIST=liste
TUPLE=tupel
SORTED=sortiert
RESUB=ersetzt
RESEARCH=suche
REFINDALL=findealle
MIN=min
MAX=max
PI=pi|\u03C0
# measurement
DECIMAL=,
DEG=\u00B0
HOUR=h
MM=mm
CM=cm
PT=pt
INCH=in|"
# color codes
INVISIBLE=ohne
BLACK=schwarz
SILVER=silber
GRAY=grau
WHITE=wei\u00DF
MAROON=rotbraun
RED=rot
PURPLE=lila
FUCHSIA=magenta
GREEN=gr\u00FCn
LIME=hellgr\u00FCn
OLIVE=dunkelgr\u00FCn
YELLOW=gelb
NAVY=dunkelblau
BLUE=blau
TEAL=blaugr\u00FCn
AQUA=t\u00FCrkis|cyan
PINK=rosa
TOMATO=dunkelrot
ORANGE=orange
GOLD=gold
VIOLET=violett
SKYBLUE=hellblau
CHOCOLATE=dunkelbraun
BROWN=braun
# messages
LIBRELOGO=LibreLogo
ERROR=Fehler (in Zeile %s)
ERR_ZERODIVISION=Division durch Null.
ERR_NAME=Unbekannter Name: \u201E%s\u201C.
ERR_ARGUMENTS=%s ben\u00F6tigt %s Argumente (%s angegeben).
ERR_BLOCK=Fehler (zus\u00E4tzliche oder fehlende Leerstelle bei Klammern?)
ERR_KEY=Unbekanntes Element: %s
ERR_INDEX=Index au\u00DFerhalb des Bereichs.
ERR_STOP=Programm beendet:
ERR_MAXRECURSION=Maximale Rekursionstiefe (%d) erreicht.
ERR_MEMORY=Nicht gen\u00FCgend Arbeitsspeicher.
ERR_NOTAPROGRAM=M\u00F6chten Sie dieses Textdokument ausf\u00FChren?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=forward|fd
BACKWARD=back|bk
TURNLEFT=left|turnleft|lt
TURNRIGHT=right|turnright|rt
PENUP=penup|pu
PENDOWN=pendown|pd
HOME=\u0918\u0930
POINT=point
CIRCLE=circle
ELLIPSE=ellipse
SQUARE=square
RECTANGLE=rectangle
LABEL=\u0932\u0947\u092C\u0932
PENCOLOR=pencolor|pencolour|linecolor|pc
ANY=\u0915\u094B\u0908 \u092C\u0940
PENWIDTH=pensize|penwidth|linewidth|ps
PENSTYLE=penstyle|linestyle
PENJOINT=penjoint|linejoint
PENCAP=pencap|linecap
NONE=\u0915\u094B\u0908 \u0928\u0947\u0908\u0902
BEVEL=bevel
MITER=miter
ROUNDED=round
SOLID=solid
DASH=dashed
DOTTED=\u092C\u093F\u0902\u0926\u0940\u0926\u093E\u0930
CLOSE=close
FILL=\u092D\u0930\u093E\u0908
FILLCOLOR=fillcolor|fillcolour|fc
FILLTRANSPARENCY=filltransparency
PENTRANSPARENCY=pentransparency|linetransparency
FILLSTYLE=fillstyle
FONTCOLOR=fontcolor|textcolor|textcolour
FONTTRANSPARENCY=fonttransparency|texttransparency
FONTHEIGHT=fontsize|textsize|textheight
FONTWEIGHT=fontweight
FONTSTYLE=fontstyle
BOLD=bold
ITALIC=\u0907\u091F\u0948\u0932\u093F\u0915
UPRIGHT=upright|normal
NORMAL=\u0906\u092E
FONTFAMILY=fontfamily
CLEARSCREEN=clearscreen|cs
TEXT=\u0907\u092C\u093E\u0930\u0924
HIDETURTLE=hideturtle|ht|hideme
SHOWTURTLE=showturtle|st|showme
POSITION=position|pos|setpos
HEADING=heading|setheading|seth
PAGESIZE=pagesize
GROUP=picture|pic
# control structures
TO=to
END=\u0905\u0902\u0924
STOP=\u0930\u094B\u0915\u094B
REPEAT=repeat|forever
REPCOUNT=repcount
BREAK=break
CONTINUE=continue
WHILE=while
FOR=\u0932\u0947\u0908
IN=\u0907\u0902
IF=IF
OUTPUT=output
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=true
FALSE=false
NOT=NOT
AND=and
OR=\u091C\u093E\u0902
INPUT=\u0907\u0928\u092A\u0941\u091F
PRINT=print
SLEEP=sleep
GLOBAL=global
# functions
RANDOM=random
INT=INT
FLOAT=float
STR=str
SQRT=SQRT
LOG10=log10
SIN=SIN
COS=COS
ROUND=round
ABS=abs
COUNT=\u0917\u093F\u0928\u0924\u0930\u0940
SET=\u0938\u0948\u091F\u094D\u091F \u0915\u0930\u094B
RANGE=\u092B\u0932\u093E\u093D
LIST=\u0938\u0942\u091A\u0940
TUPLE=tuple
SORTED=\u091B\u093E\u0902\u091F\u0947\u0906
RESUB=sub
RESEARCH=search
REFINDALL=findall
MIN=\u0918\u091F\u094D\u091F\u094B\u0918\u091F\u094D\u091F
MAX=\u092C\u0926\u094D\u0927\u094B\u092C\u0926\u094D\u0927
PI=pi|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=h
MM=\u092E\u0940.\u092E\u0940.
CM=\u0938\u0948\u0902.\u092E\u0940.
PT=pt
INCH=in|"
# color codes
INVISIBLE=invisible
BLACK=black
SILVER=silver
GRAY=gray|grey
WHITE=white
MAROON=maroon
RED=\u0938\u0942\u0939\u093E
PURPLE=\u091C\u093E\u092E\u0941\u0928\u0940
FUCHSIA=fuchsia|magenta
GREEN=green
LIME=lime
OLIVE=olive
YELLOW=yellow
NAVY=navy
BLUE=blue
TEAL=teal
AQUA=aqua|cyan
PINK=pink
TOMATO=tomato
ORANGE=orange
GOLD=gold
VIOLET=violet
SKYBLUE=skyblue
CHOCOLATE=chocolate
BROWN=brown
# messages
LIBRELOGO=LibreLogo
ERROR=Error (in line %s)
ERR_ZERODIVISION= \u0938\u093F\u092B\u0930 \u0915\u0928\u094D\u0928\u0948 \u0924\u0915\u094D\u0938\u0940\u092E
ERR_NAME=Unknown name: \u201C%s\u201D.
ERR_ARGUMENTS=%s takes %s arguments (%s given).
ERR_BLOCK=Error (extra or missing spaces at brackets?)
ERR_KEY=Unknown element: %s
ERR_INDEX=Index out of range.
ERR_STOP=Program terminated:
ERR_MAXRECURSION=maximum recursion depth (%d) exceeded.
ERR_MEMORY=not enough memory.
ERR_NOTAPROGRAM=Do you want to run this text document?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=dopr\u011Bdka|dp
BACKWARD=sl\u011Bdk|sk
TURNLEFT=nal\u011Bwo|nl
TURNRIGHT=nap\u0161awo|np
PENUP=pisakg\u00F3rjej|pg
PENDOWN=pisakdo\u0142oj|pd
HOME=zachopje\u0144k
POINT=dypk
CIRCLE=krejz
ELLIPSE=elipsa
SQUARE=kwadrat
RECTANGLE=p\u0161awokut
LABEL=pomjenjenje
PENCOLOR=barwapisaka|barwalinije|bp|bl
ANY=n\u011Bkaki|nk
PENWIDTH=wjelikos\u0107pisaka|\u0161yrokos\u0107pisaka|\u0161yrokos\u0107linije|wp|\u0161l
PENSTYLE=stilpisaka|linijowystil|sp|ls
PENJOINT=p\u015Bechadpisaka|p\u015Bechadlinije|pp|pl
PENCAP=k\u00F3\u0144cpisaka|k\u00F3\u0144clinije|kp|kl
NONE=\u017Eeden
BEVEL=nak\u00F3sny
MITER=pr\u011Bcnyr\u011Bz
ROUNDED=kulowaty
SOLID=po\u0142ny
DASH=smu\u017Ekowany
DOTTED=dypkaty
CLOSE=zacyni\u015B
FILL=po\u0142ni\u015B
FILLCOLOR=po\u0142njecabarwa|pb
FILLTRANSPARENCY=po\u0142njecatransparenca
PENTRANSPARENCY=transparencapisaka|transparencalinije|tp|tl
FILLSTYLE=po\u0142nje\u0144skistil
FONTCOLOR=pismowabarwa|tekstowabarwaa|pb|tb
FONTTRANSPARENCY=transparencapisma|transparencateksta
FONTHEIGHT=wjelikos\u0107pisma|wjelikos\u0107teksta|wusokos\u0107teksta|wp|wt
FONTWEIGHT=pismowawaga|pw
FONTSTYLE=stilpisma|sp
BOLD=tucny
ITALIC=kursiwny
UPRIGHT=normalny
NORMAL=normalny
FONTFAMILY=dru\u017Eynapisma|dp
CLEARSCREEN=cys\u0107wobrazowku|cw
TEXT=tekst
HIDETURTLE=schowajnopawu|sn
SHOWTURTLE=poka\u017Enopawu|pn
POSITION=pozicija|poz
HEADING=sm\u011Br|sm
PAGESIZE=wjelikos\u0107boka|wb
GROUP=wobraz|wob
# control structures
TO=k
END=k\u00F3\u0144c
STOP=stop
REPEAT=w\u00F3spjetuj|wsp
REPCOUNT=licak
BREAK=p\u015Betergnu\u015B
CONTINUE=dalej
WHILE=mjaztyma\u017E
FOR=za
IN=w
IF=jolic
OUTPUT=wuda\u015Be
LEFTSTRING=\u201E|\u201A|"|'
RIGHTSTRING=\u201C|\u2018|"|'
TRUE=w\u011Brno
FALSE=wopak
NOT=nic
AND=a
OR=abo
INPUT=zap\u00F3da\u015Be
PRINT=pi\u0161
SLEEP=cakaj
GLOBAL=globalny
# functions
RANDOM=p\u015Bipadny
INT=ce\u0142y
FLOAT=decimalny
STR=znamu\u0161ka
SQRT=k\u00F3rje\u0144
LOG10=log10
SIN=sin
COS=cos
ROUND=narownaj
ABS=absolutny|abs
COUNT=licy\u015B
SET=m\u0142ogos\u0107
RANGE=sl\u011Bd
LIST=lis\u0107ina
TUPLE=tupel
SORTED=sort\u011Browany
RESUB=wum\u011B\u0144
RESEARCH=pytaj
REFINDALL=namakajw\u0161e
MIN=min
MAX=maks
PI=pi|\u03C0
# measurement
DECIMAL=,
DEG=\u00B0
HOUR=h
MM=mm
CM=cm
PT=pt
INCH=in|"
# color codes
INVISIBLE=njewidobny
BLACK=carny
SILVER=slobro
GRAY=\u0161ery
WHITE=b\u011B\u0142y
MAROON=cerwjenobruny
RED=cerwjeny
PURPLE=lylowy
FUCHSIA=magenta
GREEN=zeleny
LIME=sw\u011Bt\u0142ozeleny
OLIVE=oliwnozeleny
YELLOW=\u017Eo\u0142ty
NAVY=\u015Bamnom\u00F3dry
BLUE=m\u00F3dry
TEAL=zelenom\u00F3dry
AQUA=akwamarin|cyan
PINK=ro\u017Eowy
TOMATO=\u015Bamnocerwjeny
ORANGE=oran\u017Eowy
GOLD=z\u0142o\u015Bany
VIOLET=wioletny
SKYBLUE=njebjom\u00F3dry
CHOCOLATE=\u015Bamnobruny
BROWN=bruny
# messages
LIBRELOGO=LibreLogo
ERROR=Zm\u00F3lka (w smu\u017Ece %s)
ERR_ZERODIVISION=Diwizija p\u015Bez nulu.
ERR_NAME=Njeznate m\u011B: \u201C%s\u201D.
ERR_ARGUMENTS=%s trjeba to\u015B tu licbu argumentow: %s (%s p\u00F3dane).
ERR_BLOCK=Zm\u00F3lka (p\u015Bidatne abo felujuce prozne znamjenja pla spinkow?)
ERR_KEY=Njeznaty element: %s
ERR_INDEX=Indeks zwenka wobce\u0155ka.
ERR_STOP=Program sk\u00F3\u0144cony:
ERR_MAXRECURSION=Maksimalna rekursijowa d\u0142ymokos\u0107 (%d) p\u015Bek\u0161ocona.
ERR_MEMORY=nic dos\u0107 sk\u0142adowaka.
ERR_NOTAPROGRAM=Co\u015Bo to\u015B ten tekstowy dokument wuwjas\u0107?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=forward|fd
BACKWARD=back|bk
TURNLEFT=left|turnleft|lt
TURNRIGHT=right|turnright|rt
PENUP=penup|pu
PENDOWN=pendown|pd
HOME=home
POINT=point
CIRCLE=circle
ELLIPSE=ellipse
SQUARE=square
RECTANGLE=rectangle
LABEL=label
PENCOLOR=pencolor|pencolour|linecolor|pc
ANY=any
PENWIDTH=pensize|penwidth|linewidth|ps
PENSTYLE=penstyle|linestyle
PENJOINT=penjoint|linejoint
PENCAP=pencap|linecap
NONE=\u0F45\u0F72\u0F0B\u0F58\u0F7A\u0F51\u0F0D
BEVEL=bevel
MITER=miter
ROUNDED=round
SOLID=solid
DASH=dashed
DOTTED=dotted
CLOSE=close
FILL=fill
FILLCOLOR=fillcolor|fillcolour|fc
FILLTRANSPARENCY=filltransparency
PENTRANSPARENCY=pentransparency|linetransparency
FILLSTYLE=fillstyle
FONTCOLOR=fontcolor|textcolor|textcolour
FONTTRANSPARENCY=fonttransparency|texttransparency
FONTHEIGHT=fontsize|textsize|textheight
FONTWEIGHT=fontweight
FONTSTYLE=fontstyle
BOLD=bold
ITALIC=italic
UPRIGHT=upright|normal
NORMAL=normal
FONTFAMILY=fontfamily
CLEARSCREEN=clearscreen|cs
TEXT=\u0F5A\u0F72\u0F42\u0F0B\u0F61\u0F72\u0F42
HIDETURTLE=hideturtle|ht|hideme
SHOWTURTLE=showturtle|st|showme
POSITION=position|pos|setpos
HEADING=heading|setheading|seth
PAGESIZE=pagesize
GROUP=picture|pic
# control structures
TO=to
END=\u0F58\u0F47\u0F74\u0F42
STOP=stop
REPEAT=repeat|forever
REPCOUNT=repcount
BREAK=break
CONTINUE=continue
WHILE=while
FOR=\u0F51\u0F7C\u0F53\u0F0B\u0F63\u0F74\u0F0D
IN=\u0F68\u0F60\u0F72\u0F0B\u0F68\u0F7A\u0F53\u0F0D
IF=if
OUTPUT=output
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=true
FALSE=false
NOT=not
AND=\u0F51\u0F44\u0F0B\u0F0D
OR=\u0F61\u0F44\u0F0B\u0F53\u0F0D
INPUT=input
PRINT=print
SLEEP=sleep
GLOBAL=global
# functions
RANDOM=random
INT=int
FLOAT=float
STR=str
SQRT=sqrt
LOG10=log10
SIN=sin
COS=cos
ROUND=round
ABS=abs
COUNT=\u0F42\u0FB1\u0F44\u0F66\u0F0B\u0F41\u0F0B\u0F62\u0F90\u0FB1\u0F56\u0F66\u0F0D
SET=set
RANGE=\u0F41\u0FB1\u0F56\u0F0B\u0F5A\u0F51\u0F0D
LIST=list
TUPLE=tuple
SORTED=\u0F51\u0F56\u0FB1\u0F7A\u0F0B\u0F66\u0F7A\u0F63\u0F0B\u0F60\u0F56\u0F51\u0F0B\u0F61\u0F7C\u0F51\u0F54\u0F0D
RESUB=sub
RESEARCH=search
REFINDALL=findall
MIN=min
MAX=max
PI=pi|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=h
MM=\u0F68\u0F7A\u0F58\u0F0B\u0F68\u0F7A\u0F58\u0F0B
CM=\u0F66\u0F72\u0F0B\u0F68\u0F7A\u0F58
PT=\u0F54\u0F72\u0F0B\u0F4A\u0F72\u0F0D
INCH=in|"
# color codes
INVISIBLE=invisible
BLACK=black
SILVER=silver
GRAY=gray|grey
WHITE=white
MAROON=maroon
RED=red
PURPLE=purple
FUCHSIA=fuchsia|magenta
GREEN=green
LIME=lime
OLIVE=olive
YELLOW=yellow
NAVY=navy
BLUE=blue
TEAL=teal
AQUA=aqua|cyan
PINK=pink
TOMATO=tomato
ORANGE=orange
GOLD=gold
VIOLET=violet
SKYBLUE=skyblue
CHOCOLATE=chocolate
BROWN=brown
# messages
LIBRELOGO=LibreLogo
ERROR=Error (in line %s)
ERR_ZERODIVISION=\u0F40\u0FB3\u0F51\u0F0B\u0F40\u0F7C\u0F62\u0F0B\u0F42\u0F72\u0F66\u0F0B\u0F56\u0F42\u0F7C\u0F0B\u0F62\u0FA9\u0F72\u0F66\u0F0D
ERR_NAME=Unknown name: \u201C%s\u201D.
ERR_ARGUMENTS=%s takes %s arguments (%s given).
ERR_BLOCK=Error (extra or missing spaces at brackets?)
ERR_KEY=Unknown element: %s
ERR_INDEX=Index out of range.
ERR_STOP=Program terminated:
ERR_MAXRECURSION=maximum recursion depth (%d) exceeded.
ERR_MEMORY=not enough memory.
ERR_NOTAPROGRAM=Do you want to run this text document?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=\u03BC\u03C0\u03C1\u03BF\u03C3\u03C4\u03AC|\u03BC\u03C0|forward|fd
BACKWARD=\u03C0\u03AF\u03C3\u03C9|\u03C0\u03B9|back|bk
TURNLEFT=\u03B1\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AC|\u03C3\u03C4\u03C1\u03BF\u03C6\u03AE\u03B1\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AC|\u03B1\u03C1|left|turnleft|lt
TURNRIGHT=\u03B4\u03B5\u03BE\u03B9\u03AC|\u03C3\u03C4\u03C1\u03BF\u03C6\u03AE\u03B4\u03B5\u03BE\u03B9\u03AC|\u03B4\u03BE|right|turnright|rt
PENUP=\u03B3\u03C1\u03B1\u03C6\u03AF\u03B4\u03B1\u03C0\u03AC\u03BD\u03C9|\u03B3\u03C0|penup|pu
PENDOWN=\u03B3\u03C1\u03B1\u03C6\u03AF\u03B4\u03B1\u03BA\u03AC\u03C4\u03C9|\u03B3\u03BA|pendown|pd
HOME=\u03B1\u03C1\u03C7\u03AE|home
POINT=\u03C3\u03B7\u03BC\u03B5\u03AF\u03BF|point
CIRCLE=\u03BA\u03CD\u03BA\u03BB\u03BF\u03C2|circle
ELLIPSE=\u03AD\u03BB\u03BB\u03B5\u03B9\u03C8\u03B7|ellipse
SQUARE=\u03C4\u03B5\u03C4\u03C1\u03AC\u03B3\u03C9\u03BD\u03BF|square
RECTANGLE=\u03BF\u03C1\u03B8\u03BF\u03B3\u03CE\u03BD\u03B9\u03BF|rectangle
LABEL=\u03B5\u03C4\u03B9\u03BA\u03AD\u03C4\u03B1|label
PENCOLOR=\u03C7\u03C1\u03CE\u03BC\u03B1\u03B3\u03C1\u03B1\u03C6\u03AF\u03B4\u03B1\u03C2|\u03C7\u03C1\u03CE\u03BC\u03B1\u03B3\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2|\u03C7\u03B3|pencolor|pencolour|linecolor|pc
ANY=\u03CC\u03BB\u03B1|any
PENWIDTH=\u03BC\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2\u03B3\u03C1\u03B1\u03C6\u03AF\u03B4\u03B1\u03C2|\u03C0\u03BB\u03AC\u03C4\u03BF\u03C2\u03B3\u03C1\u03B1\u03C6\u03AF\u03B4\u03B1\u03C2|\u03C0\u03BB\u03AC\u03C4\u03BF\u03C2\u03B3\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2|\u03BC\u03B3|pensize|penwidth|linewidth|ps
PENSTYLE=\u03BC\u03BF\u03C1\u03C6\u03AE\u03B3\u03C1\u03B1\u03C6\u03AF\u03B4\u03B1\u03C2|\u03BC\u03BF\u03C1\u03C6\u03AE\u03B3\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2|penstyle|linestyle
PENJOINT=\u03AD\u03BD\u03C9\u03C3\u03B7\u03B3\u03C1\u03B1\u03C6\u03AF\u03B4\u03B1\u03C2|\u03AD\u03BD\u03C9\u03C3\u03B7\u03B3\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2|penjoint|linejoint
PENCAP=\u03AC\u03BA\u03C1\u03BF\u03B3\u03C1\u03B1\u03C6\u03AF\u03B4\u03B1\u03C2|\u03AC\u03BA\u03C1\u03BF\u03B3\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2|pencap|linecap
NONE=\u03BA\u03B1\u03BD\u03AD\u03BD\u03B1
BEVEL=\u03BB\u03BF\u03BE\u03CC|bevel
MITER=\u03BC\u03CD\u03C4\u03B7|miter
ROUNDED=\u03C3\u03C4\u03C1\u03BF\u03B3\u03B3\u03C5\u03BB\u03CC|round
SOLID=\u03C3\u03C5\u03BC\u03C0\u03B1\u03B3\u03AD\u03C2|solid
DASH=\u03BC\u03B5 \u03C0\u03B1\u03CD\u03BB\u03B5\u03C2|dashed
DOTTED=\u03B4\u03B9\u03AC\u03C3\u03C4\u03B9\u03BA\u03C4\u03BF|dotted
CLOSE=\u03BA\u03BB\u03B5\u03AF\u03C3\u03B9\u03BC\u03BF|close
FILL=\u03B3\u03AD\u03BC\u03B9\u03C3\u03BC\u03B1|fill
FILLCOLOR=\u03C7\u03C1\u03CE\u03BC\u03B1\u03B3\u03B5\u03BC\u03AF\u03C3\u03BC\u03B1\u03C4\u03BF\u03C2|\u03C7\u03B5|fillcolor|fillcolour|fc
FILLTRANSPARENCY=\u03B4\u03B9\u03B1\u03C6\u03AC\u03BD\u03B5\u03B9\u03B1\u03B3\u03B5\u03BC\u03AF\u03C3\u03BC\u03B1\u03C4\u03BF\u03C2
PENTRANSPARENCY=\u03B4\u03B9\u03B1\u03C6\u03AC\u03BD\u03B5\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AF\u03B4\u03B1\u03C2|\u03B4\u03B9\u03B1\u03C6\u03AC\u03BD\u03B5\u03B9\u03B1\u03B3\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2
FILLSTYLE=\u03BC\u03BF\u03C1\u03C6\u03AE\u03B3\u03B5\u03BC\u03AF\u03C3\u03BC\u03B1\u03C4\u03BF\u03C2|fillstyle
FONTCOLOR=\u03C7\u03C1\u03CE\u03BC\u03B1\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC\u03C2|\u03C7\u03C1\u03CE\u03BC\u03B1\u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5|fontcolor|textcolor|textcolour
FONTTRANSPARENCY=\u03B4\u03B9\u03B1\u03C6\u03AC\u03BD\u03B5\u03B9\u03B1\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC\u03C2|\u03B4\u03B9\u03B1\u03C6\u03AC\u03BD\u03B5\u03B9\u03B1\u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5
FONTHEIGHT=\u03BC\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC\u03C2|\u03BC\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2\u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5|\u03CD\u03C8\u03BF\u03C2\u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5|fontsize|textsize|textheight
FONTWEIGHT=\u03C0\u03AC\u03C7\u03BF\u03C2\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC\u03C2|fontweight
FONTSTYLE=\u03BC\u03BF\u03C1\u03C6\u03AE\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC\u03C2|fontstyle
BOLD=\u03AD\u03BD\u03C4\u03BF\u03BD\u03B1|bold
ITALIC=\u03C0\u03BB\u03AC\u03B3\u03B9\u03B1|italic
UPRIGHT=\u03CC\u03C1\u03B8\u03B9\u03BF|\u03BA\u03B1\u03BD\u03BF\u03BD\u03B9\u03BA\u03CC|upright|normal
NORMAL=\u03BA\u03B1\u03BD\u03BF\u03BD\u03B9\u03BA\u03CC|normal
FONTFAMILY=\u03BF\u03B9\u03BA\u03BF\u03B3\u03AD\u03BD\u03B5\u03B9\u03B1\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC\u03C2|fontfamily
CLEARSCREEN=\u03BA\u03B1\u03B8\u03B1\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2\u03BF\u03B8\u03CC\u03BD\u03B7\u03C2|\u03BA\u03BF|clearscreen|cs
TEXT=\u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF|text
HIDETURTLE=\u03B1\u03C0\u03CC\u03BA\u03C1\u03C5\u03C8\u03B7\u03C7\u03B5\u03BB\u03CE\u03BD\u03B1\u03C2|\u03B1\u03C7|\u03BA\u03C1\u03CD\u03C8\u03B5\u03BC\u03B5|hideturtle|ht|hideme
SHOWTURTLE=\u03B5\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7\u03C7\u03B5\u03BB\u03CE\u03BD\u03B1\u03C2|\u03B5\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B5\u03BC\u03B5|\u03B5\u03B5|showturtle|st|showme
POSITION=\u03B8\u03AD\u03C3\u03B7|\u03B8\u03C3|\u03BF\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2\u03B8\u03AD\u03C3\u03B7\u03C2|\u03B2\u03AC\u03BB\u03B5|position|pos|setpos
HEADING=\u03B5\u03C0\u03B9\u03BA\u03B5\u03C6\u03B1\u03BB\u03AF\u03B4\u03B1|\u03BF\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2\u03B5\u03C0\u03B9\u03BA\u03B5\u03C6\u03B1\u03BB\u03AF\u03B4\u03B1\u03C2|\u03BF\u03C1\u03B5|heading|setheading|seth
PAGESIZE=\u03BC\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2\u03C3\u03B5\u03BB\u03AF\u03B4\u03B1\u03C2|pagesize
GROUP=\u03B5\u03B9\u03BA\u03CC\u03BD\u03B1|\u03B5\u03B9\u03BA|picture|pic
# control structures
TO=\u03C3\u03B5|to
END=\u03C4\u03AD\u03BB\u03BF\u03C2|end
STOP=\u03C4\u03B5\u03C1\u03BC\u03B1\u03C4\u03B9\u03C3\u03BC\u03CC\u03C2|stop
REPEAT=\u03B5\u03C0\u03B1\u03BD\u03AC\u03BB\u03B7\u03C8\u03B7|repeat|forever
REPCOUNT=\u03B1\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2\u03B5\u03C0\u03B1\u03BD\u03B1\u03BB\u03AE\u03C8\u03B5\u03C9\u03BD|repcount
BREAK=\u03B4\u03B9\u03B1\u03BA\u03BF\u03C0\u03AE|break
CONTINUE=\u03C3\u03C5\u03BD\u03AD\u03C7\u03B5\u03B9\u03B1|continue
WHILE=\u03CC\u03C3\u03BF|while
FOR=\u03B3\u03B9\u03B1\u03CC\u03C3\u03BF|for
IN=\u03C3\u03C4\u03BF
IF=\u03B1\u03BD|if
OUTPUT=\u03AD\u03BE\u03BF\u03B4\u03BF\u03C2|output
LEFTSTRING=\u201C|\u2018|"|'
RIGHTSTRING=\u201D|\u2019|"|'
TRUE=\u03B1\u03BB\u03B7\u03B8\u03AE\u03C2|true
FALSE=\u03C8\u03B5\u03C5\u03B4\u03AE\u03C2|false
NOT=\u03CC\u03C7\u03B9|not
AND=\u03BA\u03B1\u03B9|and
OR=\u03AE|or
INPUT=\u03B5\u03AF\u03C3\u03BF\u03B4\u03BF\u03C2|input
PRINT=\u03C4\u03CD\u03C0\u03C9\u03C3\u03B5|print
SLEEP=\u03B1\u03BD\u03B1\u03BC\u03BF\u03BD\u03AE|sleep
GLOBAL=\u03BA\u03B1\u03B8\u03BF\u03BB\u03B9\u03BA\u03CC|global
# functions
RANDOM=\u03C4\u03C5\u03C7\u03B1\u03AF\u03BF|random
INT=\u03B1\u03BA\u03AD\u03C1\u03B1\u03B9\u03BF|int
FLOAT=\u03BA\u03B9\u03BD\u03B7\u03C4\u03AE\u03C5\u03C0\u03BF\u03B4\u03B9\u03B1\u03C3\u03C4\u03BF\u03BB\u03AE|float
STR=\u03C3\u03C5\u03BC\u03B2\u03BF\u03BB\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC|str
SQRT=\u03C4\u03B5\u03C4\u03C1\u03B1\u03B3\u03C9\u03BD\u03B9\u03BA\u03AE\u03C1\u03AF\u03B6\u03B1|sqrt
LOG10=log10
SIN=\u03B7\u03BC\u03AF\u03C4\u03BF\u03BD\u03BF|sin
COS=\u03C3\u03C5\u03BD\u03B7\u03BC\u03AF\u03C4\u03BF\u03BD\u03BF|cos
ROUND=\u03C3\u03C4\u03C1\u03BF\u03B3\u03B3\u03C5\u03BB\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7|round
ABS=\u03B1\u03C0\u03CC\u03BB\u03C5\u03C4\u03BF
COUNT=\u03C0\u03BB\u03AE\u03B8\u03BF\u03C2|count
SET=\u03C3\u03CD\u03BD\u03BF\u03BB\u03BF|set
RANGE=\u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE|range
LIST=\u03BA\u03B1\u03C4\u03AC\u03BB\u03BF\u03B3\u03BF\u03C2|list
TUPLE=\u03C0\u03BB\u03B5\u03B9\u03AC\u03B4\u03B1|tuple
SORTED=\u03C4\u03B1\u03BE\u03B9\u03BD\u03BF\u03BC\u03B7\u03BC\u03AD\u03BD\u03B1|sorted
RESUB=\u03B1\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7
RESEARCH=\u03B1\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7|search
REFINDALL=\u03B5\u03CD\u03C1\u03B5\u03C3\u03B7\u03CC\u03BB\u03C9\u03BD|findall
MIN=\u03B5\u03BB\u03AC\u03C7\u03B9\u03C3\u03C4\u03BF|min
MAX=\u03BC\u03AD\u03B3\u03B9\u03C3\u03C4\u03BF|max
PI=\u03C0\u03B9|pi|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=h
MM=\u03C7\u03B9\u03BB\u03B9\u03BF\u03C3\u03C4\u03AC|mm
CM=\u03B5\u03BA\u03B1\u03C4\u03BF\u03C3\u03C4\u03AC|cm
PT=\u03C3\u03C4\u03B9\u03B3\u03BC\u03AE|pt
INCH=\u03AF\u03BD\u03C4\u03C3\u03B1|in|"
# color codes
INVISIBLE=\u03B1\u03CC\u03C1\u03B1\u03C4\u03BF|invisible
BLACK=\u03BC\u03B1\u03CD\u03C1\u03BF|black
SILVER=\u03B1\u03C3\u03B7\u03BC\u03AF|silver
GRAY=\u03B3\u03BA\u03C1\u03AF\u03B6\u03BF|gray|grey
WHITE=\u03BB\u03B5\u03C5\u03BA\u03CC|white
MAROON=\u03BA\u03B1\u03C3\u03C4\u03B1\u03BD\u03AD\u03C1\u03C5\u03B8\u03C1\u03BF|maroon
RED=\u03BA\u03CC\u03BA\u03BA\u03B9\u03BD\u03BF|red
PURPLE=\u03C0\u03BF\u03C1\u03C6\u03C5\u03C1\u03CC|purple
FUCHSIA=\u03C6\u03BF\u03CD\u03BE\u03B9\u03B1|\u03BC\u03B1\u03C4\u03B6\u03AD\u03BD\u03C4\u03B1|fuchsia|magenta
GREEN=\u03C0\u03C1\u03AC\u03C3\u03B9\u03BD\u03BF|green
LIME=\u03B1\u03BD\u03BF\u03B9\u03C7\u03C4\u03BF\u03C0\u03C1\u03AC\u03C3\u03B9\u03BD\u03BF|lime
OLIVE=\u03BB\u03B1\u03B4\u03AF|olive
YELLOW=\u03BA\u03AF\u03C4\u03C1\u03B9\u03BD\u03BF|yellow
NAVY=\u03B8\u03B1\u03BB\u03B1\u03C3\u03C3\u03AF|navy
BLUE=\u03B3\u03B1\u03BB\u03AC\u03B6\u03B9\u03BF|blue
TEAL=\u03B3\u03B1\u03BB\u03B1\u03B6\u03BF\u03C0\u03C1\u03AC\u03C3\u03B9\u03BD\u03BF|teal
AQUA=\u03B1\u03BD\u03BF\u03B9\u03C7\u03C4\u03CC\u03B3\u03B1\u03BB\u03AC\u03B6\u03B9\u03BF|aqua|cyan
PINK=\u03C1\u03BF\u03B6|pink
TOMATO=\u03C4\u03BF\u03BC\u03B1\u03C4\u03AF|tomato
ORANGE=\u03C0\u03BF\u03C1\u03C4\u03BF\u03BA\u03B1\u03BB\u03AF|orange
GOLD=\u03C7\u03C1\u03C5\u03C3\u03B1\u03C6\u03AF|gold
VIOLET=\u03B2\u03B9\u03BF\u03BB\u03B5\u03C4\u03AF|violet
SKYBLUE=\u03BF\u03C5\u03C1\u03B1\u03BD\u03AF|skyblue
CHOCOLATE=\u03C3\u03BF\u03BA\u03BF\u03BB\u03B1\u03C4\u03AF|chocolate
BROWN=\u03BA\u03B1\u03C6\u03AD|brown
# messages
LIBRELOGO=LibreLogo
ERROR=\u03A3\u03C6\u03AC\u03BB\u03BC\u03B1 (\u03C3\u03C4\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE %s)
ERR_ZERODIVISION=\u0394\u03B9\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03BC\u03B5 \u03C4\u03BF \u03BC\u03B7\u03B4\u03AD\u03BD.
ERR_NAME=\u0386\u03B3\u03BD\u03C9\u03C3\u03C4\u03BF \u03CC\u03BD\u03BF\u03BC\u03B1: \u201C%s\u201D.
ERR_ARGUMENTS=\u03C4\u03BF %s \u03C0\u03B1\u03AF\u03C1\u03BD\u03B5\u03B9 \u03C4\u03B1 \u03BF\u03C1\u03AF\u03C3\u03BC\u03B1\u03C4\u03B1 %s (%s \u03B4\u03B5\u03B4\u03BF\u03BC\u03AD\u03BD\u03B1).
ERR_BLOCK=\u03A3\u03C6\u03AC\u03BB\u03BC\u03B1 (\u03C0\u03C1\u03CC\u03C3\u03B8\u03B5\u03C4\u03B1 \u03AE \u03B5\u03BB\u03BB\u03B5\u03AF\u03C0\u03BF\u03BD\u03C4\u03B1 \u03BA\u03B5\u03BD\u03AC \u03C3\u03C4\u03B9\u03C2 \u03C0\u03B1\u03C1\u03B5\u03BD\u03B8\u03AD\u03C3\u03B5\u03B9\u03C2;)
ERR_KEY=\u0386\u03B3\u03BD\u03C9\u03C3\u03C4\u03BF \u03C3\u03C4\u03BF\u03B9\u03C7\u03B5\u03AF\u03BF: %s
ERR_INDEX=\u0394\u03B5\u03AF\u03BA\u03C4\u03B7\u03C2 \u03B5\u03BA\u03C4\u03CC\u03C2 \u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE\u03C2.
ERR_STOP=\u03A4\u03BF \u03C0\u03C1\u03CC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 \u03C4\u03B5\u03C1\u03BC\u03B1\u03C4\u03AF\u03C3\u03C4\u03B7\u03BA\u03B5:
ERR_MAXRECURSION=\u03C4\u03BF \u03BC\u03AD\u03B3\u03B9\u03C3\u03C4\u03BF \u03B2\u03AC\u03B8\u03BF\u03C2 \u03B1\u03BD\u03B1\u03B4\u03C1\u03BF\u03BC\u03AE\u03C2 (%d) \u03BE\u03B5\u03C0\u03B5\u03C1\u03AC\u03C3\u03C4\u03B7\u03BA\u03B5.
ERR_MEMORY=\u03B1\u03BD\u03B5\u03C0\u03B1\u03C1\u03BA\u03AE\u03C2 \u03BC\u03BD\u03AE\u03BC\u03B7.
ERR_NOTAPROGRAM=\u0398\u03AD\u03BB\u03B5\u03C4\u03B5 \u03BD\u03B1 \u03C4\u03C1\u03AD\u03BE\u03B5\u03C4\u03B5 \u03B1\u03C5\u03C4\u03CC \u03C4\u03BF \u03AD\u03B3\u03B3\u03C1\u03B1\u03C6\u03BF \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5;

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=forward|fd
BACKWARD=back|bk
TURNLEFT=left|turnleft|lt
TURNRIGHT=right|turnright|rt
PENUP=penup|pu
PENDOWN=pendown|pd
HOME=home
POINT=point
CIRCLE=circle
ELLIPSE=ellipse
SQUARE=square
RECTANGLE=rectangle
LABEL=label
PENCOLOR=pencolor|pencolour|linecolor|pc
ANY=any
PENWIDTH=pensize|penwidth|linewidth|ps
PENSTYLE=penstyle|linestyle
PENJOINT=penjoint|linejoint
PENCAP=pencap|linecap
NONE=none
BEVEL=bevel
MITER=miter
ROUNDED=round
SOLID=solid
DASH=dashed
DOTTED=dotted
CLOSE=close
FILL=fill
FILLCOLOR=fillcolor|fillcolour|fc
FILLTRANSPARENCY=filltransparency
PENTRANSPARENCY=pentransparency|linetransparency
FILLSTYLE=fillstyle
FONTCOLOR=fontcolor|textcolor|textcolour
FONTTRANSPARENCY=fonttransparency|texttransparency
FONTHEIGHT=fontsize|textsize|textheight
FONTWEIGHT=fontweight
FONTSTYLE=fontstyle
BOLD=bold
ITALIC=italic
UPRIGHT=upright|normal
NORMAL=normal
FONTFAMILY=fontfamily
CLEARSCREEN=clearscreen|cs
TEXT=text
HIDETURTLE=hideturtle|ht|hideme
SHOWTURTLE=showturtle|st|showme
POSITION=position|pos|setpos
HEADING=heading|setheading|seth
PAGESIZE=pagesize
GROUP=picture|pic
# control structures
TO=to
END=end
STOP=stop
REPEAT=repeat|forever
REPCOUNT=repcount
BREAK=break
CONTINUE=continue
WHILE=while
FOR=for
IN=in
IF=if
OUTPUT=output
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=true
FALSE=false
NOT=not
AND=and
OR=or
INPUT=input
PRINT=print
SLEEP=sleep
GLOBAL=global
# functions
RANDOM=random
INT=int
FLOAT=float
STR=str
SQRT=sqrt
LOG10=log10
SIN=sin
COS=cos
ROUND=round
ABS=abs
COUNT=count
SET=set
RANGE=range
LIST=list
TUPLE=tuple
SORTED=sorted
RESUB=sub
RESEARCH=search
REFINDALL=findall
MIN=min
MAX=max
PI=pi|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=h
MM=mm
CM=cm
PT=pt
INCH=in|"
# color codes
INVISIBLE=invisible
BLACK=black
SILVER=silver
GRAY=gray|grey
WHITE=white
MAROON=maroon
RED=red
PURPLE=purple
FUCHSIA=fuchsia|magenta
GREEN=green
LIME=lime
OLIVE=olive
YELLOW=yellow
NAVY=navy
BLUE=blue
TEAL=teal
AQUA=aqua|cyan
PINK=pink
TOMATO=tomato
ORANGE=orange
GOLD=gold
VIOLET=violet
SKYBLUE=skyblue
CHOCOLATE=chocolate
BROWN=brown
# messages
LIBRELOGO=LibreLogo
ERROR=Error (in line %s)
ERR_ZERODIVISION=Division by zero.
ERR_NAME=Unknown name: \u201C%s\u201D.
ERR_ARGUMENTS=%s takes %s arguments (%s given).
ERR_BLOCK=Error (extra or missing spaces at brackets?)
ERR_KEY=Unknown element: %s
ERR_INDEX=Index out of range.
ERR_STOP=Program terminated:
ERR_MAXRECURSION=maximum recursion depth (%d) exceeded.
ERR_MEMORY=not enough memory.
ERR_NOTAPROGRAM=Do you want to run this text document?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=forward|fd
BACKWARD=back|bk
TURNLEFT=left|turnleft|lt
TURNRIGHT=right|turnright|rt
PENUP=penup|pu
PENDOWN=pendown|pd
HOME=home
POINT=point
CIRCLE=circle
ELLIPSE=ellipse
SQUARE=square
RECTANGLE=rectangle
LABEL=label
PENCOLOR=pencolor|pencolour|linecolor|pc
ANY=any
PENWIDTH=pensize|penwidth|linewidth|ps
PENSTYLE=penstyle|linestyle
PENJOINT=penjoint|linejoint
PENCAP=pencap|linecap
NONE=none
BEVEL=bevel
MITER=miter
ROUNDED=round
SOLID=solid
DASH=dashed
DOTTED=dotted
CLOSE=close
FILL=fill
FILLCOLOR=fillcolor|fillcolour|fc
FILLTRANSPARENCY=filltransparency
PENTRANSPARENCY=pentransparency|linetransparency
FILLSTYLE=fillstyle
FONTCOLOR=fontcolor|textcolor|textcolour
FONTTRANSPARENCY=fonttransparency|texttransparency
FONTHEIGHT=fontsize|textsize|textheight
FONTWEIGHT=fontweight
FONTSTYLE=fontstyle
BOLD=bold
ITALIC=italic
UPRIGHT=upright|normal
NORMAL=normal
FONTFAMILY=fontfamily
CLEARSCREEN=clearscreen|cs
TEXT=text
HIDETURTLE=hideturtle|ht|hideme
SHOWTURTLE=showturtle|st|showme
POSITION=position|pos|setpos
HEADING=heading|setheading|seth
PAGESIZE=pagesize
GROUP=picture|pic
# control structures
TO=to
END=end
STOP=stop
REPEAT=repeat|forever
REPCOUNT=repcount
BREAK=break
CONTINUE=continue
WHILE=while
FOR=for
IN=in
IF=if
OUTPUT=output
LEFTSTRING=\u201c|\u2018
RIGHTSTRING=\u201d|\u2019
TRUE=true
FALSE=false
NOT=not
AND=and
OR=or
INPUT=input
PRINT=print
SLEEP=sleep
GLOBAL=global
# functions
RANDOM=random
INT=int
FLOAT=float
STR=str
SQRT=sqrt
LOG10=log10
SIN=sin
COS=cos
ROUND=round
ABS=abs
COUNT=count
SET=set
RANGE=range
LIST=list
TUPLE=tuple
SORTED=sorted
RESUB=sub
RESEARCH=search
REFINDALL=findall
MIN=min
MAX=max
PI=pi|\u03c0
# measurement
DECIMAL=.
DEG=\u00b0
HOUR=h
MM=mm
CM=cm
PT=pt
INCH=in|"
# color codes
INVISIBLE=invisible
BLACK=black
SILVER=silver
GRAY=gray|grey
WHITE=white
MAROON=maroon
RED=red
PURPLE=purple
FUCHSIA=fuchsia|magenta
GREEN=green
LIME=lime
OLIVE=olive
YELLOW=yellow
NAVY=navy
BLUE=blue
TEAL=teal
AQUA=aqua|cyan
PINK=pink
TOMATO=tomato
ORANGE=orange
GOLD=gold
VIOLET=violet
SKYBLUE=skyblue
CHOCOLATE=chocolate
BROWN=brown
# messages
LIBRELOGO=LibreLogo
ERROR=Error (in line %s)
ERR_ZERODIVISION=Division by zero.
ERR_NAME=Unknown name: \u201c%s\u201d.
ERR_ARGUMENTS=%s takes %s arguments (%s given).
ERR_BLOCK=Error (extra or missing spaces at brackets?)
ERR_KEY=Unknown element: %s
ERR_INDEX=Index out of range.
ERR_STOP=Program terminated:
ERR_MAXRECURSION=maximum recursion depth (%d) exceeded.
ERR_MEMORY=not enough memory.
ERR_NOTAPROGRAM=Do you want to run this text document?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=forward|fd
BACKWARD=back|bk
TURNLEFT=left|turnleft|lt
TURNRIGHT=right|turnright|rt
PENUP=penup|pu
PENDOWN=pendown|pd
HOME=home
POINT=point
CIRCLE=circle
ELLIPSE=ellipse
SQUARE=square
RECTANGLE=rectangle
LABEL=label
PENCOLOR=pencolor|pencolour|linecolor|pc
ANY=any
PENWIDTH=pensize|penwidth|linewidth|ps
PENSTYLE=penstyle|linestyle
PENJOINT=penjoint|linejoint
PENCAP=pencap|linecap
NONE=none
BEVEL=bevel
MITER=miter
ROUNDED=round
SOLID=solid
DASH=dashed
DOTTED=dotted
CLOSE=close
FILL=fill
FILLCOLOR=fillcolor|fillcolour|fc
FILLTRANSPARENCY=filltransparency
PENTRANSPARENCY=pentransparency|linetransparency
FILLSTYLE=fillstyle
FONTCOLOR=fontcolor|textcolor|textcolour
FONTTRANSPARENCY=fonttransparency|texttransparency
FONTHEIGHT=fontsize|textsize|textheight
FONTWEIGHT=fontweight
FONTSTYLE=fontstyle
BOLD=bold
ITALIC=italic
UPRIGHT=upright|normal
NORMAL=normal
FONTFAMILY=fontfamily
CLEARSCREEN=clearscreen|cs
TEXT=text
HIDETURTLE=hideturtle|ht|hideme
SHOWTURTLE=showturtle|st|showme
POSITION=position|pos|setpos
HEADING=heading|setheading|seth
PAGESIZE=pagesize
GROUP=picture|pic
# control structures
TO=to
END=end
STOP=stop
REPEAT=repeat|forever
REPCOUNT=repcount
BREAK=break
CONTINUE=continue
WHILE=while
FOR=for
IN=in
IF=if
OUTPUT=output
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=true
FALSE=false
NOT=not
AND=and
OR=or
INPUT=input
PRINT=print
SLEEP=sleep
GLOBAL=global
# functions
RANDOM=random
INT=int
FLOAT=float
STR=str
SQRT=sqrt
LOG10=log10
SIN=sin
COS=cos
ROUND=round
ABS=abs
COUNT=count
SET=set
RANGE=range
LIST=list
TUPLE=tuple
SORTED=sorted
RESUB=sub
RESEARCH=search
REFINDALL=findall
MIN=min
MAX=max
PI=pi|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=h
MM=mm
CM=cm
PT=pt
INCH=in|"
# color codes
INVISIBLE=invisible
BLACK=black
SILVER=silver
GRAY=gray|grey
WHITE=white
MAROON=maroon
RED=red
PURPLE=purple
FUCHSIA=fuchsia|magenta
GREEN=green
LIME=lime
OLIVE=olive
YELLOW=yellow
NAVY=navy
BLUE=blue
TEAL=teal
AQUA=aqua|cyan
PINK=pink
TOMATO=tomato
ORANGE=orange
GOLD=gold
VIOLET=violet
SKYBLUE=skyblue
CHOCOLATE=chocolate
BROWN=brown
# messages
LIBRELOGO=LibreLogo
ERROR=Error (in line %s)
ERR_ZERODIVISION=Division by zero.
ERR_NAME=Unknown name: \u201C%s\u201D.
ERR_ARGUMENTS=%s takes %s arguments (%s given).
ERR_BLOCK=Error (extra or missing spaces at brackets?)
ERR_KEY=Unknown element: %s
ERR_INDEX=Index out of range.
ERR_STOP=Program terminated:
ERR_MAXRECURSION=maximum recursion depth (%d) exceeded.
ERR_MEMORY=not enough memory.
ERR_NOTAPROGRAM=Do you want to run this text document?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=anta\u016Den|a
BACKWARD=retro|r
TURNLEFT=maldekstren|turnu_liven|lt
TURNRIGHT=dekstren|turnu_dekstren|dt
PENUP=plumofor|pf
PENDOWN=plumoek|pe
HOME=hejmen
POINT=punkto
CIRCLE=cirklo
ELLIPSE=elipso
SQUARE=kvadrato
RECTANGLE=ortangulo
LABEL=etikedo
PENCOLOR=plumkoloro|linikoloro|pk
ANY=ajna
PENWIDTH=plumlar\u011Do|plumgrando|pg
PENSTYLE=plumstilo|linistilo
PENJOINT=liniartiko|plumligo
PENCAP=plum\u0109apo|lini\u0109apo
NONE=neniu
BEVEL=bivela
MITER=oblikva
ROUNDED=ronda
SOLID=solida
DASH=streketa
DOTTED=punkta
CLOSE=fermu
FILL=plenigu
FILLCOLOR=pleniga_koloro|plenkoloro|plk
FILLTRANSPARENCY=plenigtravideblo
PENTRANSPARENCY=plumtravideblo|linitravideblo
FILLSTYLE=pleniga_stilo
FONTCOLOR=tiparkoloro|tekstokoloro|tk
FONTTRANSPARENCY=tiparvideblo|tekstvideblo
FONTHEIGHT=tiparogrando|tekstoalto|tekstogrando
FONTWEIGHT=tiparopezo
FONTSTYLE=tiparostilo
BOLD=grasa
ITALIC=kursiva
UPRIGHT=rekta|vertikala|normala
NORMAL=normala
FONTFAMILY=tiparofamilio
CLEARSCREEN=vakigi_ekranon|ek
TEXT=teksto
HIDETURTLE=ka\u015Du_testudon|kt
SHOWTURTLE=vidigu_testudon|vt
POSITION=pozicio|poz
HEADING=direkto|dir
PAGESIZE=pa\u011Dogrando
GROUP=bildo|b
# control structures
TO=al
END=fino
STOP=haltu
REPEAT=ripetu|\u0109iame|\u0109iam
REPCOUNT=ripetonombro
BREAK=saltu
CONTINUE=da\u016Drigu
WHILE=dum
FOR=por
IN=en
IF=se
OUTPUT=eliga\u0135o
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=vera
FALSE=falsa
NOT=ne
AND=kaj
OR=a\u016D
INPUT=enigu
PRINT=presu|p
SLEEP=dormu
GLOBAL=\u0109ie
# functions
RANDOM=harzarda
INT=entjero|ent
FLOAT=reelo
STR=\u0109eno
SQRT=kvrad
LOG10=log10
SIN=sin
COS=kos
ROUND=ronda
ABS=abs
COUNT=nombru
SET=aro
RANGE=amplekso
LIST=listo
TUPLE=opo
SORTED=ordigita
RESUB=anstata\u016Du|anst
RESEARCH=ser\u0109u
REFINDALL=ser\u0109u_\u0109ion|\u0109ionser\u0109u
MIN=min
MAX=maks
PI=pi|\u03C0
# measurement
DECIMAL=,
DEG=\u00B0
HOUR=h
MM=mm
CM=cm
PT=pt
INCH=colo|"
# color codes
INVISIBLE=nevidebla
BLACK=nigra
SILVER=ar\u011Denta
GRAY=griza
WHITE=blanka
MAROON=karmezina
RED=ru\u011Da
PURPLE=purpura
FUCHSIA=fuksina
GREEN=verda
LIME=limeta
OLIVE=oliva
YELLOW=flava
NAVY=malhelblua
BLUE=blua
TEAL=bluverda
AQUA=cejanblua
PINK=rozkolora
TOMATO=tomata
ORANGE=oran\u011Da
GOLD=ora
VIOLET=viola
SKYBLUE=\u0109ielblua
CHOCOLATE=\u0109okolada
BROWN=bruna
# messages
LIBRELOGO=LibreLogo
ERROR=Eraro (en linio %s)
ERR_ZERODIVISION=Divido per nul.
ERR_NAME=Nekonata nomo: \u201E%s\u201D.
ERR_ARGUMENTS=%s prenas %s argumentojn (%s donitaj).
ERR_BLOCK=Eraro (ekstra a\u016D mankanta spaceto \u0109e krampoj?)
ERR_KEY=Nekonata elemento: %s
ERR_INDEX=Indekso ekster amplekso.
ERR_STOP=Programo haltita:
ERR_MAXRECURSION=superis la maksimuman rekuran profundon (%d).
ERR_MEMORY=nesufi\u0109a memoro.
ERR_NOTAPROGRAM=\u0108u vi volas ruli \u0109i tiun dokumenton?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=avanza|adelante|av|ad
BACKWARD=retrocede|atras|re|at
TURNLEFT=izquierda|giraizquierda|iz|gi
TURNRIGHT=derecha|giraderecha|de|gd
PENUP=sinpluma|subirlapiz|sp|sl
PENDOWN=conpluma|bajarlapiz|cp|bl
HOME=inicio|casa|centro
POINT=punto
CIRCLE=circulo|c\u00EDrculo
ELLIPSE=elipse
SQUARE=cuadrado
RECTANGLE=rect\u00E1ngulo
LABEL=etiqueta
PENCOLOR=color.l\u00E1piz|color.l\u00EDnea|cl
ANY=cualquiera
PENWIDTH=tama\u00F1o.l\u00E1piz|tl
PENSTYLE=estilopluma|estilol\u00EDnea
PENJOINT=conjuntopluma|conjuntol\u00EDnea
PENCAP=fin.l\u00EDnea|punta.l\u00EDnea|fl
NONE=ninguno
BEVEL=bisel
MITER=mitra|inglete|bies
ROUNDED=redondear
SOLID=s\u00F3lido
DASH=discontinua
DOTTED=punteado
CLOSE=cerrar
FILL=relleno|rellenar
FILLCOLOR=color.relleno|relleno.color|cr|fc
FILLTRANSPARENCY=relleno.transparencia|transparencia.relleno
PENTRANSPARENCY=pluma.transparencia|l\u00EDnea.transparencia|transparencia.pluma|transparencia.l\u00EDnea
FILLSTYLE=estilorelleno
FONTCOLOR=color.texto|color.letra
FONTTRANSPARENCY=transparenciafuente|transparenciatexto
FONTHEIGHT=tama\u00F1o.texto|tama\u00F1o.letra
FONTWEIGHT=peso.letra|pl
FONTSTYLE=estilo.letra|estilo.fuente
BOLD=negrita|grueso
ITALIC=cursiva|it\u00E1lica|bastardilla
UPRIGHT=normal
NORMAL=normal
FONTFAMILY=tipo.letra|letra|fuente
CLEARSCREEN=limpiar.pantalla|lp|cs
TEXT=texto
HIDETURTLE=ocultartortuga|ot|ocultarme
SHOWTURTLE=mostrartortuga|mt|mostrarme
POSITION=posici\u00F3n|pos|fijar.posici\u00F3n
HEADING=sentido|direcci\u00F3n|dir
PAGESIZE=tama\u00F1op\u00E1gina
GROUP=imagen|img
# control structures
TO=a
END=fin
STOP=detener
REPEAT=repetir|rep|siempre
REPCOUNT=conteo.veces
BREAK=saltar|interrumpir
CONTINUE=continuar
WHILE=mientras
FOR=para
IN=en
IF=si
OUTPUT=salida
LEFTSTRING=\u201C|\u2018|\u00AB
RIGHTSTRING=\u201D|\u2019|\u00BB
TRUE=verdadero
FALSE=falso
NOT=no
AND=y
OR=o
INPUT=entrada
PRINT=imprimir|escribir
SLEEP=dormir|espera
GLOBAL=global
# functions
RANDOM=aleatorio
INT=int
FLOAT=float
STR=str
SQRT=raiz.cuadrada|raiz|sqrt
LOG10=log10
SIN=sen
COS=cos
ROUND=redondear
ABS=abs
COUNT=recuento|conteo
SET=conjunto
RANGE=intervalo
LIST=lista
TUPLE=tupla
SORTED=ordenado
RESUB=sub
RESEARCH=buscar
REFINDALL=buscar.todo|encontrar.todo|bt
MIN=min
MAX=max
PI=pi|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=h
MM=mm
CM=cm
PT=pt
INCH=in|pulg|"
# color codes
INVISIBLE=invisible
BLACK=negro
SILVER=plata|plateado
GRAY=gris
WHITE=blanco
MAROON=guinda|granate
RED=rojo
PURPLE=p\u00FArpura|morado
FUCHSIA=fucsia|magenta
GREEN=verde
LIME=lima
OLIVE=oliva
YELLOW=amarillo
NAVY=azul.marino|marino
BLUE=azul
TEAL=cerceta|verde.azulado
AQUA=agua|cian
PINK=rosa
TOMATO=tomate|jitomate
ORANGE=naranja
GOLD=oro
VIOLET=violeta
SKYBLUE=azul.cielo|celeste
CHOCOLATE=chocolate
BROWN=marr\u00F3n|caf\u00E9
# messages
LIBRELOGO=LibreLogo
ERROR=Error (en el rengl\u00F3n %s)
ERR_ZERODIVISION=Divisi\u00F3n por cero.
ERR_NAME=Nombre desconocido: \u00AB%s\u00BB.
ERR_ARGUMENTS=%s toma %s argumentos (se proporcionaron %s).
ERR_BLOCK=Error (\u00BFfaltan o sobran espacios en los corchetes?)
ERR_KEY=Elemento desconocido: %s
ERR_INDEX=\u00CDndice fuera del intervalo.
ERR_STOP=Programa finalizado:
ERR_MAXRECURSION=se ha superado la profundidad m\u00E1xima de recursividad (%d).
ERR_MEMORY=no hay memoria suficiente.
ERR_NOTAPROGRAM=\u00BFQuiere ejecutar este documento de texto?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=edasi|e
BACKWARD=tagasi|t
TURNLEFT=vasakule|vasakp\u00F6\u00F6re|v
TURNRIGHT=paremale|paremp\u00F6\u00F6re|p
PENUP=pliiats_\u00FCles|p\u00FC
PENDOWN=pliiats_alla|pa
HOME=koju
POINT=punkt
CIRCLE=ring
ELLIPSE=ellips
SQUARE=ruut
RECTANGLE=ristk\u00FClik
LABEL=silt
PENCOLOR=pliiatsi_v\u00E4rv|joonev\u00E4rv|pv|jv
ANY=mistahes
PENWIDTH=pliiatsi_paksus|pliiatsi_j\u00E4medus|joonepaksus|joonelaius|jl
PENSTYLE=pliiatsi_stiil|joonestiil
PENJOINT=pliiatsi\u00FChendus|joone\u00FChendus
PENCAP=jooneots
NONE=puudub
BEVEL=faasitud
MITER=terav
ROUNDED=\u00FCmar
SOLID=pidev
DASH=kriipsudega
DOTTED=punktiir
CLOSE=sulge
FILL=t\u00E4ida
FILLCOLOR=t\u00E4itev\u00E4rv|tv
FILLTRANSPARENCY=t\u00E4ite_l\u00E4bipaistvus|tlp
PENTRANSPARENCY=pliiatsi_l\u00E4bipaistvus|joone_l\u00E4bipaistvus
FILLSTYLE=t\u00E4itestiil
FONTCOLOR=fondi_v\u00E4rv|teksti_v\u00E4rv
FONTTRANSPARENCY=fondi_l\u00E4bipaistvus|teksti_l\u00E4bipaistvus
FONTHEIGHT=fondi_suurus|teksti_suurus|teksti_k\u00F5rgus
FONTWEIGHT=fondi_paksus
FONTSTYLE=fondi_stiil
BOLD=paks|rasvane
ITALIC=kaldkiri|kursiiv
UPRIGHT=p\u00FCstine|tavaline
NORMAL=keskmine
FONTFAMILY=font|kirjat\u00FC\u00FCp|fondi_perekond
CLEARSCREEN=puhasta_ekraan|pe
TEXT=tekst
HIDETURTLE=peida|peida_kilpkonn|pk
SHOWTURTLE=n\u00E4ita|n\u00E4ita_kilpkonna|nk
POSITION=asukoht|koht|m\u00E4\u00E4ra_koht
HEADING=pealkiri|m\u00E4\u00E4ra_pealkiri
PAGESIZE=lehe_suurus
GROUP=pilt
# control structures
TO=funktsioon|f
END=l\u00F5pp
STOP=peata
REPEAT=korda|igavesti|l\u00F5pmatuseni
REPCOUNT=korduse_number
BREAK=katkesta
CONTINUE=j\u00E4tka
WHILE=kuniks
FOR=igale_elemendile
IN=hulgas
IF=kui
OUTPUT=v\u00E4ljund
LEFTSTRING=\u201E
RIGHTSTRING=\u201D|\u201C
TRUE=t\u00F5ene
FALSE=v\u00E4\u00E4r
NOT=pole|mitte|ei
AND=ja
OR=v\u00F5i
INPUT=sisend
PRINT=kirjuta|prindi
SLEEP=oota
GLOBAL=\u00FCldine
# functions
RANDOM=juhuslik
INT=t\u00E4isarv
FLOAT=ujukomaarv|ujukoma
STR=s\u00F5ne|string
SQRT=ruutjuur|rtjr|\u221A
LOG10=log10
SIN=sin
COS=cos
ROUND=\u00FCmar
ABS=absoluutv\u00E4\u00E4rtus|abs
COUNT=loenda
SET=hulk
RANGE=vahemik
LIST=loend
TUPLE=ennik|kortee\u017E
SORTED=sorditud
RESUB=asenda
RESEARCH=otsi
REFINDALL=leia_k\u00F5ik
MIN=min
MAX=max|maks
PI=pii|\u03C0
# measurement
DECIMAL=,
DEG=\u00B0
HOUR=t
MM=mm
CM=cm
PT=pt
INCH=tolli|"|\u2033
# color codes
INVISIBLE=n\u00E4htamatu
BLACK=must
SILVER=h\u00F5bedane
GRAY=hall
WHITE=valge
MAROON=kastanpruun
RED=punane
PURPLE=lilla
FUCHSIA=magenta|fuksiapunane
GREEN=roheline
LIME=laimiroheline|laimikarva
OLIVE=kollakasroheline|oliivroheline|oliivikarva
YELLOW=kollane
NAVY=meresinine
BLUE=sinine
TEAL=sinakasroheline
AQUA=rohekassinine|ts\u00FCaan
PINK=roosa
TOMATO=tomatipunane|tomatikarva
ORANGE=oran\u017E|apelsinikarva
GOLD=kuldne
VIOLET=violetne
SKYBLUE=taevasinine
CHOCOLATE=\u0161okolaadipruun|\u0161okolaadikarva
BROWN=pruun
# messages
LIBRELOGO=LibreLogo
ERROR=Viga (real %s)
ERR_ZERODIVISION=Nulliga jagamine.
ERR_NAME=Tundmatu nimi: \u201E%s\u201D.
ERR_ARGUMENTS=%s v\u00F5tab %s argumenti (aga anti %s).
ERR_BLOCK=Viga (liiga palju v\u00F5i v\u00E4he t\u00FChikuid sulgude juures?)
ERR_KEY=Tundmatu element: %s
ERR_INDEX=Indeks vahemikust v\u00E4ljas.
ERR_STOP=Programm l\u00F5petatud:
ERR_MAXRECURSION=\u00FCletati suurim rekursioonis\u00FCgavus (%d).
ERR_MEMORY=pole piisavalt m\u00E4lu.
ERR_NOTAPROGRAM=Kas soovid seda tekstidokumenti k\u00E4ivitada?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=aurrera|aur
BACKWARD=atzera|atz
TURNLEFT=ezkerra|ezkerrera|ezk
TURNRIGHT=eskuina|eskuinera|esk
PENUP=lumagora|lg
PENDOWN=lumabehera|lb
HOME=hasiera
POINT=puntua
CIRCLE=zirkulua
ELLIPSE=elipsea
SQUARE=karratu
RECTANGLE=laukizuzena
LABEL=etiketa
PENCOLOR=lumakolorea|marrakolorea|lk
ANY=edozein
PENWIDTH=lumatamaina|lumazabalera|marrazabalera|lz
PENSTYLE=lumaestiloa|marraestiloa
PENJOINT=lumajuntura|marrajuntura
PENCAP=lumaestalkia|marraestalkia
NONE=bat ere ez
BEVEL=alakatua
MITER=ebakia
ROUNDED=biribildua
SOLID=solidoa
DASH=marratua
DOTTED=puntukatua
CLOSE=itxi
FILL=bete
FILLCOLOR=betetzekolorea|bk
FILLTRANSPARENCY=betetzegardentasuna
PENTRANSPARENCY=lumagardentasuna|marragardentasuna
FILLSTYLE=betetzeestiloa
FONTCOLOR=letrakolorea|testukolorea
FONTTRANSPARENCY=letragardentasuna|testugardentasuna
FONTHEIGHT=letratamaina|testutamaina|testualtuera
FONTWEIGHT=letralodiera
FONTSTYLE=letraestiloa
BOLD=lodia
ITALIC=etzana
UPRIGHT=tente|normala
NORMAL=normala
FONTFAMILY=letrafamilia
CLEARSCREEN=garbitupantaila|gp
TEXT=testua
HIDETURTLE=ezkutatudortoka|ed|ezkutatuni
SHOWTURTLE=erakutsidortoka|rd|erakutsini
POSITION=kokagunea|pos|ezarrikokagunea
HEADING=izenburua|ezarriizenburua|ezarrii
PAGESIZE=orritamaina
GROUP=irudia|irud
# control structures
TO=nora
END=amaiera
STOP=gelditu
REPEAT=errepikatu|betiko
REPCOUNT=errepzenbak
BREAK=jauzia
CONTINUE=jarraitu
WHILE=bitartean
FOR=honentzat
IN=hemen
IF=bada
OUTPUT=Irteera
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=egiazkoa
FALSE=faltsua
NOT=ez
AND=eta
OR=edo
INPUT=sarrera
PRINT=inprimatu
SLEEP=loegin
GLOBAL=globala
# functions
RANDOM=ausazkoa
INT=osoa
FLOAT=dezimala
STR=str
SQRT=sqrt
LOG10=log10
SIN=sin
COS=cos
ROUND=biribildua
ABS=abs
COUNT=zenbaketa
SET=ezarri
RANGE=barrutia
LIST=zerrenda
TUPLE=tuploa
SORTED=ordenatua
RESUB=azpi
RESEARCH=bilatu
REFINDALL=bilatudenak
MIN=min
MAX=max
PI=pi|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=h
MM=mm
CM=cm
PT=pt
INCH=in|"
# color codes
INVISIBLE=Ikusezina
BLACK=beltza
SILVER=zilarra
GRAY=grisa
WHITE=zuria
MAROON=granatea
RED=gorria
PURPLE=morea
FUCHSIA=magenta
GREEN=berdea
LIME=lima
OLIVE=oliba
YELLOW=horia
NAVY=itsasurdina
BLUE=urdina
TEAL=urdin berdexka
AQUA=ura|cyana
PINK=arrosa
TOMATO=tomatea
ORANGE=laranja
GOLD=urrea
VIOLET=bioleta
SKYBLUE=zeruurdina
CHOCOLATE=txokolatea
BROWN=marroia
# messages
LIBRELOGO=LibreLogo
ERROR=Errorea (%s lerroan)
ERR_ZERODIVISION=Zatitzailea zero.
ERR_NAME=Izen ezezaguna: \u201C%s\u201D.
ERR_ARGUMENTS=%s(e)k %s argumentu hartu ditu (%s emanda).
ERR_BLOCK=Errorea (zuriuneak soberan edo faltan parentesietan?)
ERR_KEY=Elementu ezezaguna: %s
ERR_INDEX=Indizea barrutitik kanpo.
ERR_STOP=Programa eten da:
ERR_MAXRECURSION=gehieneko errekurtsio-sakonera (%d) gainditu da.
ERR_MEMORY=nahiko memoriarik ez.
ERR_NOTAPROGRAM=Testu-dokumentu hau exekutatu nahi duzu?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=forward|fd
BACKWARD=back|bk
TURNLEFT=left|turnleft|lt
TURNRIGHT=right|turnright|rt
PENUP=penup|pu
PENDOWN=pendown|pd
HOME=home
POINT=point
CIRCLE=circle
ELLIPSE=ellipse
SQUARE=square
RECTANGLE=rectangle
LABEL=label
PENCOLOR=pencolor|pencolour|linecolor|pc
ANY=any
PENWIDTH=pensize|penwidth|linewidth|ps
PENSTYLE=penstyle|linestyle
PENJOINT=penjoint|linejoint
PENCAP=pencap|linecap
NONE=\u0647\u06CC\u0686\u200C\u06A9\u062F\u0627\u0645
BEVEL=bevel
MITER=miter
ROUNDED=round
SOLID=solid
DASH=dashed
DOTTED=dotted
CLOSE=close
FILL=fill
FILLCOLOR=fillcolor|fillcolour|fc
FILLTRANSPARENCY=filltransparency
PENTRANSPARENCY=pentransparency|linetransparency
FILLSTYLE=fillstyle
FONTCOLOR=fontcolor|textcolor|textcolour
FONTTRANSPARENCY=fonttransparency|texttransparency
FONTHEIGHT=fontsize|textsize|textheight
FONTWEIGHT=fontweight
FONTSTYLE=fontstyle
BOLD=\u0636\u062E\u06CC\u0645
ITALIC=italic
UPRIGHT=upright|normal
NORMAL=\u0645\u0639\u0645\u0648\u0644\u06CC
FONTFAMILY=fontfamily
CLEARSCREEN=clearscreen|cs
TEXT=\u0645\u062A\u0646
HIDETURTLE=hideturtle|ht|hideme
SHOWTURTLE=showturtle|st|showme
POSITION=position|pos|setpos
HEADING=heading|setheading|seth
PAGESIZE=pagesize
GROUP=picture|pic
# control structures
TO=to
END=end
STOP=stop
REPEAT=repeat|forever
REPCOUNT=repcount
BREAK=break
CONTINUE=continue
WHILE=while
FOR=\u0628\u0631\u0627\u06CC
IN=\u0627\u06CC\u0646\u0686
IF=if
OUTPUT=output
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=true
FALSE=false
NOT=not
AND=\u0648
OR=\u06CC\u0627
INPUT=input
PRINT=print
SLEEP=sleep
GLOBAL=global
# functions
RANDOM=random
INT=int
FLOAT=float
STR=str
SQRT=sqrt
LOG10=log10
SIN=sin
COS=cos
ROUND=round
ABS=abs
COUNT=count
SET=set
RANGE=\u0645\u062D\u062F\u0648\u062F\u0647
LIST=list
TUPLE=tuple
SORTED=\u0645\u0631\u062A\u0628\u200C\u0634\u062F\u0647
RESUB=sub
RESEARCH=search
REFINDALL=findall
MIN=min
MAX=max
PI=pi|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=h
MM=\u0645.\u0645.
CM=\u0633.\u0645.
PT=\u0646\u0642\u0637\u0647
INCH=in|"
# color codes
INVISIBLE=invisible
BLACK=\u0633\u06CC\u0627\u0647
SILVER=silver
GRAY=gray|grey
WHITE=white
MAROON=maroon
RED=red
PURPLE=purple
FUCHSIA=fuchsia|magenta
GREEN=green
LIME=lime
OLIVE=olive
YELLOW=yellow
NAVY=navy
BLUE=blue
TEAL=teal
AQUA=aqua|cyan
PINK=pink
TOMATO=tomato
ORANGE=orange
GOLD=gold
VIOLET=violet
SKYBLUE=skyblue
CHOCOLATE=chocolate
BROWN=brown
# messages
LIBRELOGO=LibreLogo
ERROR=Error (in line %s)
ERR_ZERODIVISION=\u062A\u0642\u0633\u06CC\u0645 \u0628\u0631 \u0635\u0641\u0631
ERR_NAME=Unknown name: \u201C%s\u201D.
ERR_ARGUMENTS=%s takes %s arguments (%s given).
ERR_BLOCK=Error (extra or missing spaces at brackets?)
ERR_KEY=Unknown element: %s
ERR_INDEX=Index out of range.
ERR_STOP=Program terminated:
ERR_MAXRECURSION=maximum recursion depth (%d) exceeded.
ERR_MEMORY=not enough memory.
ERR_NOTAPROGRAM=Do you want to run this text document?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=eteen|et
BACKWARD=taakse|tk
TURNLEFT=vasemmalle|vas
TURNRIGHT=oikealle|oik
PENUP=kyn\u00E4yl\u00F6s|ky
PENDOWN=kyn\u00E4alas|ka
HOME=kotiin
POINT=piste
CIRCLE=ympyr\u00E4
ELLIPSE=ellipsi
SQUARE=neli\u00F6
RECTANGLE=suorakulmio
LABEL=selite
PENCOLOR=kyn\u00E4nv\u00E4ri|kv
ANY=jokin
PENWIDTH=kyn\u00E4nleveys|kl
PENSTYLE=kyn\u00E4ntyyli
PENJOINT=kyn\u00E4nmuoto
PENCAP=viivanp\u00E4\u00E4
NONE=eimit\u00E4\u00E4n
BEVEL=viisto
MITER=jiiri
ROUNDED=py\u00F6re\u00E4
SOLID=yhten\u00E4inen
DASH=katkonainen
DOTTED=pisteist\u00E4
CLOSE=sulje
FILL=t\u00E4yt\u00E4
FILLCOLOR=t\u00E4ytt\u00F6v\u00E4ri|tv
FILLTRANSPARENCY=t\u00E4ytt\u00F6l\u00E4pin\u00E4kyvyys
PENTRANSPARENCY=kyn\u00E4nl\u00E4pin\u00E4kyvyys
FILLSTYLE=t\u00E4ytt\u00F6tyyli
FONTCOLOR=fontinv\u00E4ri
FONTTRANSPARENCY=fontinl\u00E4pin\u00E4kyvyys
FONTHEIGHT=fonttikoko
FONTWEIGHT=fontinpaksuus
FONTSTYLE=fonttityyli
BOLD=lihavointi
ITALIC=kursivointi
UPRIGHT=pysty
NORMAL=tavallinen
FONTFAMILY=fonttiperhe
CLEARSCREEN=tyhjenn\u00E4n\u00E4ytt\u00F6|tn
TEXT=teksti
HIDETURTLE=piilotakonna|pk
SHOWTURTLE=n\u00E4yt\u00E4konna|nk
POSITION=paikka
HEADING=suunta
PAGESIZE=sivukoko
GROUP=kuva
# control structures
TO=tee
END=loppu
STOP=pys\u00E4yt\u00E4
REPEAT=toista
REPCOUNT=toistokerrat
BREAK=keskeyt\u00E4
CONTINUE=jatka
WHILE=kunhan
FOR=jokaiselle
IN=:ssa|:ss\u00E4
IF=jos
OUTPUT=kirjoita
LEFTSTRING="|'|\u201D
RIGHTSTRING="|'|\u201D
TRUE=tosi
FALSE=ep\u00E4tosi
NOT=ei
AND=ja
OR=tai
INPUT=sy\u00F6t\u00E4
PRINT=tulosta
SLEEP=nuku
GLOBAL=yhteinen
# functions
RANDOM=satunnainen
INT=kokonaisl
FLOAT=desimaalil
STR=mjono
SQRT=neli\u00F6juuri
LOG10=log10
SIN=sini
COS=kosini
ROUND=py\u00F6re\u00E4
ABS=itseisarvo
COUNT=lukum\u00E4\u00E4r\u00E4
SET=joukko
RANGE=alue
LIST=lista
TUPLE=pari
SORTED=lajiteltu
RESUB=korvaa
RESEARCH=etsi
REFINDALL=etsikaikki
MIN=pienin
MAX=suurin
PI=pii|\u03C0
# measurement
DECIMAL=,
DEG=\u00B0
HOUR=h
MM=mm
CM=cm
PT=pt
INCH=tuuma
# color codes
INVISIBLE=n\u00E4kym\u00E4t\u00F6n
BLACK=musta
SILVER=hopea
GRAY=harmaa
WHITE=valkoinen
MAROON=punaruskea
RED=punainen
PURPLE=purppura
FUCHSIA=fuksia
GREEN=vihre\u00E4
LIME=limetti
OLIVE=oliivi
YELLOW=keltainen
NAVY=laivasto
BLUE=sininen
TEAL=sinivihre\u00E4
AQUA=syaani
PINK=pinkki
TOMATO=tomaatti
ORANGE=oranssi
GOLD=kulta
VIOLET=violetti
SKYBLUE=taivaansininen
CHOCOLATE=suklaa
BROWN=ruskea
# messages
LIBRELOGO=LibreLogo
ERROR=Virhe (rivill\u00E4 %s)
ERR_ZERODIVISION=Jako nollalla.
ERR_NAME=Tuntematon nimi: \u201D%s\u201D.
ERR_ARGUMENTS=%s tarvitsee %s argumenttia (%s annettu).
ERR_BLOCK=Virhe (liikaa tai liian v\u00E4h\u00E4n v\u00E4lej\u00E4 sulkumerkkien vieress\u00E4?)
ERR_KEY=Tuntematon elementti: %s
ERR_INDEX=Indeksimuuttuja arvoalueen ulkopuolella.
ERR_STOP=Ohjelma on lopetettu:
ERR_MAXRECURSION=suurin sallittu rekursion syvyys (%d) on saavutettu.
ERR_MEMORY=muisti ei riit\u00E4.
ERR_NOTAPROGRAM=Haluatko suorittaa t\u00E4m\u00E4n tekstiasiakirjan?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=avance|av
BACKWARD=recule|re
TURNLEFT=gauche|tournegauche|ga
TURNRIGHT=droite|tournedroite|dr
PENUP=levecrayon|lc
PENDOWN=baissecrayon|bc
HOME=origine
POINT=point
CIRCLE=cercle
ELLIPSE=ellipse
SQUARE=carr\u00E9
RECTANGLE=rectangle
LABEL=\u00E9tiquette
PENCOLOR=couleurcrayon|ccrayon|couleurligne|cc
ANY=tout
PENWIDTH=tailleplume|taillecrayon|largeurligne|ta
PENSTYLE=stylecrayon|styleligne
PENJOINT=jointurestylo|jointureligne
PENCAP=coiffecrayon|coiffeligne
NONE=aucun(e)
BEVEL=biseau
MITER=mitre
ROUNDED=arrondi
SOLID=plein
DASH=tiret
DOTTED=pointill\u00E9
CLOSE=fermer
FILL=remplir
FILLCOLOR=couleurremplissage|cremplissage|cr
FILLTRANSPARENCY=transparenceremplir
PENTRANSPARENCY=transparencecrayon|tranparenceligne
FILLSTYLE=styleremplissage
FONTCOLOR=couleurpolice|couleurtexte|ctexte
FONTTRANSPARENCY=transparencepolice|transparencetexte
FONTHEIGHT=taillepolice|tailletexte|largeurtexte
FONTWEIGHT=graisse
FONTSTYLE=stylepolice
BOLD=gras
ITALIC=italique
UPRIGHT=hautdroit|normal
NORMAL=normal
FONTFAMILY=famillepolice
CLEARSCREEN=efface\u00E9cran|ee
TEXT=texte
HIDETURTLE=cachetortue|ct|cachemoi
SHOWTURTLE=montretortue|mt|montremoi
POSITION=position|pos|fixepos
HEADING=cap|fixecap|fc
PAGESIZE=taillepage
GROUP=image|ima
# control structures
TO=\u00E0
END=fin
STOP=stop
REPEAT=r\u00E9p\u00E8te|toujours
REPCOUNT=nombrerep
BREAK=saut
CONTINUE=continuer
WHILE=pendant
FOR=pour
IN=dans
IF=si
OUTPUT=sortie
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=vrai
FALSE=faux
NOT=non
AND=et
OR=ou
INPUT=saisie
PRINT=\u00E9cris
SLEEP=suspendre
GLOBAL=global
# functions
RANDOM=hasard
INT=ent
FLOAT=virgule
STR=car
SQRT=racine
LOG10=log10
SIN=sin
COS=cos
ROUND=arrondi
ABS=abs
COUNT=compte
SET=fixe
RANGE=plage
LIST=liste
TUPLE=tuple
SORTED=tri\u00E9
RESUB=sub
RESEARCH=recherche
REFINDALL=touttrouver
MIN=min
MAX=max
PI=pi|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=h
MM=mm
CM=cm
PT=pt
INCH=in|"
# color codes
INVISIBLE=invisible
BLACK=noir
SILVER=argent
GRAY=gris|gris
WHITE=blanc
MAROON=marron
RED=rouge
PURPLE=pourpre
FUCHSIA=fuchsia|magenta
GREEN=vert
LIME=citron
OLIVE=olive
YELLOW=jaune
NAVY=marine
BLUE=bleu
TEAL=bleuclair
AQUA=turquoise|cyan
PINK=rose
TOMATO=tomate
ORANGE=orange
GOLD=or
VIOLET=violet
SKYBLUE=bleuciel
CHOCOLATE=chocolat
BROWN=marronclair
# messages
LIBRELOGO=LibreLogo
ERROR=Erreur (\u00E0 la ligne %s)
ERR_ZERODIVISION=Division par z\u00E9ro.
ERR_NAME=Nom inconnu : \u201C%s\u201D.
ERR_ARGUMENTS=%s prend les arguments %s (%s donn\u00E9).
ERR_BLOCK=Erreur (espaces suppl\u00E9mentaires ou manquants entre les parenth\u00E8ses ?)
ERR_KEY=\u00C9l\u00E9ment inconnu : %s
ERR_INDEX=Index en dehors de la plage.
ERR_STOP=Programme arr\u00EAt\u00E9 :
ERR_MAXRECURSION=profondeur (%d) de r\u00E9cursion maximum d\u00E9pass\u00E9e.
ERR_MEMORY=m\u00E9moire insuffisante.
ERR_NOTAPROGRAM=Souhaitez-vous ex\u00E9cuter ce document texte ?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=forward|fd
BACKWARD=back|bk
TURNLEFT=left|turnleft|lt
TURNRIGHT=right|turnright|rt
PENUP=penup|pu
PENDOWN=pendown|pd
HOME=home
POINT=point
CIRCLE=circle
ELLIPSE=ellipse
SQUARE=square
RECTANGLE=rectangle
LABEL=label
PENCOLOR=pencolor|pencolour|linecolor|pc
ANY=any
PENWIDTH=pensize|penwidth|linewidth|ps
PENSTYLE=penstyle|linestyle
PENJOINT=penjoint|linejoint
PENCAP=pencap|linecap
NONE=none
BEVEL=bevel
MITER=miter
ROUNDED=round
SOLID=solid
DASH=dashed
DOTTED=dotted
CLOSE=close
FILL=fill
FILLCOLOR=fillcolor|fillcolour|fc
FILLTRANSPARENCY=filltransparency
PENTRANSPARENCY=pentransparency|linetransparency
FILLSTYLE=fillstyle
FONTCOLOR=fontcolor|textcolor|textcolour
FONTTRANSPARENCY=fonttransparency|texttransparency
FONTHEIGHT=fontsize|textsize|textheight
FONTWEIGHT=fontweight
FONTSTYLE=fontstyle
BOLD=bold
ITALIC=italic
UPRIGHT=upright|normal
NORMAL=normal
FONTFAMILY=fontfamily
CLEARSCREEN=clearscreen|cs
TEXT=text
HIDETURTLE=hideturtle|ht|hideme
SHOWTURTLE=showturtle|st|showme
POSITION=position|pos|setpos
HEADING=heading|setheading|seth
PAGESIZE=pagesize
GROUP=picture|pic
# control structures
TO=to
END=end
STOP=stop
REPEAT=repeat|forever
REPCOUNT=repcount
BREAK=break
CONTINUE=continue
WHILE=while
FOR=for
IN=in
IF=if
OUTPUT=output
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=true
FALSE=false
NOT=not
AND=and
OR=or
INPUT=input
PRINT=print
SLEEP=sleep
GLOBAL=global
# functions
RANDOM=random
INT=int
FLOAT=float
STR=str
SQRT=sqrt
LOG10=log10
SIN=sin
COS=cos
ROUND=round
ABS=abs
COUNT=count
SET=set
RANGE=range
LIST=list
TUPLE=tuple
SORTED=sorted
RESUB=sub
RESEARCH=search
REFINDALL=findall
MIN=min
MAX=max
PI=pi|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=h
MM=mm
CM=cm
PT=pt
INCH=in|"
# color codes
INVISIBLE=invisible
BLACK=black
SILVER=silver
GRAY=gray|grey
WHITE=white
MAROON=maroon
RED=red
PURPLE=purple
FUCHSIA=fuchsia|magenta
GREEN=green
LIME=lime
OLIVE=olive
YELLOW=yellow
NAVY=navy
BLUE=blue
TEAL=teal
AQUA=aqua|cyan
PINK=pink
TOMATO=tomato
ORANGE=orange
GOLD=gold
VIOLET=violet
SKYBLUE=skyblue
CHOCOLATE=chocolate
BROWN=brown
# messages
LIBRELOGO=LibreLogo
ERROR=Error (in line %s)
ERR_ZERODIVISION=Division by zero.
ERR_NAME=Unknown name: \u201C%s\u201D.
ERR_ARGUMENTS=%s takes %s arguments (%s given).
ERR_BLOCK=Error (extra or missing spaces at brackets?)
ERR_KEY=Unknown element: %s
ERR_INDEX=Index out of range.
ERR_STOP=Program terminated:
ERR_MAXRECURSION=maximum recursion depth (%d) exceeded.
ERR_MEMORY=not enough memory.
ERR_NOTAPROGRAM=Do you want to run this text document?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=foar\u00FAt|fu
BACKWARD=tebek|tb
TURNLEFT=links|links\u00F4f|lf
TURNRIGHT=rjochts|rjochts\u00F4f|rs
PENUP=penomheech|po
PENDOWN=penomleech|po
HOME=th\u00FAs
POINT=punt
CIRCLE=sirkel
ELLIPSE=elips
SQUARE=fjouwerkant
RECTANGLE=rjochthoek
LABEL=lebel
PENCOLOR=penkleur|linekleur|pk
ANY=elke
PENWIDTH=pengrutte|pentsjokte|penbreedte|pg
PENSTYLE=penstyl|linestyl|linestyl
PENJOINT=penferbining|lineferbining
PENCAP=penein|lineein
NONE=gjint
BEVEL=skean dwaan
MITER=snijend
ROUNDED=r\u00FBn
SOLID=fol
DASH=strepe
DOTTED=stippele
CLOSE=slute
FILL=folje
FILLCOLOR=opfolkleur|ok
FILLTRANSPARENCY=follingtrochsichtigens
PENTRANSPARENCY=pentrochsichtigens|linetrochsichtigens
FILLSTYLE=folling
FONTCOLOR=letterkleur|tekstkleur
FONTTRANSPARENCY=lettertypetrochsichtens|teksttrochsichtens
FONTHEIGHT=lettergrutte|tekstgrutte|teksthichte
FONTWEIGHT=letter tsjokte
FONTSTYLE=tekststyl|letterstyl
BOLD=fet
ITALIC=skeanprinte
UPRIGHT=rjochtop|normaal
NORMAL=normaal
FONTFAMILY=tekstfamylje
CLEARSCREEN=skermleechmakker|skjin|sl
TEXT=tekst
HIDETURTLE=ferbergje|fb
SHOWTURTLE=sjenlitte|sl
POSITION=posysje|pos|setpos
HEADING=rjochting
PAGESIZE=sidegrutte
GROUP=\u00F4fbylding|\u00F4fb
# control structures
TO=nei
END=ein
STOP=oph\u00E2lde
REPEAT=werhelje|foaraltyd
REPCOUNT=kearwerhelje
BREAK=\u00F4fbrekke
CONTINUE=trochgean
WHILE=salang
FOR=foar
IN=yn
IF=as
OUTPUT=\u00FAtfier
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=wier
FALSE=\u00FBnwier
NOT=net
AND=en
OR=of
INPUT=ynfier
PRINT=printsje
SLEEP=sliepe
GLOBAL=globaal
# functions
RANDOM=willekeurich
INT=ynt
FLOAT=driuwe
STR=str
SQRT=sqrt|fjouwerkantswoartel|fw
LOG10=log10
SIN=sin
COS=cos
ROUND=\u00F4fr\u00FBne
ABS=abs
COUNT=tal
SET=set|ynstelle
RANGE=berik
LIST=list
TUPLE=tuple
SORTED=sortearre
RESUB=\u00FBnderline
RESEARCH=sykje
REFINDALL=sykjealles
MIN=min
MAX=maks
PI=pi|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=h
MM=mm
CM=sm
PT=pt
INCH=tomme|"
# color codes
INVISIBLE=\u00FBnsichtber
BLACK=swart
SILVER=silver
GRAY=griis
WHITE=wyt
MAROON=kastanjebr\u00FBn
RED=read
PURPLE=pears
FUCHSIA=fuchsia|magenta
GREEN=grien
LIME=limoen
OLIVE=oliifgrien
YELLOW=giel
NAVY=navyblau
BLUE=blau
TEAL=grienblau
AQUA=wetter|cyaan
PINK=r\u00F4s
TOMATO=tomaat
ORANGE=oranje
GOLD=goud
VIOLET=fiolet
SKYBLUE=himelsblau
CHOCOLATE=s\u00FBkelade
BROWN=br\u00FAn
# messages
LIBRELOGO=LibreLogo
ERROR=Flater (op rigel %s)
ERR_ZERODIVISION=Dieling troch nul.
ERR_NAME=Unbekende namme: \u201C%s\u201D.
ERR_ARGUMENTS=%s hat %s arguminten nedich (%s j\u00FBn).
ERR_BLOCK=Flater (ekstra of \u00FBntbrekkende spaasjes by heakjes?)
ERR_KEY=Unbekend elemint %s
ERR_INDEX=Yndeks b\u00FBten berik.
ERR_STOP=Programma \u00F4fbr\u00FAtsen:
ERR_MAXRECURSION=maksimum fan rekursiedjipte (%d) oer gien.
ERR_MEMORY=net gen\u00F4ch \u00FBnth\u00E2ld.
ERR_NOTAPROGRAM=Wolle jo it tekstdokumint \u00FAtfiere?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=forward|fd
BACKWARD=back|bk
TURNLEFT=left|turnleft|lt
TURNRIGHT=right|turnright|rt
PENUP=penup|pu
PENDOWN=pendown|pd
HOME=home
POINT=point
CIRCLE=circle
ELLIPSE=ellipse
SQUARE=square
RECTANGLE=rectangle
LABEL=label
PENCOLOR=pencolor|pencolour|linecolor|pc
ANY=any
PENWIDTH=pensize|penwidth|linewidth|ps
PENSTYLE=penstyle|linestyle
PENJOINT=penjoint|linejoint
PENCAP=pencap|linecap
NONE=none
BEVEL=bevel
MITER=miter
ROUNDED=round
SOLID=solid
DASH=dashed
DOTTED=dotted
CLOSE=close
FILL=fill
FILLCOLOR=fillcolor|fillcolour|fc
FILLTRANSPARENCY=filltransparency
PENTRANSPARENCY=pentransparency|linetransparency
FILLSTYLE=fillstyle
FONTCOLOR=fontcolor|textcolor|textcolour
FONTTRANSPARENCY=fonttransparency|texttransparency
FONTHEIGHT=fontsize|textsize|textheight
FONTWEIGHT=fontweight
FONTSTYLE=fontstyle
BOLD=bold
ITALIC=italic
UPRIGHT=upright|normal
NORMAL=normal
FONTFAMILY=fontfamily
CLEARSCREEN=clearscreen|cs
TEXT=text
HIDETURTLE=hideturtle|ht|hideme
SHOWTURTLE=showturtle|st|showme
POSITION=position|pos|setpos
HEADING=heading|setheading|seth
PAGESIZE=pagesize
GROUP=picture|pic
# control structures
TO=to
END=end
STOP=stop
REPEAT=repeat|forever
REPCOUNT=repcount
BREAK=break
CONTINUE=continue
WHILE=while
FOR=for
IN=in
IF=if
OUTPUT=output
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=true
FALSE=false
NOT=not
AND=and
OR=or
INPUT=input
PRINT=print
SLEEP=sleep
GLOBAL=global
# functions
RANDOM=random
INT=int
FLOAT=float
STR=str
SQRT=sqrt
LOG10=log10
SIN=sin
COS=cos
ROUND=round
ABS=abs
COUNT=count
SET=set
RANGE=range
LIST=list
TUPLE=tuple
SORTED=sorted
RESUB=sub
RESEARCH=search
REFINDALL=findall
MIN=min
MAX=max
PI=pi|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=h
MM=mm
CM=cm
PT=pt
INCH=in|"
# color codes
INVISIBLE=invisible
BLACK=black
SILVER=silver
GRAY=gray|grey
WHITE=white
MAROON=maroon
RED=red
PURPLE=purple
FUCHSIA=fuchsia|magenta
GREEN=green
LIME=lime
OLIVE=olive
YELLOW=yellow
NAVY=navy
BLUE=blue
TEAL=teal
AQUA=aqua|cyan
PINK=pink
TOMATO=tomato
ORANGE=orange
GOLD=gold
VIOLET=violet
SKYBLUE=skyblue
CHOCOLATE=chocolate
BROWN=brown
# messages
LIBRELOGO=LibreLogo
ERROR=Earr\u00E1id (ar l\u00EDne %s)
ERR_ZERODIVISION=Roinnt le nialas.
ERR_NAME=Ainm anaithnid: \u201C%s\u201D.
ERR_ARGUMENTS=Glacann %s le %s arg\u00F3int (bh\u00ED %s arg\u00F3int ann).
ERR_BLOCK=Earr\u00E1id (sp\u00E1sanna breise n\u00F3 ar iarraidh in aice leis na l\u00FAib\u00EDn\u00ED?)
ERR_KEY=Eilimint anaithnid: %s
ERR_INDEX=Inn\u00E9acs as raon.
ERR_STOP=Stopadh an r\u00EDomhchl\u00E1r:
ERR_MAXRECURSION=s\u00E1ra\u00EDodh an uasdoimhneacht athch\u00FArs\u00E1la (%d).
ERR_MEMORY=cuimhne \u00EDdithe.
ERR_NOTAPROGRAM=An bhfuil fonn ort an ch\u00E1ip\u00E9is t\u00E9acs a chur ar si\u00FAl?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=forward|fd
BACKWARD=back|bk
TURNLEFT=left|turnleft|lt
TURNRIGHT=right|turnright|rt
PENUP=penup|pu
PENDOWN=pendown|pd
HOME=dhachaigh
POINT=puing
CIRCLE=cearcall
ELLIPSE=eileaps
SQUARE=ce\u00E0rnag
RECTANGLE=ceart-che\u00E0rnach
LABEL=leubail
PENCOLOR=pencolor|pencolour|linecolor|pc
ANY=gin
PENWIDTH=pensize|penwidth|linewidth|ps
PENSTYLE=penstyle|linestyle
PENJOINT=penjoint|linejoint
PENCAP=pencap|linecap
NONE=chan eil gin
BEVEL=beibheal
MITER=bairrin
ROUNDED=cruinn
SOLID=soladach
DASH=str\u00ECochagach
DOTTED=dotagach
CLOSE=close
FILL=fill
FILLCOLOR=fillcolor|fillcolour|fc
FILLTRANSPARENCY=filltransparency
PENTRANSPARENCY=pentransparency|linetransparency
FILLSTYLE=stoidhle an l\u00EConaidh
FONTCOLOR=fontcolor|textcolor|textcolour
FONTTRANSPARENCY=fonttransparency|texttransparency
FONTHEIGHT=fontsize|textsize|textheight
FONTWEIGHT=fontweight
FONTSTYLE=fontstyle
BOLD=trom
ITALIC=eadailteach
UPRIGHT=upright|normal
NORMAL=\u00E0bhaisteach
FONTFAMILY=teaghlach a' chruth-chl\u00F2
CLEARSCREEN=clearscreen|cs
TEXT=teacsa
HIDETURTLE=hideturtle|ht|hideme
SHOWTURTLE=showturtle|st|showme
POSITION=position|pos|setpos
HEADING=heading|setheading|seth
PAGESIZE=pagesize
GROUP=picture|pic
# control structures
TO=gu
END=deireadh
STOP=sguir
REPEAT=repeat|forever
REPCOUNT=repcount
BREAK=break
CONTINUE=continue
WHILE=while
FOR=airson
IN=\u00F2irleach
IF=if
OUTPUT=output
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=true
FALSE=false
NOT=chan e
AND=agus
OR=no
INPUT=input
PRINT=cl\u00F2-bhuail
SLEEP=sleep
GLOBAL=global
# functions
RANDOM=random
INT=int
FLOAT=float
STR=str
SQRT=sqrt
LOG10=log10
SIN=sin
COS=cos
ROUND=cruinn
ABS=abs
COUNT=cunntas
SET=set
RANGE=rainse
LIST=list
TUPLE=tuple
SORTED=air a she\u00F2rsachadh
RESUB=sub
RESEARCH=search
REFINDALL=findall
MIN=as lugha
MAX=as motha
PI=pi|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=h
MM=mm
CM=cm
PT=pt
INCH=\u00F2irlich|"
# color codes
INVISIBLE=do-fhaicsinneach
BLACK=dubh
SILVER=airgid
GRAY=gray|grey
WHITE=geal
MAROON=ciar-dhonn
RED=dearg
PURPLE=purpaidh
FUCHSIA=fuchsia|magenta
GREEN=uaine
LIME=dath na liomaideig
OLIVE=donn-uaine
YELLOW=buidhe
NAVY=gorm a' chabhlaich
BLUE=gorm
TEAL=dath na crann-lach
AQUA=aqcua|saidhean
PINK=pinc
TOMATO=tom\u00E0to
ORANGE=orains
GOLD=\u00F2ir
VIOLET=dath na fail-chuaiche
SKYBLUE=speur-ghorm
CHOCOLATE=dath na se\u00F2claid
BROWN=donn
# messages
LIBRELOGO=LibreLogo
ERROR=Mearachd (ann an loidhne %s)
ERR_ZERODIVISION=Roinneadh le neoini.
ERR_NAME=Ainm neo-aithnichte: \u201C%s\u201D.
ERR_ARGUMENTS=Gabhaidh %s %s argamaidean (thug thu seachad %s).
ERR_BLOCK=Mearachd (cus \u00E0itichean no feadhainn a dh\u00ECth aig na bracaidean?)
ERR_KEY=Eileamaid neo-aithnichte: %s
ERR_INDEX=Tha an cl\u00E0r-amais taobh a-muigh na rainse.
ERR_STOP=Chaidh cr\u00ECoch a chur air a' phr\u00F2gram:
ERR_MAXRECURSION=barrachd ath-ch\u00F9rsaidh na tha ceadaichte (%d).
ERR_MEMORY=chan eil cuimhne gu le\u00F2r ann.
ERR_NOTAPROGRAM=A bheil thu airson an sgr\u00ECobhainn teacsa seo a ruith?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=reenviada|fd
BACKWARD=atr\u00E1s|bk
TURNLEFT=esquerda|voltaesquerda|lt
TURNRIGHT=dereita|voltadereita|rt
PENUP=senestilo|se
PENDOWN=conestilo|ce
HOME=inicio
POINT=punto
CIRCLE=c\u00EDrculo
ELLIPSE=elipse
SQUARE=cadrado
RECTANGLE=rect\u00E1ngulo
LABEL=etiqueta
PENCOLOR=estilocor|estilodacor|li\u00F1adecor|ec
ANY=calquera
PENWIDTH=estilotama\u00F1o|estilolargura|largurali\u00F1a|et
PENSTYLE=estiloestilo|estiloli\u00F1a
PENJOINT=estilouni\u00F3n|uni\u00F3nli\u00F1a
PENCAP=rematel\u00E1pis|remateli\u00F1a
NONE=ning\u00FAn
BEVEL=bisel
MITER=bispel
ROUNDED=arredondar
SOLID=s\u00F3lido
DASH=raiado
DOTTED=punteado
CLOSE=pechar
FILL=encher
FILLCOLOR=cambiarcor|cambiodecor|cc
FILLTRANSPARENCY=transparenciarecheo
PENTRANSPARENCY=transparencialapis|transparenciali\u00F1a
FILLSTYLE=estilo de recheo
FONTCOLOR=cordeletra|cordetexto|cordetexto
FONTTRANSPARENCY=transparenciatipoletra|transparenciatexto
FONTHEIGHT=tama\u00F1odeletra|tama\u00F1odetexto|alturadetexto
FONTWEIGHT=grosor do tipo de letra
FONTSTYLE=estilo do tipo de letra
BOLD=grosa
ITALIC=cursiva
UPRIGHT=vertical|normal
NORMAL=normal
FONTFAMILY=familia do tipo de letra
CLEARSCREEN=limparpantalla|lp
TEXT=texto
HIDETURTLE=agochartartaruga|at|agocharme
SHOWTURTLE=amosartartaruga|mt|amosarme
POSITION=posici\u00F3n|pos|estabelecerposici\u00F3n
HEADING=cabeceira|estabelecercabeceira|ec
PAGESIZE=tama\u00F1o da p\u00E1xina
GROUP=imaxe|imx
# control structures
TO=para
END=end
STOP=parar
REPEAT=repetir|sempre
REPCOUNT=contarep
BREAK=quebrar
CONTINUE=continuar
WHILE=mentres
FOR=Para
IN=pol
IF=se
OUTPUT=sa\u00EDda
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=verdadeiro
FALSE=falso
NOT=non
AND=e
OR=ou
INPUT=entrada
PRINT=imprimir
SLEEP=durmir
GLOBAL=global
# functions
RANDOM=aleatorio
INT=int
FLOAT=flotante
STR=str
SQRT=raizc
LOG10=log10
SIN=sen
COS=cos
ROUND=arredondar
ABS=abs
COUNT=decimais
SET=estabelecer
RANGE=intervalo
LIST=lista
TUPLE=tupla
SORTED=ordenado
RESUB=sub
RESEARCH=buscar
REFINDALL=atopartodo
MIN=min
MAX=m\u00E1x
PI=pi|n
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=h
MM=mm
CM=cm
PT=pt
INCH=pol|"
# color codes
INVISIBLE=invis\u00EDbel
BLACK=negro
SILVER=prata
GRAY=gris
WHITE=branco
MAROON=granate
RED=vermello
PURPLE=p\u00FArpura
FUCHSIA=fucsia|maxenta
GREEN=verde
LIME=lima
OLIVE=oliva
YELLOW=amarelo
NAVY=mari\u00F1o
BLUE=azul
TEAL=verde azulado
AQUA=auga|ciano
PINK=rosa
TOMATO=tomate
ORANGE=laranxa
GOLD=ouro
VIOLET=violeta
SKYBLUE=celeste
CHOCOLATE=chocolate
BROWN=marr\u00F3n
# messages
LIBRELOGO=LibreLogo
ERROR=Erro (na li\u00F1a %s)
ERR_ZERODIVISION=Divisi\u00F3n por cero.
ERR_NAME=Nome desco\u00F1ecido: \u00AB%s\u00BB.
ERR_ARGUMENTS=%s toma %s argumentos (%s dados).
ERR_BLOCK=Erro (espazos extra ou que faltan nas par\u00E9nteses?)
ERR_KEY=Elemento desco\u00F1ecido: %s
ERR_INDEX=\u00CDndice f\u00F3ra de intervalo.
ERR_STOP=Programa pechado:
ERR_MAXRECURSION=m\u00E1xima profundidade recursiva (%d) sobrepasada.
ERR_MEMORY=non hai memoria suficiente.
ERR_NOTAPROGRAM=Quere executar este documento de texto?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=forward|fd
BACKWARD=back|bk
TURNLEFT=left|turnleft|lt
TURNRIGHT=right|turnright|rt
PENUP=penup|pu
PENDOWN=pendown|pd
HOME=\u0A98\u0AB0
POINT=\u0AAC\u0ABF\u0A82\u0AA6\u0AC1
CIRCLE=\u0AB5\u0AA4\u0AC3\u0AB3
ELLIPSE=\u0A89\u0AAA\u0AB5\u0AB2\u0AAF
SQUARE=\u0A9A\u0ACB\u0AB0\u0AB8
RECTANGLE=\u0AB2\u0A82\u0AAC\u0A9A\u0ACB\u0AB0\u0AB8
LABEL=\u0AB2\u0AC7\u0AAC\u0AB2
PENCOLOR=pencolor|pencolour|linecolor|pc
ANY=\u0A95\u0ACB\u0A87\u0AAA\u0AA3
PENWIDTH=pensize|penwidth|linewidth|ps
PENSTYLE=penstyle|linestyle
PENJOINT=penjoint|linejoint
PENCAP=pencap|linecap
NONE=\u0A95\u0A82\u0A87 \u0AA8\u0AB9\u0ABF\u0A82
BEVEL=\u0AB8\u0ACD\u0AA4\u0AB0
MITER=\u0AAE\u0ABF\u0A9F\u0AB0
ROUNDED=\u0AB0\u0ABE\u0A89\u0AA8\u0ACD\u0AA1
SOLID=\u0A98\u0A9F\u0ACD\u0A9F
DASH=\u0AA4\u0AC2\u0A9F\u0A95
DOTTED=\u0A9F\u0AAA\u0A95\u0ABE\u0A82\u0AB5\u0ABE\u0AB3\u0AC1
CLOSE=\u0AAC\u0A82\u0AA7 \u0A95\u0AB0\u0ACB
FILL=\u0AAD\u0AB0\u0ACB
FILLCOLOR=fillcolor|fillcolour|fc
FILLTRANSPARENCY=filltransparency
PENTRANSPARENCY=pentransparency|linetransparency
FILLSTYLE=\u0AAD\u0AB0\u0AB5\u0ABE\u0AA8\u0AC0 \u0AB6\u0AC8\u0AB2\u0AC0
FONTCOLOR=fontcolor|textcolor|textcolour
FONTTRANSPARENCY=fonttransparency|texttransparency
FONTHEIGHT=fontsize|textsize|textheight
FONTWEIGHT=\u0AAB\u0ACB\u0AA8\u0ACD\u0A9F\u0AA8\u0ACB \u0AAD\u0ABE\u0AB0
FONTSTYLE=\u0AAB\u0ACB\u0AA8\u0ACD\u0A9F \u0AB6\u0AC8\u0AB2\u0AC0
BOLD=\u0A98\u0A9F\u0ACD\u0A9F
ITALIC=\u0A87\u0A9F\u0ABE\u0AB2\u0ABF\u0A95
UPRIGHT=upright|normal
NORMAL=\u0AB8\u0ABE\u0AAE\u0ABE\u0AA8\u0ACD\u0AAF
FONTFAMILY=\u0AAB\u0ACB\u0AA8\u0ACD\u0A9F\u0A95\u0AC1\u0A9F\u0AC1\u0A82\u0AAC
CLEARSCREEN=clearscreen|cs
TEXT=\u0AB2\u0A96\u0ABE\u0AA3
HIDETURTLE=hideturtle|ht|hideme
SHOWTURTLE=showturtle|st|showme
POSITION=position|pos|setpos
HEADING=heading|setheading|seth
PAGESIZE=\u0AAA\u0ABE\u0AA8\u0ABE\u0A82\u0AAE\u0ABE\u0AAA
GROUP=picture|pic
# control structures
TO=\u0AAA\u0ACD\u0AB0\u0AA4\u0ABF
END=\u0A85\u0A82\u0AA4
STOP=\u0A85\u0A9F\u0A95\u0ABE\u0AB5\u0ACB
REPEAT=repeat|forever
REPCOUNT=repcount
BREAK=\u0AB5\u0ABF\u0AAD\u0ABE\u0A9C\u0A95
CONTINUE=\u0A9A\u0ABE\u0AB2\u0AC1 \u0AB0\u0ABE\u0A96\u0ACB
WHILE=\u0AB8\u0AAB\u0AC7\u0AA6
FOR=\u0AAE\u0ABE\u0A9F\u0AC7
IN=in
IF=\u0A9C\u0ACB
OUTPUT=\u0A86\u0A89\u0A9F\u0AAA\u0AC1\u0A9F
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=\u0AB8\u0ABE\u0A9A\u0AC1
FALSE=\u0A96\u0ACB\u0A9F\u0AC1
NOT=\u0AA8\u0AA5\u0AC0
AND=\u0A85\u0AA8\u0AC7
OR=\u0A85\u0AA5\u0AB5\u0ABE
INPUT=\u0A88\u0AA8\u0AAA\u0AC1\u0A9F
PRINT=\u0A9B\u0ABE\u0AAA\u0ACB
SLEEP=\u0AA8\u0ABF\u0AA6\u0ACD\u0AB0\u0ABE
GLOBAL=\u0AB5\u0AC8\u0AB6\u0ACD\u0AB5\u0ABF\u0A95
# functions
RANDOM=\u0A85\u0AB5\u0ACD\u0AAF\u0AB5\u0AB8\u0ACD\u0AA5\u0ABF\u0AA4
INT=int
FLOAT=\u0A85\u0AAA\u0AC2\u0AB0\u0ACD\u0AA3\u0ABE\u0A82\u0A95
STR=str
SQRT=sqrt
LOG10=log10
SIN=sin
COS=cos
ROUND=\u0AB0\u0ABE\u0A89\u0AA8\u0ACD\u0AA1
ABS=abs
COUNT=\u0A97\u0AA3\u0AA4\u0AB0\u0AC0
SET=\u0AB8\u0AC1\u0AAF\u0ACB\u0A9C\u0AA8
RANGE=\u0AB5\u0ABF\u0AB8\u0ACD\u0AA4\u0ABE\u0AB0
LIST=\u0AAF\u0ABE\u0AA6\u0AC0
TUPLE=\u0A9F\u0AAA\u0AB2
SORTED=\u0A97\u0ACB\u0AA0\u0AB5\u0ABE\u0AAF\u0AC7\u0AB2
RESUB=\u0A89\u0AAA
RESEARCH=\u0AB6\u0ACB\u0AA7\u0ACB
REFINDALL=\u0AAC\u0AA7\u0AC1 \u0AB6\u0ACB\u0AA7\u0ACB
MIN=\u0AA8\u0ACD\u0AAF\u0AC2\u0AA8\u0AA4\u0ACD\u0AA4\u0AAE
MAX=\u0AAE\u0AB9\u0AA4\u0ACD\u0AA4\u0AAE
PI=pi|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=h
MM=mm
CM=cm
PT=pt
INCH=in|"
# color codes
INVISIBLE=\u0A85\u0AA6\u0ACD\u0AA7\u0AB6\u0ACD\u0AAF
BLACK=\u0A95\u0ABE\u0AB3\u0ACB
SILVER=\u0A9A\u0ABE\u0A82\u0AA6\u0AC0
GRAY=gray|grey
WHITE=\u0AB8\u0AAB\u0AC7\u0AA6
MAROON=\u0AAE\u0AB0\u0AC2\u0AA8
RED=\u0AB2\u0ABE\u0AB2
PURPLE=\u0A9C\u0ABE\u0A82\u0AAC\u0AC1\u0AA1\u0ABF\u0AAF\u0ACB
FUCHSIA=fuchsia|magenta
GREEN=\u0AB2\u0AC0\u0AB2\u0ACB
LIME=\u0AB2\u0AC0\u0A82\u0AAC\u0AC1
OLIVE=\u0A93\u0AB2\u0ABF\u0AB5
YELLOW=\u0AAA\u0AC0\u0AB3\u0ACB
NAVY=\u0AA8\u0AC7\u0AB5\u0AC0
BLUE=\u0AB5\u0ABE\u0AA6\u0AB3\u0AC0
TEAL=\u0AAC\u0AA4\u0A95
AQUA=aqua|cyan
PINK=\u0A97\u0AC1\u0AB2\u0ABE\u0AAC\u0AC0
TOMATO=\u0A9F\u0ACB\u0AAE\u0AC7\u0A9F\u0ACB
ORANGE=\u0AA8\u0ABE\u0AB0\u0A82\u0A97\u0AC0
GOLD=\u0AB8\u0ACB\u0AA8\u0AC1
VIOLET=\u0A9C\u0ABE\u0A82\u0AAC\u0AB2\u0AC0
SKYBLUE=\u0A86\u0A95\u0ABE\u0AB6\u0AC0\u0AB5\u0ABE\u0AA6\u0AB3\u0AC0
CHOCOLATE=\u0A9A\u0ACB\u0A95\u0AB2\u0AC7\u0A9F
BROWN=\u0AA4\u0AAA\u0A96\u0AC0\u0AB0\u0ABF\u0AAF\u0ABE \u0AB0\u0A82\u0A97\u0AA8\u0AC1\u0A82
# messages
LIBRELOGO=LibreLogo
ERROR=\u0AAD\u0AC2\u0AB2 (\u0AB5\u0ABE\u0A95\u0ACD\u0AAF %s \u0AAE\u0ABE\u0A82)
ERR_ZERODIVISION=\u0AB6\u0AC2\u0AA8\u0ACD\u0AAF \u0AA6\u0ACD\u0AB5\u0ABE\u0AB0\u0ABE \u0AB5\u0ABF\u0AAD\u0ABE\u0A9C\u0AA8.
ERR_NAME=Unknown name: \u201C%s\u201D.
ERR_ARGUMENTS=%s \u0A8F %s \u0AA6\u0AB2\u0AC0\u0AB2\u0ACB \u0AB2\u0AC7 \u0A9B\u0AC7 (%s \u0A86\u0AAA\u0AC7\u0AB2 \u0A9B\u0AC7).
ERR_BLOCK=\u0AAD\u0AC2\u0AB2 (\u0AB5\u0AA7\u0ABE\u0AB0\u0ABE\u0AA8\u0AC0 \u0A85\u0AA5\u0AB5\u0ABE \u0A97\u0AC7\u0AB0\u0AB9\u0ABE\u0A9C\u0AB0 \u0A9C\u0A97\u0ACD\u0AAF\u0ABE\u0A93 \u0A95\u0ACC\u0A82\u0AB8\u0AAE\u0ABE\u0A82 \u0A9B\u0AC7?)
ERR_KEY=\u0A85\u0A9C\u0ACD\u0A9E\u0ABE\u0AA4 \u0A98\u0A9F\u0A95: %s
ERR_INDEX=\u0A85\u0AA8\u0AC1\u0A95\u0ACD\u0AB0\u0AAE\u0AA3\u0ABF\u0A95\u0ABE \u0AB5\u0ACD\u0AAF\u0ABE\u0A96\u0ACD\u0AAF\u0ABE\u0AAF\u0ABF\u0AA4 \u0AAE\u0AB0\u0ACD\u0AAF\u0ABE\u0AA6\u0ABE\u0AA8\u0AC0 \u0AAC\u0AB9\u0ABE\u0AB0 \u0A9B\u0AC7.
ERR_STOP=\u0A95\u0ABE\u0AB0\u0ACD\u0AAF\u0A95\u0ACD\u0AB0\u0AAE\u0AA8\u0ACB \u0A85\u0A82\u0AA4 \u0A86\u0AB5\u0ACD\u0AAF\u0ACB:
ERR_MAXRECURSION=\u0AAE\u0AB9\u0AA4\u0ACD\u0AA4\u0AAE \u0AB0\u0ABF\u0A95\u0AB0\u0ACD\u0A9D\u0AA8 \u0A8A\u0A82\u0AA1\u0ABE\u0A88 (%d) \u0A93\u0AB3\u0A82\u0A97\u0ABE\u0A88.
ERR_MEMORY=\u0AAA\u0AC2\u0AB0\u0AA4\u0AC0 \u0AAE\u0AC7\u0AAE\u0AB0\u0AC0 \u0AA8\u0AA5\u0AC0.
ERR_NOTAPROGRAM=\u0AB6\u0AC1\u0A82 \u0AA4\u0AAE\u0AC7 \u0A86 \u0AB2\u0A96\u0ABE\u0AA3 \u0AA6\u0AB8\u0ACD\u0AA4\u0ABE\u0AB5\u0AC7\u0A9C\u0AA8\u0AC7 \u0A9A\u0AB2\u0ABE\u0AB5\u0AB5\u0ABE \u0AAE\u0ABE\u0A82\u0A97\u0ACB \u0A9B\u0ACB?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=tenond\u00E9pe|td
BACKWARD=tapyku\u00E9pe|jere
TURNLEFT=as\u00FApe|jereas\u00FApe|as
TURNRIGHT=akat\u00FAa|jereakat\u00FAa|ak
PENUP=bol\u00EDgrafo'\u1EF9re|b\u1EF9
PENDOWN=bol\u00EDgrafo|bo
HOME=\u00F3ga
POINT=kyta
CIRCLE=c\u00EDrculo
ELLIPSE=elipse
SQUARE=cuadrado
RECTANGLE=rect\u00E1ngulo
LABEL=etiqueta
PENCOLOR=sa'y.l\u00E1piz|sa'y.l\u00EDnea|cl
ANY=mavave
PENWIDTH=tama\u00F1o.bol\u00EDgrafo|tb
PENSTYLE=tipobol\u00EDgrafo|estilol\u00EDnea
PENJOINT=atybol\u00EDgrafo|atyl\u00EDnea
PENCAP=tapabol\u00EDgrafo|kyta.l\u00EDnea
NONE=mavave
BEVEL=bisel
MITER=mitra|inglete|bies
ROUNDED=emoapu'a
SOLID=hat\u00E3
DASH=discontinua
DOTTED=kyta'i ku\u00E9ra
CLOSE=mboty
FILL=myenyh\u1EBD
FILLCOLOR=sa'y.henyhe|ch
FILLTRANSPARENCY=myenyh\u1EBD.tesak\u00E3
PENTRANSPARENCY=bol\u00EDgrafo.hesak\u00E3|l\u00EDnea.hesak\u00E3
FILLSTYLE=estilohenyhe
FONTCOLOR=sa'y.mo\u00F1e'\u1EBDr\u00E3|sa'y.letra
FONTTRANSPARENCY=fonttransparency|texttransparency
FONTHEIGHT=fontsize|textsize|textheight
FONTWEIGHT=fontweight
FONTSTYLE=fontstyle
BOLD=h\u0169'i
ITALIC=cursiva
UPRIGHT=normal
NORMAL=normal
FONTFAMILY=fontfamily
CLEARSCREEN=monandipantalla|mp
TEXT=mo\u00F1e'\u1EBDr\u00E3
HIDETURTLE=moka\u00F1ykarumbe|\u00F1k|a\u00F1e\u00F1omi
SHOWTURTLE=hechaukakarumbe|hk|ajehecha
POSITION=position|pos|setpos
HEADING=heading|setheading|seth
PAGESIZE=tama\u00F1orogue
GROUP=ta'anga|img
# control structures
TO=a
END=opa
STOP=pyta
REPEAT=ha'ejevy|tapia
REPCOUNT=ha'ejevy.papa
BREAK=kyt\u0129
CONTINUE=segui
WHILE=jave
FOR=hagu\u00E3
IN=en
IF=si
OUTPUT=\u00F1eseha
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=ete
FALSE=japu
NOT=no
AND=ha
OR=o
INPUT=jeikeha
PRINT=imprimir
SLEEP=ke
GLOBAL=global
# functions
RANDOM=Po'a Oimera\u1EBDa (azar)
INT=int
FLOAT=vev\u00FAi
STR=str
SQRT=raiz.cuadrada|raiz|sqrt
LOG10=log10
SIN=sen
COS=cos
ROUND=emoapu'a
ABS=abs
COUNT=econta
SET=aty
RANGE=intervalo
LIST=lista
TUPLE=tupla
SORTED=ojemohenda va'ekue
RESUB=sub
RESEARCH=heka
REFINDALL=hekaopavave
MIN=min
MAX=max
PI=pi|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=h
MM=mm
CM=cm
PT=pt
INCH=in|pulg|"
# color codes
INVISIBLE=nojekua\u00E1i
BLACK=h\u0169
SILVER=plata
GRAY=h\u0169ndy
WHITE=morot\u0129
MAROON=marr\u00F3n
RED=pyt\u00E3
PURPLE=lila
FUCHSIA=fucsia|magenta
GREEN=aky
LIME=lima
OLIVE=oliva
YELLOW=sa'yju
NAVY=hovy.marino|marino
BLUE=hovy
TEAL=aky-hovyha
AQUA=y|cian
PINK=pyt\u00E3ngy
TOMATO=tomate
ORANGE=nar\u00E3
GOLD=oro
VIOLET=violeta
SKYBLUE=hovyyv\u00E1ga|celeste
CHOCOLATE=chocolate
BROWN=marr\u00F3n
# messages
LIBRELOGO=LibreLogo
ERROR=Jejavy (l\u00EDneape %s)
ERR_ZERODIVISION=Divisi\u00F3n por cero.
ERR_NAME=T\u00E9ra ojekuaa'\u1EF9va: \u00AB%s\u00BB
ERR_ARGUMENTS=%s toma %s argumentos (se proporcionaron %s).
ERR_BLOCK=Error (extra or missing spaces at brackets?)
ERR_KEY=Elemento ojekuaa'\u1EF9va: %s
ERR_INDEX=Index out of range.
ERR_STOP=Program terminated:
ERR_MAXRECURSION=maximum recursion depth (%d) exceeded.
ERR_MEMORY=not enough memory.
ERR_NOTAPROGRAM=\u00BFRemomba'apo s\u00E9pa ko documento mo\u00F1e'\u1EBDr\u00E3gui?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=\u05E7\u05D3\u05D9\u05DE\u05D4|\u05E7\u05D3
BACKWARD=\u05D0\u05D7\u05D5\u05E8\u05D4|\u05D0\u05D7
TURNLEFT=\u05E9\u05DE\u05D0\u05DC\u05D4|\u05DC\u05E4\u05E0\u05D5\u05EA\u05E9\u05DE\u05D0\u05DC\u05D4|\u05E4\u05E0\u05D9\u05D9\u05D4\u05E9\u05DE\u05D0\u05DC\u05D4|\u05E9\u05DE
TURNRIGHT=\u05D9\u05DE\u05D9\u05E0\u05D4|\u05DC\u05E4\u05E0\u05D5\u05EA\u05D9\u05DE\u05D9\u05E0\u05D4|\u05E4\u05E0\u05D9\u05D9\u05D4\u05D9\u05DE\u05D9\u05E0\u05D4|\u05D9\u05DE
PENUP=\u05DC\u05D4\u05E8\u05D9\u05DD\u05E2\u05D8|\u05E2\u05D8\u05DC\u05DE\u05E2\u05DC\u05D4|\u05D4\u05E8\u05DD\u05E2\u05D8|\u05DC\u05E2
PENDOWN=\u05DC\u05D4\u05D5\u05E8\u05D9\u05D3\u05E2\u05D8|\u05E2\u05D8\u05DC\u05DE\u05D8\u05D4|\u05D4\u05D5\u05E8\u05D3\u05E2\u05D8|\u05D4\u05E2
HOME=\u05D1\u05D9\u05EA
POINT=\u05E0\u05E7\u05D5\u05D3\u05D4
CIRCLE=\u05E2\u05D9\u05D2\u05D5\u05DC
ELLIPSE=\u05D0\u05DC\u05D9\u05E4\u05E1\u05D4
SQUARE=\u05E8\u05D9\u05D1\u05D5\u05E2
RECTANGLE=\u05DE\u05DC\u05D1\u05DF
LABEL=\u05EA\u05D5\u05D5\u05D9\u05EA
PENCOLOR=\u05E6\u05D1\u05E2\u05E2\u05D8|\u05E6\u05D1\u05E2\u05D8|\u05E6\u05D1\u05E2\u05E7\u05D5|\u05E6\u05E7
ANY=\u05DB\u05DC\u05E9\u05D4\u05D5
PENWIDTH=\u05D2\u05D5\u05D3\u05DC\u05E2\u05D8|\u05E2\u05D5\u05D1\u05D9\u05E2\u05D8|\u05E8\u05D5\u05D7\u05D1\u05E2\u05D8|\u05D2\u05E2
PENSTYLE=\u05E1\u05D2\u05E0\u05D5\u05DF\u05E2\u05D8|\u05E1\u05D2\u05E0\u05D5\u05DF\u05E7\u05D5
PENJOINT=\u05DE\u05E6\u05E8\u05E3\u05E2\u05D8|\u05DE\u05E6\u05E8\u05E3\u05E7\u05D5
PENCAP=\u05E1\u05D9\u05D5\u05DE\u05EA\u05E2\u05D8|\u05E1\u05D9\u05D5\u05DE\u05EA\u05E7\u05D5
NONE=\u05DC\u05DC\u05D0
BEVEL=\u05E7\u05D8\u05D5\u05DD
MITER=\u05DE\u05E9\u05DC\u05D9\u05DD
ROUNDED=\u05E2\u05D2\u05D5\u05DC
SOLID=\u05D0\u05D7\u05D9\u05D3
DASH=\u05DE\u05D9\u05E7\u05D5\u05E3
DOTTED=\u05E0\u05D9\u05E7\u05D5\u05D3
CLOSE=\u05E1\u05D2\u05D9\u05E8\u05D4
FILL=\u05DE\u05D9\u05DC\u05D5\u05D9
FILLCOLOR=\u05E6\u05D1\u05E2\u05DE\u05D9\u05DC\u05D5\u05D9|\u05E6\u05DE
FILLTRANSPARENCY=\u05E9\u05E7\u05D9\u05E4\u05D5\u05EA_\u05D4\u05DE\u05D9\u05DC\u05D5\u05D9
PENTRANSPARENCY=\u05E9\u05E7\u05D9\u05E4\u05D5\u05EA_\u05E2\u05D8|\u05E9\u05E7\u05D9\u05E4\u05D5\u05EA_\u05E7\u05D5
FILLSTYLE=\u05E1\u05D2\u05E0\u05D5\u05DF \u05DE\u05D9\u05DC\u05D5\u05D9
FONTCOLOR=\u05E6\u05D1\u05E2\u05D2\u05D5\u05E4\u05DF|\u05E6\u05D1\u05E2\u05E4\u05D5\u05E0\u05D8|\u05E6\u05D1\u05E2\u05D8\u05E7\u05E1\u05D8
FONTTRANSPARENCY=\u05E9\u05E7\u05D9\u05E4\u05D5\u05EA_\u05D2\u05D5\u05E4\u05DF|\u05E9\u05E7\u05D9\u05E4\u05D5\u05EA_\u05D8\u05E7\u05E1\u05D8
FONTHEIGHT=\u05D2\u05D5\u05D3\u05DC\u05D2\u05D5\u05E4\u05DF|\u05D2\u05D5\u05D3\u05DC\u05D8\u05E7\u05E1\u05D8|\u05D2\u05D5\u05D1\u05D4\u05D8\u05E7\u05E1\u05D8
FONTWEIGHT=\u05DE\u05E9\u05E7\u05DC\u05D2\u05D5\u05E4\u05DF
FONTSTYLE=\u05E1\u05D2\u05E0\u05D5\u05DF\u05D2\u05D5\u05E4\u05DF
BOLD=\u05DE\u05D5\u05D3\u05D2\u05E9
ITALIC=\u05E0\u05D8\u05D5\u05D9
UPRIGHT=\u05E8\u05D2\u05D9\u05DC|\u05E2\u05D5\u05DE\u05D3
NORMAL=\u05E8\u05D2\u05D9\u05DC
FONTFAMILY=\u05DE\u05E9\u05E4\u05D7\u05EA\u05D2\u05D5\u05E4\u05E0\u05D9\u05DD
CLEARSCREEN=\u05DC\u05E0\u05E7\u05D5\u05EA\u05DE\u05E1\u05DA|\u05E0\u05D9\u05E7\u05D5\u05D9\u05DE\u05E1\u05DA|\u05E0\u05E7\u05D4\u05DE\u05E1\u05DA|\u05E0\u05DE
TEXT=\u05D8\u05E7\u05E1\u05D8
HIDETURTLE=\u05D4\u05E1\u05EA\u05E8\u05E6\u05D1|\u05DC\u05D4\u05E1\u05EA\u05D9\u05E8\u05E6\u05D1|\u05D4\u05E1\u05EA\u05E8\u05EA\u05D4\u05E6\u05D1|\u05DC\u05D4\u05E1\u05EA\u05D9\u05E8\u05D0\u05D5\u05EA\u05D9|\u05D4\u05E1
SHOWTURTLE=\u05D4\u05E6\u05D2\u05E6\u05D1|\u05DC\u05D4\u05E6\u05D9\u05D1\u05E6\u05D1|\u05D4\u05E6\u05D2\u05EA\u05D4\u05E6\u05D1|\u05DC\u05D4\u05E6\u05D9\u05D2\u05D0\u05D5\u05EA\u05D9|\u05D4\u05E6
POSITION=\u05DE\u05D9\u05E7\u05D5\u05DD|\u05DE\u05E7\u05D5\u05DD|\u05D4\u05D2\u05D3\u05E8\u05DE\u05E7\u05D5\u05DD|\u05D4\u05D2\u05D3\u05E8\u05EA\u05DE\u05E7\u05D5\u05DD|\u05DE\u05E7\u05D5
HEADING=\u05DB\u05D5\u05EA\u05E8\u05EA|\u05D4\u05D2\u05D3\u05E8\u05EA\u05DB\u05D5\u05EA\u05E8\u05EA|\u05D4\u05D2\u05DB
PAGESIZE=\u05D2\u05D5\u05D3\u05DC\u05E2\u05DE\u05D5\u05D3
GROUP=\u05EA\u05DE\u05D5\u05E0\u05D4|\u05EA\u05DE
# control structures
TO=\u05E2\u05D3
END=\u05E1\u05D5\u05E3
STOP=\u05E2\u05E6\u05D5\u05E8|\u05E2\u05E6\u05D9\u05E8\u05D4|\u05DC\u05E2\u05E6\u05D5\u05E8
REPEAT=\u05D7\u05D6\u05E8\u05D4|\u05DC\u05E2\u05D3|\u05DC\u05E0\u05E6\u05D7|\u05DC\u05EA\u05DE\u05D9\u05D3
REPCOUNT=\u05E1\u05E4\u05D9\u05E8\u05EA\u05D7\u05D6\u05E8\u05D4
BREAK=\u05E9\u05D1\u05D9\u05E8\u05D4|\u05DC\u05E9\u05D1\u05D5\u05E8
CONTINUE=\u05D4\u05DE\u05E9\u05DA|\u05DC\u05D4\u05DE\u05E9\u05D9\u05DA
WHILE=\u05DB\u05DC\u05E2\u05D5\u05D3
FOR=\u05E2\u05D1\u05D5\u05E8
IN=\u05D1\u05EA\u05D5\u05DA
IF=\u05D0\u05DD
OUTPUT=\u05E4\u05DC\u05D8
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=\u05D0\u05DE\u05EA
FALSE=\u05E9\u05E7\u05E8
NOT=\u05DC\u05D0
AND=\u05D5\u05D2\u05DD
OR=\u05D0\u05D5
INPUT=\u05E7\u05DC\u05D8
PRINT=\u05D4\u05D3\u05E4\u05E1\u05D4
SLEEP=\u05DC\u05D9\u05E9\u05D5\u05DF
GLOBAL=\u05DB\u05DC\u05DC\u05D9
# functions
RANDOM=\u05D0\u05E7\u05E8\u05D0\u05D9
INT=\u05E9\u05DC\u05DD
FLOAT=\u05E9\u05D1\u05E8
STR=\u05DE\u05D7\u05E8\u05D5\u05D6\u05EA
SQRT=\u05E9\u05D5\u05E8\u05E9
LOG10=\u05DC\u05D5\u05D2\u05E8\u05D9\u05EA\u05DD_10
SIN=\u05E1\u05D9\u05E0\u05D5\u05E1
COS=\u05E7\u05D5\u05E1\u05D9\u05E0\u05D5\u05E1
ROUND=\u05E2\u05D2\u05D5\u05DC
ABS=\u05E2\u05E8\u05DA \u05DE\u05D5\u05D7\u05DC\u05D8
COUNT=\u05E1\u05E4\u05D9\u05E8\u05D4
SET=\u05E7\u05D1\u05D5\u05E6\u05D4
RANGE=\u05D8\u05D5\u05D5\u05D7
LIST=\u05E8\u05E9\u05D9\u05DE\u05D4
TUPLE=\u05E1\u05D3\u05E8\u05D4\u05E1\u05D3\u05D5\u05E8\u05D4
SORTED=\u05E2\u05DD\u05DE\u05D9\u05D5\u05DF
RESUB=\u05E9\u05D2\u05E8\u05D4
RESEARCH=\u05D7\u05D9\u05E4\u05D5\u05E9
REFINDALL=\u05D7\u05D9\u05E4\u05D5\u05E9\u05D4\u05DB\u05D5\u05DC
MIN=\u05DE\u05D6\u05E2\u05E8\u05D9
MAX=\u05DE\u05E8\u05D1\u05D9
PI=\u05E4\u05D0\u05D9|\u05E4\u05D9\u05D9
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=\u05E9\u05E2
MM=\u05DE"\u05DE|\u05DE\u05F4\u05DE
CM=\u05E1"\u05DE|\u05E1\u05F4\u05DE
PT=\u05E0\u05E7|\u05E0\u05E7\u05D5\u05D3\u05D4
INCH=\u05D0\u05D9\u05E0\u05E5\u05F3|\u05D0\u05D9\u05E0\u05E5'|\u05D0\u05D9\u05E0\u05D8\u05E9
# color codes
INVISIBLE=\u05D1\u05DC\u05EA\u05D9 \u05E0\u05E8\u05D0\u05D4
BLACK=\u05E9\u05D7\u05D5\u05E8
SILVER=\u05DB\u05E1\u05E3
GRAY=\u05D0\u05E4\u05D5\u05E8
WHITE=\u05DC\u05D1\u05DF
MAROON=\u05D7\u05D5\u05DD\u05DB\u05D4\u05D4
RED=\u05D0\u05D3\u05D5\u05DD
PURPLE=\u05E1\u05D2\u05D5\u05DC
FUCHSIA=\u05E4\u05D5\u05E7\u05E1\u05D9\u05D4|\u05DE\u05D2\u05F3\u05E0\u05D8\u05D4|\u05DE\u05D2'\u05E0\u05D8\u05D4
GREEN=\u05D9\u05E8\u05D5\u05E7
LIME=\u05DC\u05D9\u05D9\u05DD
OLIVE=\u05D9\u05E8\u05D5\u05E7\u05D6\u05D9\u05EA
YELLOW=\u05E6\u05D4\u05D5\u05D1
NAVY=\u05DB\u05D7\u05D5\u05DC\u05DB\u05D4\u05D4
BLUE=\u05DB\u05D7\u05D5\u05DC
TEAL=\u05E6\u05D4\u05D1\u05D4\u05D1
AQUA=\u05D9\u05DD|\u05E6\u05D9\u05D0\u05DF|\u05DE\u05D9\u05DD
PINK=\u05D5\u05E8\u05D5\u05D3
TOMATO=\u05E2\u05D2\u05D1\u05E0\u05D9\u05D4
ORANGE=\u05DB\u05EA\u05D5\u05DD
GOLD=\u05D6\u05D4\u05D1
VIOLET=\u05E1\u05D2\u05D5\u05DC\u05E2\u05D3\u05D9\u05DF
SKYBLUE=\u05DB\u05D7\u05D5\u05DC\u05E9\u05DE\u05D9\u05D9\u05DD|\u05DB\u05D7\u05D5\u05DC\u05E9\u05DE\u05D9\u05DD|\u05E9\u05DE\u05D9\u05D9\u05DD|\u05E9\u05DE\u05D9\u05DD
CHOCOLATE=\u05E9\u05D5\u05E7\u05D5\u05DC\u05D3
BROWN=\u05D7\u05D5\u05DD
# messages
LIBRELOGO=LibreLogo
ERROR=\u05E9\u05D2\u05D9\u05D0\u05D4 (\u05D1\u05E9\u05D5\u05E8\u05D4 %s)
ERR_ZERODIVISION=\u05D7\u05DC\u05D5\u05E7\u05D4 \u05D1\u05D0\u05E4\u05E1.
ERR_NAME=\u05E9\u05DD \u05DC\u05D0 \u05D9\u05D3\u05D5\u05E2: \u201E%s\u201C.
ERR_ARGUMENTS=%s \u05DE\u05E7\u05D1\u05DC\u05EA %s \u05D0\u05E8\u05D2\u05D5\u05DE\u05E0\u05D8\u05D9\u05DD (%s \u05E1\u05D5\u05E4\u05E7\u05D5).
ERR_BLOCK=\u05E9\u05D2\u05D9\u05D0\u05D4 (\u05D9\u05DB\u05D5\u05DC \u05DC\u05D4\u05D9\u05D5\u05EA \u05E9\u05D9\u05E9 \u05D9\u05D5\u05EA\u05E8 \u05DE\u05D3\u05D9 \u05D0\u05D5 \u05E9\u05D0\u05D9\u05DF \u05E8\u05D5\u05D5\u05D7\u05D9\u05DD \u05E2\u05DD \u05D4\u05E1\u05D5\u05D2\u05E8\u05D9\u05D9\u05DD?)
ERR_KEY=\u05E8\u05DB\u05D9\u05D1 \u05DC\u05D0 \u05D9\u05D3\u05D5\u05E2: %s
ERR_INDEX=\u05D4\u05D0\u05D9\u05E0\u05D3\u05E7\u05E1 \u05DE\u05D7\u05D5\u05E5 \u05DC\u05D8\u05D5\u05D5\u05D7.
ERR_STOP=\u05D4\u05EA\u05DB\u05E0\u05D9\u05EA \u05D7\u05D5\u05E1\u05DC\u05D4:
ERR_MAXRECURSION=\u05D4\u05D2\u05E2\u05EA \u05DC\u05E2\u05D5\u05DE\u05E7 \u05D4\u05E0\u05E1\u05D9\u05D2\u05D4/\u05E8\u05E7\u05D5\u05E8\u05E1\u05D9\u05D4 (%d) \u05D4\u05DE\u05E8\u05D1\u05D9.
ERR_MEMORY=\u05D0\u05D9\u05DF \u05D3\u05D9 \u05D6\u05DB\u05E8\u05D5\u05DF.
ERR_NOTAPROGRAM=\u05D4\u05D0\u05DD \u05D1\u05E8\u05E6\u05D5\u05E0\u05DA \u05DC\u05D4\u05E8\u05D9\u05E5 \u05DE\u05E1\u05DE\u05DA \u05D8\u05E7\u05E1\u05D8 \u05D6\u05D4?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=forward|fd
BACKWARD=back|bk
TURNLEFT=left|turnleft|lt
TURNRIGHT=right|turnright|rt
PENUP=penup|pu
PENDOWN=pendown|pd
HOME=\u0918\u0930
POINT=\u092C\u093F\u0902\u0926\u0941
CIRCLE=\u0935\u0943\u0924\u094D\u0924
ELLIPSE=\u0926\u0940\u0930\u094D\u0918\u0935\u0943\u0924\u094D\u0924
SQUARE=\u0935\u0930\u094D\u0917
RECTANGLE=\u0906\u092F\u0924
LABEL=\u0932\u0947\u092C\u0932
PENCOLOR=pencolor|pencolour|linecolor|pc
ANY=\u0915\u094B\u0908 \u092D\u0940
PENWIDTH=pensize|penwidth|linewidth|ps
PENSTYLE=penstyle|linestyle
PENJOINT=penjoint|linejoint
PENCAP=pencap|linecap
NONE=\u0915\u094B\u0908 \u0928\u0939\u0940\u0902
BEVEL=\u0938\u094D\u0924\u0930
MITER=\u092E\u093E\u0907\u091F\u0930
ROUNDED=\u0917\u094B\u0932
SOLID=\u0920\u094B\u0938
DASH=\u0921\u0948\u0936 \u0915\u093F\u092F\u093E \u0939\u0941\u0906
DOTTED=\u092C\u093F\u0902\u0926\u0941\u092F\u0941\u0915\u094D\u0924
CLOSE=\u092C\u0928\u094D\u0926 \u0915\u0930\u0947\u0902
FILL=\u092D\u0930\u0947\u0902
FILLCOLOR=fillcolor|fillcolour|fc
FILLTRANSPARENCY=filltransparency
PENTRANSPARENCY=pentransparency|linetransparency
FILLSTYLE=\u092D\u0930\u0928\u0947 \u0915\u0940 \u0936\u0948\u0932\u0940
FONTCOLOR=fontcolor|textcolor|textcolour
FONTTRANSPARENCY=fonttransparency|texttransparency
FONTHEIGHT=fontsize|textsize|textheight
FONTWEIGHT=\u092B\u093C\u0949\u0928\u094D\u091F \u092D\u093E\u0930
FONTSTYLE=fontstyle
BOLD=\u092E\u094B\u091F\u093E
ITALIC=\u0924\u093F\u0930\u091B\u093E
UPRIGHT=upright|normal
NORMAL=\u0938\u093E\u092E\u093E\u0928\u094D\u092F
FONTFAMILY=fontfamily
CLEARSCREEN=clearscreen|cs
TEXT=\u092A\u093E\u0920
HIDETURTLE=hideturtle|ht|hideme
SHOWTURTLE=showturtle|st|showme
POSITION=position|pos|setpos
HEADING=heading|setheading|seth
PAGESIZE=pagesize
GROUP=picture|pic
# control structures
TO=\u092A\u094D\u0930\u0924\u093F
END=\u0905\u0902\u0924
STOP=\u0930\u094B\u0915\u0947\u0902
REPEAT=repeat|forever
REPCOUNT=repcount
BREAK=\u0916\u0923\u094D\u0921\u0928
CONTINUE=\u091C\u093E\u0930\u0940 \u0930\u0916\u0947\u0902
WHILE=\u0915\u0947 \u0926\u094C\u0930\u093E\u0928
FOR=\u0915\u0947 \u0932\u093F\u090F
IN=\u0907\u0902\u091A
IF=\u092F\u0926\u093F
OUTPUT=\u0906\u0909\u091F\u092A\u0941\u091F
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=\u0938\u0939\u0940
FALSE=\u0917\u0932\u0924
NOT=\u0928\u0939\u0940\u0902
AND=\u0914\u0930
OR=\u092F\u093E
INPUT=\u0907\u0928\u092A\u0941\u091F
PRINT=\u091B\u093E\u092A\u0947\u0902
SLEEP=\u0938\u0941\u092A\u094D\u0924
GLOBAL=\u0935\u0948\u0936\u094D\u0935\u093F\u0915
# functions
RANDOM=\u092C\u0947\u0924\u0930\u0924\u0940\u092C
INT=int
FLOAT=\u092A\u094D\u0932\u093E\u0935\u093F\u0924 \u0915\u0930\u0947\u0902
STR=str
SQRT=sqrt
LOG10=log10
SIN=sin
COS=cos
ROUND=\u0917\u094B\u0932
ABS=\u091F\u0948\u092C\u094D\u0938
COUNT=\u0917\u093F\u0928\u0924\u0940
SET=set
RANGE=\u0926\u093E\u092F\u0930\u093E
LIST=\u0938\u0942\u091A\u0940
TUPLE=tuple
SORTED=\u091B\u093E\u0902\u091F\u093E \u0939\u0941\u0906
RESUB=sub
RESEARCH=\u0916\u094B\u091C\u0947\u0902
REFINDALL=findall
MIN=min
MAX=max
PI=pi|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=h
MM=\u092E\u093F\u092E\u0940
CM=\u0938\u0947\u092E\u0940
PT=\u092A\u0949\u0907\u0902\u091F
INCH=in|"
# color codes
INVISIBLE=\u0905\u0926\u0943\u0936\u094D\u092F
BLACK=\u0915\u093E\u0932\u093E
SILVER=silver
GRAY=gray|grey
WHITE=\u0938\u092B\u093C\u0947\u0926
MAROON=\u092E\u0930\u0942\u0928
RED=\u0932\u093E\u0932
PURPLE=\u092C\u0948\u0902\u0917\u0928\u0940
FUCHSIA=fuchsia|magenta
GREEN=\u0939\u0930\u093E
LIME=\u0938\u092E\u092F
OLIVE=\u091C\u0948\u0924\u0942\u0928
YELLOW=\u092A\u0940\u0932\u093E
NAVY=\u0928\u0947\u0935\u0940
BLUE=\u0928\u0940\u0932\u093E
TEAL=\u0939\u0930\u093E-\u0928\u0940\u0932\u093E
AQUA=aqua|cyan
PINK=\u0915\u0921\u093C\u0940
TOMATO=\u091F\u092E\u093E\u091F\u0930
ORANGE=\u0926\u093E\u092F\u0930\u093E
GOLD=\u092E\u094B\u091F\u093E
VIOLET=\u092C\u0948\u0902\u0917\u0928\u0940
SKYBLUE=\u0906\u0938\u092E\u093E\u0928\u0940
CHOCOLATE=\u091A\u0949\u0915\u0932\u0947\u091F
BROWN=\u092D\u0942\u0930\u093E
# messages
LIBRELOGO=\u0932\u093F\u092C\u094D\u0930\u0947\u0932\u094B\u0917\u094B
ERROR=\u0924\u094D\u0930\u0941\u091F\u093F (%s \u092A\u0902\u0915\u094D\u0924\u093F \u092E\u0947\u0902)
ERR_ZERODIVISION=\u0936\u0942\u0928\u094D\u092F \u0938\u0947 \u0935\u093F\u092D\u093E\u091C\u0928.
ERR_NAME=Unknown name: \u201C%s\u201D.
ERR_ARGUMENTS=%s \u0932\u0947\u0924\u093E %s \u0935\u093F\u0924\u0930\u094D\u0915 (%s \u0926\u093F\u092F\u093E \u0939\u0941\u0906).
ERR_BLOCK=\u0924\u094D\u0930\u0941\u091F\u093F (\u092C\u094D\u0930\u0948\u0915\u0947\u091F \u092E\u0947\u0902 \u0905\u0924\u093F\u0930\u093F\u0915\u094D\u0924 \u092F\u093E \u0905\u0928\u0941\u092A\u0938\u094D\u0925\u093F\u0924 \u0938\u094D\u0925\u093E\u0928?)
ERR_KEY=\u0905\u091C\u094D\u091E\u093E\u0924 \u0924\u0924\u094D\u0935: %s
ERR_INDEX=\u0905\u0928\u0941\u0915\u094D\u0930\u092E\u0923\u093F\u0915\u093E \u0926\u093E\u092F\u0930\u0947 \u0938\u0947 \u092C\u093E\u0939\u0930 \u0939\u0948.
ERR_STOP=\u092A\u094D\u0930\u094B\u0917\u094D\u0930\u093E\u092E \u092C\u093E\u0939\u0930 \u0939\u0941\u0906:
ERR_MAXRECURSION=\u0905\u0927\u093F\u0915\u0924\u092E \u0930\u093F\u0915\u0930\u094D\u0938\u0928 \u0917\u0939\u0930\u093E\u0908 (%d) \u092C\u0922\u093C \u0917\u092F\u093E.
ERR_MEMORY=\u0938\u094D\u092E\u0943\u0924\u093F \u092A\u094D\u0930\u0930\u094D\u092F\u093E\u092A\u094D\u0924 \u0928\u0939\u0940\u0902.
ERR_NOTAPROGRAM=\u0915\u094D\u092F\u093E \u0906\u092A \u0907\u0938 \u092A\u093E\u0920 \u0926\u0938\u094D\u0924\u093E\u0935\u0947\u091C\u093C \u0915\u094B \u091A\u0932\u093E\u0928\u093E \u091A\u093E\u0939\u0924\u0947 \u0939\u0948\u0902?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=naprijed|np
BACKWARD=nazad|nz
TURNLEFT=lijevo|okreni lijevo|li
TURNRIGHT=desno|okreni desno|de
PENUP=olovka gore|og
PENDOWN=olovka dolje|od
HOME=polazno
POINT=to\u010Dka
CIRCLE=krug
ELLIPSE=elipsa
SQUARE=kvadrat
RECTANGLE=pravokutnik
LABEL=oznaka
PENCOLOR=boja olovke|boja olovke|boja linije|bo
ANY=bilo koja
PENWIDTH=veli\u010Dina olovke|\u0161irina olovke|\u0161irina linije|vo
PENSTYLE=stil olovke|stil linije
PENJOINT=spoj olovke|spoj linije
PENCAP=vrh olovke|vrh linije
NONE=ni\u0161ta
BEVEL=sto\u017Eac
MITER=koljeno
ROUNDED=okruglo
SOLID=puno
DASH=iscrtkano
DOTTED=isto\u010Dkano
CLOSE=zatvori
FILL=ispuni
FILLCOLOR=boja punjenja|boja punjenja|bp
FILLTRANSPARENCY=prozirnostispune
PENTRANSPARENCY=prozirnostolovke|prozirnostlinije
FILLSTYLE=stil ispune
FONTCOLOR=boja fonta|boja teksta|boja teksta
FONTTRANSPARENCY=prozirnostfonta|prozirnostteksta
FONTHEIGHT=veli\u010Dina fonta|veli\u010Dina teksta|visina teksta
FONTWEIGHT=debljina fonta
FONTSTYLE=stil fonta
BOLD=podebljano
ITALIC=kurziv
UPRIGHT=uspravan|normalan
NORMAL=obi\u010Dno
FONTFAMILY=skupina fontova
CLEARSCREEN=o\u010Distizaslon|oz
TEXT=tekst
HIDETURTLE=sakrikursor|sk|sakrijme
SHOWTURTLE=poka\u017Eikursor|st|poka\u017Eime
POSITION=pozicija|poz|postavipoz
HEADING=naslov|postavinaslov|postavin
PAGESIZE=veli\u010Dinastranice
GROUP=slika|slika
# control structures
TO=za
END=kraj
STOP=zaustavi
REPEAT=ponavljaj|zauvijek
REPCOUNT=br. ponavljanja
BREAK=prijelom
CONTINUE=nastavi
WHILE=bijela
FOR=za
IN=dolazno
IF=ako
OUTPUT=rezultat
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=to\u010Dno
FALSE=neto\u010Dno
NOT=nije
AND=i
OR=ili
INPUT=unos
PRINT=ispis
SLEEP=spavaj
GLOBAL=op\u0107i
# functions
RANDOM=nasumi\u010Dno
INT=int
FLOAT=pomi\u010Dni
STR=niz
SQRT=korijen
LOG10=log10
SIN=sin
COS=cos
ROUND=zaokru\u017Ei
ABS=aps
COUNT=brojanje
SET=skup
RANGE=raspon
LIST=popis
TUPLE=torka
SORTED=razvrstano
RESUB=zamjena
RESEARCH=pretra\u017Eivanje
REFINDALL=prona\u0111i sve
MIN=min
MAX=maks
PI=pi|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=h
MM=mm
CM=cm
PT=t\u010D
INCH=in|\u2033
# color codes
INVISIBLE=nevidljiv
BLACK=crna
SILVER=srebrno
GRAY=sivo|sivo
WHITE=bijela
MAROON=kestenjasta
RED=crvena
PURPLE=ljubi\u010Dasta
FUCHSIA=fuksija|magneta
GREEN=zelena
LIME=limun-\u017Euta
OLIVE=maslinasta
YELLOW=\u017Euta
NAVY=tamnoplava
BLUE=plava
TEAL=tirkizna
AQUA=vodena|cijan
PINK=ru\u017Ei\u0107asta
TOMATO=raj\u010Dica
ORANGE=naran\u010Dasta
GOLD=zlatna
VIOLET=ljubi\u010Dasta
SKYBLUE=nebeskoplava
CHOCOLATE=\u010Dokoladna
BROWN=sme\u0111a
# messages
LIBRELOGO=LibreLogo
ERROR=Gre\u0161ka (u retku %s)
ERR_ZERODIVISION=Dijeljenje s nulom.
ERR_NAME=Nepoznato ime: \u201C%s\u201D.
ERR_ARGUMENTS=%s ima %s argumente (%s dano).
ERR_BLOCK=Gre\u0161ka (ima previ\u0161e ili nedostaje razmaka u zagradama?)
ERR_KEY=Nepoznati element: %s
ERR_INDEX=Indeks je izvan raspona.
ERR_STOP=Program je zavr\u0161en:
ERR_MAXRECURSION=prema\u0161ena je maksimalna dubina rekurzije (%d).
ERR_MEMORY=nema dovoljno memorije.
ERR_NOTAPROGRAM=\u017Delite li pokrenuti ovaj tekstualni dokument?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=dopr\u011Bdka|dp
BACKWARD=wr\u00F3\u0107o|wr
TURNLEFT=nal\u011Bwo|nl
TURNRIGHT=naprawo|np
PENUP=pisakhorje|ph
PENDOWN=pisakdele|pd
HOME=spo\u010Datk
POINT=dypk
CIRCLE=kruh
ELLIPSE=elipsa
SQUARE=kwadrat
RECTANGLE=prawor\u00F3\u017Ek
LABEL=popis
PENCOLOR=barbapisaka|barbalinije|bp|bl
ANY=n\u011Bkajki
PENWIDTH=wulkos\u0107pisaka|\u0161\u011Brokos\u0107pisaka|\u0161\u011Brokos\u0107linije|wp|wl
PENSTYLE=stilpisaka|linijowystil|sp|ls
PENJOINT=p\u0159echadpisaka|p\u0159echdlinije|pp|pl
PENCAP=k\u00F3n\u010Dkpisaka|k\u00F3n\u010Dklinije|kp|kl
NONE=\u017Eadyn
BEVEL=nak\u00F3sny
MITER=nakosa
ROUNDED=kulojty
SOLID=po\u0142ny
DASH=smu\u017Ekowany
DOTTED=dypkowany
CLOSE=za\u010Dini\u0107
FILL=pjelni\u0107
FILLCOLOR=pjelnjacabarba|pb
FILLTRANSPARENCY=pjelnjacatransparenca
PENTRANSPARENCY=transparencapisaka|transparencalinije|tp|tl
FILLSTYLE=pjelnjenskistil|ps
FONTCOLOR=pismowabarba|tekstowabarba|pb|tb
FONTTRANSPARENCY=transparencapisma|transparencateksta
FONTHEIGHT=wulkos\u0107pisma|wulkos\u0107teksta|wysokos\u0107teksta|wp|wt
FONTWEIGHT=pismowawaha|pw
FONTSTYLE=stilpisma|sp
BOLD=tu\u010Dny
ITALIC=kursiwny
UPRIGHT=normalny
NORMAL=normalny
FONTFAMILY=dru\u017Einapisma|dp
CLEARSCREEN=\u010Dis\u0107wobrazowku|\u010Dw
TEXT=tekst
HIDETURTLE=schowajnopawu|sn
SHOWTURTLE=pokazajnopawu|pn
POSITION=pozicija|poz
HEADING=sm\u011Br|sm
PAGESIZE=wulkos\u0107strony|ws
GROUP=wobraz|wob
# control structures
TO=k
END=k\u00F3nc
STOP=st\u00F3j
REPEAT=wospjetuj|wsp
REPCOUNT=li\u010Dak
BREAK=p\u0159etorhny\u0107
CONTINUE=dale
WHILE=doni\u017E
FOR=za
IN=w
IF=jeli
OUTPUT=wuda\u0107e
LEFTSTRING=\u201E|\u201A|"|'
RIGHTSTRING=\u201C|\u2018|"|'
TRUE=w\u011Brno
FALSE=wopak
NOT=nic
AND=a
OR=abo
INPUT=zapoda\u0107e
PRINT=pisaj
SLEEP=\u010Dakaj
GLOBAL=globalny
# functions
RANDOM=p\u0159ipadny
INT=cy\u0142y
FLOAT=decimalny
STR=znarje\u0107azk
SQRT=korje\u0144
LOG10=log10
SIN=sin
COS=cos
ROUND=nakru\u017E
ABS=absolutny|abs
COUNT=li\u010Di\u0107
SET=mnohos\u0107
RANGE=sl\u011Bd
LIST=lis\u0107ina
TUPLE=tupel
SORTED=sort\u011Browany
RESUB=wum\u011B\u0144
RESEARCH=pytaj
REFINDALL=namakajw\u0161\u011B
MIN=min
MAX=maks
PI=pi|\u03C0
# measurement
DECIMAL=,
DEG=\u00B0
HOUR=h
MM=mm
CM=cm
PT=pt
INCH=in|"
# color codes
INVISIBLE=njewid\u017Aomny
BLACK=\u010Dorny
SILVER=sl\u011Bbro
GRAY=\u0161\u011Bry
WHITE=b\u011B\u0142y
MAROON=\u010Derwjenobruny
RED=\u010Derwjeny
PURPLE=purpurny
FUCHSIA=magenta
GREEN=zeleny
LIME=sw\u011Bt\u0142ozeleny
OLIVE=oliwozeleny
YELLOW=\u017Eo\u0142ty
NAVY=\u0107mowom\u00F3dry
BLUE=m\u00F3dry
TEAL=m\u00F3drozeleny
AQUA=akwamarinowy|cyanowy
PINK=r\u00F3\u017Eowy
TOMATO=\u0107mowo\u010Derwjeny
ORANGE=oran\u017Eowy
GOLD=z\u0142oty
VIOLET=fija\u0142kojty
SKYBLUE=njebjom\u00F3dry
CHOCOLATE=\u0107mowobruny
BROWN=bruny
# messages
LIBRELOGO=LibreLogo
ERROR=Zmylk (w lince %s)
ERR_ZERODIVISION=Diwizija p\u0159ez nulu.
ERR_NAME=Njeznate mjeno: \u201C%s\u201D.
ERR_ARGUMENTS=%s trjeba tutu li\u010Dbu argumentow: %s (%s podate).
ERR_BLOCK=Zmylk (p\u0159idatne abo falowace mjezoty pola spinkow?)
ERR_KEY=Njeznaty element: %s
ERR_INDEX=Indeks zwonka wob\u0142uka.
ERR_STOP=Program sk\u00F3n\u010Deny:
ERR_MAXRECURSION=Maksimalna rekursijna h\u0142ubokos\u0107 (%d) p\u0159ekro\u010Dena.
ERR_MEMORY=njeje dos\u0107 sk\u0142ada.
ERR_NOTAPROGRAM=Chce\u0107e tut\u00F3n tekstowy dokument wuwjes\u0107?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=el\u0151re|e
BACKWARD=h\u00E1tra|h
TURNLEFT=balra|b
TURNRIGHT=jobbra|j
PENUP=tollatfel|tf
PENDOWN=tollatle|tl
HOME=haza
POINT=pont
CIRCLE=k\u00F6r
ELLIPSE=ellipszis
SQUARE=n\u00E9gyzet
RECTANGLE=t\u00E9glalap
LABEL=c\u00EDmke
PENCOLOR=tollsz\u00EDn|tollsz\u00EDn!|tsz!?|vonalsz\u00EDn
ANY=tetsz\u0151leges|tetsz
PENWIDTH=tollvastags\u00E1g|tollvastags\u00E1g!|tv!?|vonalvastags\u00E1g
PENSTYLE=tollst\u00EDlus|vonalst\u00EDlus
PENJOINT=tollsarok|vonalsarok
PENCAP=tollhegy|vonalv\u00E9g
NONE=nincs
BEVEL=tompa
MITER=hegyes
ROUNDED=kerek
SOLID=folyamatos
DASH=szaggatott
DOTTED=pontozott
CLOSE=z\u00E1r
FILL=t\u00F6lt
FILLCOLOR=t\u00F6lt\u0151sz\u00EDn|t\u00F6lt\u0151sz\u00EDn!|tlsz!?
FILLTRANSPARENCY=t\u00F6lt\u0151\u00E1tl\u00E1tsz\u00F3s\u00E1g
PENTRANSPARENCY=toll\u00E1tl\u00E1tsz\u00F3s\u00E1g
FILLSTYLE=t\u00F6lt\u0151st\u00EDlus
FONTCOLOR=bet\u0171sz\u00EDn
FONTTRANSPARENCY=bet\u0171\u00E1tl\u00E1tsz\u00F3s\u00E1g|sz\u00F6veg\u00E1tl\u00E1tsz\u00F3s\u00E1g
FONTHEIGHT=bet\u0171m\u00E9ret
FONTWEIGHT=bet\u0171vastags\u00E1g
FONTSTYLE=bet\u0171st\u00EDlus
BOLD=f\u00E9lk\u00F6v\u00E9r|k\u00F6v\u00E9r|vastag
ITALIC=kurz\u00EDv|d\u0151lt
UPRIGHT=\u00E1ll\u00F3|norm\u00E1l
NORMAL=norm\u00E1l
FONTFAMILY=bet\u0171csal\u00E1d
CLEARSCREEN=t\u00F6r\u00F6lk\u00E9perny\u0151|t\u00F6r\u00F6lk\u00E9p|t\u00F6r\u00F6lrajzlap|tr
TEXT=sz\u00F6veg
HIDETURTLE=elrejt|l\u00E1thatatlan|elrejttekn\u0151c|rejttek
SHOWTURTLE=l\u00E1that\u00F3
POSITION=hely|hely!|poz\u00EDci\u00F3|xy!
HEADING=ir\u00E1ny|ir\u00E1ny!
PAGESIZE=oldalm\u00E9ret
GROUP=k\u00E9p
# control structures
TO=ez|elj\u00E1r\u00E1s|elj|tanuld
END=v\u00E9ge
STOP=stop|visszat\u00E9r
REPEAT=ism\u00E9t|ism|ism\u00E9tl\u00E9s|v\u00E9gtelenszer|vszer
REPCOUNT=h\u00E1nyadik
BREAK=kil\u00E9p
CONTINUE=\u00FAjra
WHILE=am\u00EDg
FOR=fut
IN=-ban|-ben
IF=ha
OUTPUT=eredm\u00E9ny
LEFTSTRING=\u201E
RIGHTSTRING=\u201D
TRUE=igaz
FALSE=hamis
NOT=nem
AND=\u00E9s
OR=vagy
INPUT=be
PRINT=ki|ki\u00EDr
SLEEP=v\u00E1r|v\u00E1rj
GLOBAL=glob\u00E1lis|glob\u00E1lisv\u00E1ltoz\u00F3|globv\u00E1l
# functions
RANDOM=v\u00E9letlen|v\u00E9letlensz\u00E1m|vsz\u00E1m|kiv\u00E1laszt
INT=eg\u00E9szsz\u00E1m|eg\u00E9sz
FLOAT=t\u00F6rtsz\u00E1m|t\u00F6rt
STR=karakterl\u00E1nc|l\u00E1nc
SQRT=gy\u00F6k
LOG10=log10
SIN=sin
COS=cos
ROUND=kerek
ABS=abszol\u00FAt\u00E9rt\u00E9k|absz?
COUNT=darab|db|elemsz\u00E1m
SET=halmaz
RANGE=sor
LIST=lista
TUPLE=fix
SORTED=rendez
RESUB=cser\u00E9l
RESEARCH=keres
REFINDALL=tal\u00E1l
MIN=min
MAX=max
PI=pi|\u03C0
# measurement
DECIMAL=,
DEG=\u00B0
HOUR=\u00F3|h
MM=mm
CM=cm
PT=pt
INCH=in|"
# color codes
INVISIBLE=l\u00E1thatatlan
BLACK=fekete
SILVER=vil\u00E1gossz\u00FCrke|ez\u00FCst
GRAY=sz\u00FCrke
WHITE=feh\u00E9r
MAROON=s\u00F6t\u00E9tbarna
RED=piros|v\u00F6r\u00F6s
PURPLE=lila
FUCHSIA=b\u00EDbor|cikl\u00E1men
GREEN=z\u00F6ld
LIME=vil\u00E1gosz\u00F6ld
OLIVE=olajz\u00F6ld
YELLOW=s\u00E1rga
NAVY=s\u00F6t\u00E9tk\u00E9k
BLUE=k\u00E9k
TEAL=k\u00E9kesz\u00F6ld
AQUA=ci\u00E1nk\u00E9k|ci\u00E1n
PINK=r\u00F3zsasz\u00EDn
TOMATO=vil\u00E1gospiros
ORANGE=narancss\u00E1rga|narancs
GOLD=aranys\u00E1rga|arany
VIOLET=ibolyak\u00E9k|ibolya|viola
SKYBLUE=\u00E9gsz\u00EDnk\u00E9k|vil\u00E1gosk\u00E9k
CHOCOLATE=vil\u00E1gosbarna
BROWN=barna
# messages
LIBRELOGO=LibreLogo
ERROR=Hiba (%s. sor)
ERR_ZERODIVISION=Oszt\u00E1s null\u00E1val.
ERR_NAME=Ismeretlen n\u00E9v: \u201E%s\u201D.
ERR_ARGUMENTS=%s: %s adatot v\u00E1r, de %s lett megadva.
ERR_BLOCK=Hiba (hi\u00E1nyz\u00F3 vagy felesleges sz\u00F3k\u00F6z a kapcsos z\u00E1r\u00F3jeln\u00E9l?)
ERR_KEY=Ismeretlen elem: %s
ERR_INDEX=Nem l\u00E9tez\u0151 elemre hivatkoz\u00E1s.
ERR_STOP=A fut\u00E1s le\u00E1ll\u00EDtva:
ERR_MAXRECURSION=El\u00E9rve az \u00FAjrah\u00EDv\u00E1si korl\u00E1t (%d).
ERR_MEMORY=Nincs el\u00E9g mem\u00F3ria.
ERR_NOTAPROGRAM=Szeretn\u00E9 futtatni ezt a sz\u00F6veges dokumentumot?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=forward|fd
BACKWARD=back|bk
TURNLEFT=left|turnleft|lt
TURNRIGHT=right|turnright|rt
PENUP=penup|pu
PENDOWN=pendown|pd
HOME=beranda
POINT=poin
CIRCLE=lingkaran
ELLIPSE=elips
SQUARE=kotak
RECTANGLE=persegi
LABEL=label
PENCOLOR=pencolor|pencolour|linecolor|pc
ANY=any
PENWIDTH=pensize|penwidth|linewidth|ps
PENSTYLE=penstyle|linestyle
PENJOINT=penjoint|linejoint
PENCAP=pencap|linecap
NONE=tak ada
BEVEL=bevel
MITER=siku
ROUNDED=bulatan ujung
SOLID=padat
DASH=garis putus
DOTTED=garis noktah
CLOSE=tutup
FILL=isian
FILLCOLOR=fillcolor|fillcolour|fc
FILLTRANSPARENCY=filltransparency
PENTRANSPARENCY=pentransparency|linetransparency
FILLSTYLE=fontcolor|textcolor|textcolour
FONTCOLOR=fontcolor|textcolor|textcolour
FONTTRANSPARENCY=fonttransparency|texttransparency
FONTHEIGHT=fontsize|textsize|textheight
FONTWEIGHT=fontweight
FONTSTYLE=fontstyle
BOLD=tebal
ITALIC=italic
UPRIGHT=upright|normal
NORMAL=normal
FONTFAMILY=fontfamily
CLEARSCREEN=clearscreen|cs
TEXT=text
HIDETURTLE=hideturtle|ht|hideme
SHOWTURTLE=showturtle|st|showme
POSITION=position|pos|setpos
HEADING=heading|setheading|seth
PAGESIZE=pagesize
GROUP=picture|pic
# control structures
TO=to
END=end
STOP=stop
REPEAT=repeat|forever
REPCOUNT=repcount
BREAK=pemisah
CONTINUE=continue
WHILE=while
FOR=for
IN=in
IF=if
OUTPUT=output
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=true
FALSE=false
NOT=not
AND=and
OR=or
INPUT=input
PRINT=print
SLEEP=sleep
GLOBAL=global
# functions
RANDOM=random
INT=int
FLOAT=float
STR=str
SQRT=sqrt
LOG10=log10
SIN=sin
COS=cos
ROUND=round
ABS=abs
COUNT=count
SET=set
RANGE=range
LIST=list
TUPLE=tuple
SORTED=sorted
RESUB=sub
RESEARCH=search
REFINDALL=findall
MIN=min
MAX=max
PI=pi|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=h
MM=mm
CM=cm
PT=pt
INCH=in|"
# color codes
INVISIBLE=invisible
BLACK=black
SILVER=silver
GRAY=gray|grey
WHITE=white
MAROON=maroon
RED=red
PURPLE=purple
FUCHSIA=fuchsia|magenta
GREEN=green
LIME=lime
OLIVE=olive
YELLOW=yellow
NAVY=navy
BLUE=blue
TEAL=teal
AQUA=aqua|cyan
PINK=pink
TOMATO=tomato
ORANGE=orange
GOLD=gold
VIOLET=violet
SKYBLUE=skyblue
CHOCOLATE=chocolate
BROWN=brown
# messages
LIBRELOGO=LibreLogo
ERROR=Galat (dalam baris %s)
ERR_ZERODIVISION=Pembagian oleh nol.
ERR_NAME=Nama tak dikenal: \u201C%s\u201D.
ERR_ARGUMENTS=%s perlu %s argumen (diberikan %s).
ERR_BLOCK=Galat (spasi ekstra atau kurang pada kurung?)
ERR_KEY=Elemen tak diketahui: %s
ERR_INDEX=Indeks di luar rentang.
ERR_STOP=Program diakhiri:
ERR_MAXRECURSION=kedalaman rekursi maksimum (%d) terlampaui.
ERR_MEMORY=Apakah Anda ingin menjalankan dokumen teks ini?
ERR_NOTAPROGRAM=Apakah Anda ingin menjalankan dokumen teks ini?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=\u00E1fram|fr
BACKWARD=bakka|bk
TURNLEFT=vinstri|sn\u00FAavinstri|vi
TURNRIGHT=h\u00E6gri|sn\u00FAah\u00E6gri|h\u00E6
PENUP=penniupp|pu
PENDOWN=pennini\u00F0ur|pn
HOME=heim
POINT=punktur
CIRCLE=hringur
ELLIPSE=sporbaugur
SQUARE=ferningur
RECTANGLE=r\u00E9tthyrningur
LABEL=sk\u00FDring
PENCOLOR=pennalitur|l\u00EDnulitur|pl
ANY=hva\u00F0 sem er
PENWIDTH=pennast\u00E6r\u00F0|pennabreidd|l\u00EDnubreidd|ps
PENSTYLE=pennast\u00EDll|l\u00EDnust\u00EDll
PENJOINT=pennaskeyting|l\u00EDnuskeyting
PENCAP=pennaendi|l\u00EDnuendi
NONE=ekkert
BEVEL=fl\u00E1i
MITER=hornskeyting
ROUNDED=r\u00FAnna\u00F0
SOLID=einlitt
DASH=strika\u00F0
DOTTED=punktal\u00EDna
CLOSE=loka
FILL=fylling
FILLCOLOR=fyllilitur|fl
FILLTRANSPARENCY=fylligegns\u00E6i
PENTRANSPARENCY=pennagegns\u00E6i|l\u00EDnugegns\u00E6i
FILLSTYLE=st\u00EDll fyllingar
FONTCOLOR=leturlitur|textalitur|stafalitur
FONTTRANSPARENCY=leturgegns\u00E6i|textagegns\u00E6i
FONTHEIGHT=leturst\u00E6r\u00F0|textast\u00E6r\u00F0|textah\u00E6\u00F0
FONTWEIGHT=leturbreidd
FONTSTYLE=leturst\u00EDll
BOLD=feitletra\u00F0
ITALIC=sk\u00E1letra\u00F0
UPRIGHT=uppr\u00E9tt|venjulegt
NORMAL=venjulegt
FONTFAMILY=leturtegund
CLEARSCREEN=hreinsaskj\u00E1|hs
TEXT=texti
HIDETURTLE=felad\u00FDr|fd|felamig
SHOWTURTLE=s\u00FDnad\u00FDr|sd|s\u00FDnamig
POSITION=sta\u00F0setning|sta\u00F0|setjasta\u00F0
HEADING=fyrirs\u00F6gn|setjafyrirs\u00F6gn|setf
PAGESIZE=s\u00ED\u00F0ust\u00E6r\u00F0
GROUP=mynd|mnd
# control structures
TO=til
END=endar
STOP=st\u00F6\u00F0va
REPEAT=endurtaka|endalaust
REPCOUNT=endurtekningafj\u00F6ldi
BREAK=rofsta\u00F0ur
CONTINUE=\u00E1fram
WHILE=me\u00F0an
FOR=fyrir
IN=\u00ED
IF=ef
OUTPUT=fr\u00E1lag
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=satt
FALSE=\u00F3satt
NOT=ekki
AND=og
OR=e\u00F0a
INPUT=inntak
PRINT=prenta
SLEEP=sv\u00E6fa
GLOBAL=v\u00ED\u00F0v\u00E6rt
# functions
RANDOM=slembi\u00F0
INT=heilt
FLOAT=fleyti
STR=str
SQRT=kva\u00F0ratr
LOG10=log10
SIN=s\u00EDn
COS=k\u00F3s
ROUND=r\u00FAnna\u00F0
ABS=algilt
COUNT=fj\u00F6ldi
SET=setja
RANGE=svi\u00F0
LIST=listi
TUPLE=tuple-r\u00F6\u00F0
SORTED=ra\u00F0a\u00F0
RESUB=skipta|\u00FAtskipta
RESEARCH=leita
REFINDALL=finnaallt
MIN=l\u00E1gm
MAX=h\u00E1m
PI=pi|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=klst
MM=mm
CM=sm
PT=pt
INCH=in|"
# color codes
INVISIBLE=\u00F3s\u00FDnilegt
BLACK=svart
SILVER=silfur
GRAY=gr\u00E1tt
WHITE=hv\u00EDtt
MAROON=lj\u00F3sbr\u00FAnt
RED=rautt
PURPLE=purpurabl\u00E1tt
FUCHSIA=bl\u00E1rau\u00F0ur
GREEN=gr\u00E6nt
LIME=l\u00EDm\u00F3nugr\u00E6nt
OLIVE=\u00F3l\u00EDfugr\u00E6nt
YELLOW=gult
NAVY=flotabl\u00E1tt
BLUE=bl\u00E1tt
TEAL=dj\u00FAp-bl\u00E1gr\u00E6nt
AQUA=bl\u00E1gr\u00E6nt
PINK=bleikt
TOMATO=t\u00F3matur
ORANGE=appels\u00EDnugult
GOLD=gull
VIOLET=fj\u00F3lubl\u00E1tt
SKYBLUE=himinbl\u00E1tt
CHOCOLATE=s\u00FAkkula\u00F0i
BROWN=br\u00FAnt
# messages
LIBRELOGO=LibreLogo
ERROR=Villa (\u00E1 l\u00EDnu %s)
ERR_ZERODIVISION=Deiling me\u00F0 n\u00FAlli.
ERR_NAME=\u00D3\u00FEekkt heiti: \u201C%s\u201D.
ERR_ARGUMENTS=%s tekur %s vi\u00F0f\u00F6ng (%s gefi\u00F0).
ERR_BLOCK=Villa (vantar e\u00F0a er ofauki\u00F0 bilum vi\u00F0 sviga?)
ERR_KEY=\u00D3\u00FEekkt stak: %s
ERR_INDEX=V\u00EDsir er ekki innan skilgreinds svi\u00F0s.
ERR_STOP=Forriti\u00F0 h\u00E6tti:
ERR_MAXRECURSION=h\u00E1marki endurkv\u00E6mrar d\u00FDptar (%d) n\u00E1\u00F0.
ERR_MEMORY=ekki n\u00E6gt minni.
ERR_NOTAPROGRAM=Viltu keyra \u00FEetta textaskjal?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=forward|fd
BACKWARD=back|bk
TURNLEFT=left|turnleft|lt
TURNRIGHT=right|turnright|rt
PENUP=penup|pu
PENDOWN=pendown|pd
HOME=home
POINT=point
CIRCLE=circle
ELLIPSE=ellipse
SQUARE=square
RECTANGLE=rectangle
LABEL=label
PENCOLOR=pencolor|pencolour|linecolor|pc
ANY=any
PENWIDTH=pensize|penwidth|linewidth|ps
PENSTYLE=penstyle|linestyle
PENJOINT=penjoint|linejoint
PENCAP=pencap|linecap
NONE=none
BEVEL=bevel
MITER=miter
ROUNDED=round
SOLID=solid
DASH=dashed
DOTTED=dotted
CLOSE=close
FILL=fill
FILLCOLOR=fillcolor|fillcolour|fc
FILLTRANSPARENCY=filltransparency
PENTRANSPARENCY=pentransparency|linetransparency
FILLSTYLE=fillstyle
FONTCOLOR=fontcolor|textcolor|textcolour
FONTTRANSPARENCY=fonttransparency|texttransparency
FONTHEIGHT=fontsize|textsize|textheight
FONTWEIGHT=fontweight
FONTSTYLE=fontstyle
BOLD=bold
ITALIC=italic
UPRIGHT=upright|normal
NORMAL=normal
FONTFAMILY=fontfamily
CLEARSCREEN=clearscreen|cs
TEXT=text
HIDETURTLE=hideturtle|ht|hideme
SHOWTURTLE=showturtle|st|showme
POSITION=position|pos|setpos
HEADING=heading|setheading|seth
PAGESIZE=pagesize
GROUP=picture|pic
# control structures
TO=to
END=end
STOP=stop
REPEAT=repeat|forever
REPCOUNT=repcount
BREAK=break
CONTINUE=continue
WHILE=while
FOR=for
IN=in
IF=if
OUTPUT=output
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=true
FALSE=false
NOT=not
AND=and
OR=or
INPUT=input
PRINT=print
SLEEP=sleep
GLOBAL=global
# functions
RANDOM=random
INT=int
FLOAT=float
STR=str
SQRT=sqrt
LOG10=log10
SIN=sin
COS=cos
ROUND=round
ABS=abs
COUNT=count
SET=set
RANGE=range
LIST=list
TUPLE=tuple
SORTED=sorted
RESUB=sub
RESEARCH=search
REFINDALL=findall
MIN=min
MAX=max
PI=pi|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=h
MM=mm
CM=cm
PT=pt
INCH=in|"
# color codes
INVISIBLE=invisible
BLACK=black
SILVER=silver
GRAY=gray|grey
WHITE=white
MAROON=maroon
RED=red
PURPLE=purple
FUCHSIA=fuchsia|magenta
GREEN=green
LIME=lime
OLIVE=olive
YELLOW=yellow
NAVY=navy
BLUE=blue
TEAL=teal
AQUA=aqua|cyan
PINK=pink
TOMATO=tomato
ORANGE=orange
GOLD=gold
VIOLET=violet
SKYBLUE=celeste
CHOCOLATE=chocolate
BROWN=brown
# messages
LIBRELOGO=LibreLogo
ERROR=Errore (nella riga %s)
ERR_ZERODIVISION=Divisione per zero.
ERR_NAME=Nome sconosciuto: \u201C%s\u201D.
ERR_ARGUMENTS=%s prende %s argomenti (%s dati).
ERR_BLOCK=Errore (spazi aggiuntivi o mancanti alle parentesi?)
ERR_KEY=Elemento sconosciuto: %s
ERR_INDEX=Indice fuori dall'area.
ERR_STOP=Programma terminato:
ERR_MAXRECURSION=profondit\u00E0 ricorsiva massima (%d) superata.
ERR_MEMORY=memoria insufficiente.
ERR_NOTAPROGRAM=Vuoi eseguire questo documento di testo?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=\u3059\u3059\u3080|forward|fd
BACKWARD=\u3082\u3069\u308B|back|bk
TURNLEFT=\u5DE6|\u5DE6\u306B\u66F2\u304C\u308B|left|turnleft|lt
TURNRIGHT=\u53F3|\u53F3\u306B\u66F2\u304C\u308B|right|turnright|rt
PENUP=\u30DA\u30F3\u3092\u3042\u3052\u308B|penup|pu
PENDOWN=\u30DA\u30F3\u3092\u304A\u308D\u3059|pendown|pd
HOME=\u3082\u3068\u306E\u5834\u6240\u3078|home
POINT=\u70B9|point
CIRCLE=\u5186|circle
ELLIPSE=\u6955\u5186|ellipse
SQUARE=\u6B63\u65B9\u5F62|square
RECTANGLE=\u9577\u65B9\u5F62|rectangle
LABEL=\u30E9\u30D9\u30EB|label
PENCOLOR=\u30DA\u30F3\u306E\u8272|\u7DDA\u306E\u8272|pencolor|pc
ANY=\u306A\u3093\u3067\u3082|\u3069\u3053\u3067\u3082|\u4E71\u6570|any
PENWIDTH=\u30DA\u30F3\u306E\u592A\u3055|\u7DDA\u306E\u592A\u3055|penwidth|ps
PENSTYLE=\u30DA\u30F3\u306E\u7A2E\u985E|\u7DDA\u306E\u7A2E\u985E|penstyle
PENJOINT=\u30DA\u30F3\u306E\u3064\u306A\u304E\u65B9|\u89D2\u306E\u3064\u306A\u304E\u65B9|penjoint
PENCAP=\u30DA\u30F3\u306E\u306F\u3058|\u7DDA\u306E\u306F\u3058|linecap
NONE=\u3064\u306A\u304C\u306A\u3044|none
BEVEL=\u89D2\u3092\u843D\u3068\u3059|bevel
MITER=\u89D2\u3092\u3068\u304C\u3089\u305B\u308B|miter
ROUNDED=\u89D2\u3092\u4E38\u304F\u3059\u308B|round
SOLID=\u5B9F\u7DDA|\u3075\u3064\u3046\u306E\u7DDA|solid
DASH=\u7834\u7DDA|dashed
DOTTED=\u70B9\u7DDA|dotted
CLOSE=\u6298\u308C\u7DDA\u3092\u9589\u3058\u308B|close
FILL=\u5857\u308A\u3064\u3076\u3057|fill
FILLCOLOR=\u5857\u308A\u3064\u3076\u3057\u306E\u8272|fillcolor|fc
FILLTRANSPARENCY=\u5857\u308A\u3064\u3076\u3057\u306E\u900F\u660E\u5EA6|filltransparency
PENTRANSPARENCY=\u30DA\u30F3\u306E\u900F\u660E\u5EA6|pentransparency|linetransparency
FILLSTYLE=\u5857\u308A\u3064\u3076\u3057\u306E\u6A21\u69D8|fillstyle
FONTCOLOR=\u6587\u5B57\u306E\u8272|fontcolor
FONTTRANSPARENCY=\u30D5\u30A9\u30F3\u30C8\u306E\u900F\u660E\u5EA6|texttransparency
FONTHEIGHT=\u6587\u5B57\u306E\u5927\u304D\u3055|\u30D5\u30A9\u30F3\u30C8\u306E\u5927\u304D\u3055|fontsize|fontheight
FONTWEIGHT=\u6587\u5B57\u306E\u592A\u3055|\u30D5\u30A9\u30F3\u30C8\u306E\u592A\u3055|fontweight
FONTSTYLE=\u6587\u5B57\u306E\u66F8\u304D\u65B9|\u6587\u5B57\u306E\u30B9\u30BF\u30A4\u30EB|\u30D5\u30A9\u30F3\u30C8\u306E\u30B9\u30BF\u30A4\u30EB|fontstyle
BOLD=\u592A\u304F|\u592A\u5B57|bold
ITALIC=\u659C\u3081|\u659C\u4F53|italic
UPRIGHT=\u3075\u3064\u3046|\u6A19\u6E96|upright
NORMAL=\u3075\u3064\u3046|\u6A19\u6E96|normal
FONTFAMILY=\u6587\u5B57\u306E\u7A2E\u985E|\u30D5\u30A9\u30F3\u30C8\u30D5\u30A1\u30DF\u30EA\u30FC|fontfamily
CLEARSCREEN=\u753B\u9762\u3092\u6D88\u3059|clearscreen|cs
TEXT=\u6587\u5B57|\u30C6\u30AD\u30B9\u30C8|text
HIDETURTLE=\u30BF\u30FC\u30C8\u30EB\u3092\u96A0\u3059|hideturtle|ht
SHOWTURTLE=\u30BF\u30FC\u30C8\u30EB\u3092\u51FA\u3059|showturtle|st
POSITION=\u4F4D\u7F6E|\u5834\u6240|position
HEADING=\u9032\u3080\u5411\u304D|\u5411\u304D|heading
PAGESIZE=\u30DA\u30FC\u30B8\u30B5\u30A4\u30BA|pagesize
GROUP=\u56F3|\u56F3\u306E\u30B0\u30EB\u30FC\u30D7|picture|pic
# control structures
TO=\u52D5\u304D\u3092\u4F5C\u308B|to
END=\u304A\u308F\u308A|end
STOP=\u52D5\u304D\u304B\u3089\u51FA\u308B|stop
REPEAT=\u304F\u308A\u304B\u3048\u3059|repeat
REPCOUNT=\u304F\u308A\u304B\u3048\u3057\u305F\u6570|repcount
BREAK=\u304F\u308A\u304B\u3048\u3057\u304B\u3089\u51FA\u308B|break
CONTINUE=\u306F\u3058\u3081\u306B\u3082\u3069\u308B|continue
WHILE=\u304F\u308A\u304B\u3048\u3059\u306E\u306F\u6B21\u306E\u9593|while
FOR=\u3072\u3068\u3064\u305A\u3064|for
IN=\u3092\u6B21\u304B\u3089\u53D6\u308A\u51FA\u3057\u3066|in
IF=\u3082\u3057|if
OUTPUT=\u5024\u3092\u8FD4\u3059|output
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=\u771F|\u306A\u308A\u305F\u3064|true
FALSE=\u507D|\u306A\u308A\u305F\u305F\u306A\u3044|false
NOT=\u6B63\u3057\u304F\u306A\u3044|\u5426|not
AND=\u3068|\u304B\u3064|and
OR=\u307E\u305F\u306F|or
INPUT=\u5024\u3092\u805E\u304F|input
PRINT=\u8868\u793A|print
SLEEP=\u5F85\u3064|sleep
GLOBAL=\u3069\u3053\u304B\u3089\u3067\u3082\u898B\u3048\u308B|\u30B0\u30ED\u30FC\u30D0\u30EB|global
# functions
RANDOM=\u3067\u305F\u3089\u3081\u306A\u6570|\u4E71\u6570|\u30E9\u30F3\u30C0\u30E0|random
INT=\u5207\u308A\u6368\u3066|\u6574\u6570|\u6574\u6570\u306B|int
FLOAT=\u5C0F\u6570|\u5C0F\u6570\u306B|float
STR=\u6587\u5B57\u5217|\u6587\u5B57\u5217\u306B|str
SQRT=\u5E73\u65B9\u6839|sqrt
LOG10=log10
SIN=sin
COS=cos
ROUND=\u56DB\u6368\u4E94\u5165|round
ABS=\u7D76\u5BFE\u5024|abs
COUNT=\u6587\u5B57\u6570|\u6301\u3063\u3066\u3044\u308B\u6570|count
SET=\u540C\u3058\u5024\u3092\u4E00\u3064\u306B|\u96C6\u5408\u306B|\u96C6\u5408|set
RANGE=\u7BC4\u56F2|range
LIST=\u30EA\u30B9\u30C8|list
TUPLE=\u5909\u66F4\u3067\u304D\u306A\u3044\u30EA\u30B9\u30C8|\u30BF\u30D7\u30EB|tuple
SORTED=\u4E26\u3073\u66FF\u3048\u308B|\u30BD\u30FC\u30C8|sorted
RESUB=\u6587\u5B57\u306E\u304A\u304D\u304B\u3048|\u7F6E\u63DB|sub
RESEARCH=\u63A2\u3059|\u307F\u3064\u3051\u308B|\u691C\u7D22|search
REFINDALL=\u898B\u3064\u304B\u3063\u305F\u3082\u306E\u3092\u5168\u90E8\u306A\u3089\u3079\u308B|findall
MIN=\u3044\u3061\u3070\u3093\u5C0F\u3055\u306A\u6570|\u6700\u5C0F\u5024|\u6700\u5C0F|min
MAX=\u3044\u3061\u3070\u3093\u5927\u304D\u306A\u6570|\u6700\u5927\u5024|\u6700\u5927|max
PI=\u5186\u5468\u7387|pi|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=\u6642\u9593|h
MM=\u30DF\u30EA\u30E1\u30FC\u30C8\u30EB|mm
CM=\u30BB\u30F3\u30C1|\u30BB\u30F3\u30C1\u30E1\u30FC\u30C8\u30EB|cm
PT=\u30DD\u30A4\u30F3\u30C8|pt
INCH=\u30A4\u30F3\u30C1|in|"
# color codes
INVISIBLE=\u898B\u3048\u306A\u3044|\u4E0D\u53EF\u8996|invisible
BLACK=\u9ED2|black
SILVER=\u9280|silver
GRAY=\u7070\u8272|gray
WHITE=\u767D|white
MAROON=\u304F\u308A\u8272|\u30DE\u30EB\u30FC\u30F3|maroon
RED=\u8D64|red
PURPLE=\u7D2B|purple
FUCHSIA=\u660E\u308B\u3044\u7D2B|\u30D5\u30AF\u30B7\u30A2|\u30DE\u30BC\u30F3\u30BF|fuchsia
GREEN=\u7DD1|green
LIME=\u660E\u308B\u3044\u7DD1|\u30E9\u30A4\u30E0\u8272|lime
OLIVE=\u67FF\u8272|\u30AA\u30EA\u30FC\u30D6\u8272|olive
YELLOW=\u9EC4|yellow
NAVY=\u6FC3\u3044\u9752|\u30CD\u30A4\u30D3\u30FC|navy
BLUE=\u9752|blue
TEAL=\u30DE\u30AC\u30E2\u8272|\u304F\u3059\u3093\u3067\u6697\u3044\u9752|\u30C6\u30A3\u30FC\u30EB|teal
AQUA=\u30A2\u30AF\u30A2|\u30B7\u30A2\u30F3|aqua
PINK=\u30D4\u30F3\u30AF|pink
TOMATO=\u30C8\u30DE\u30C8|\u30C8\u30DE\u30C8\u8272|tomate
ORANGE=\u30AA\u30EC\u30F3\u30B8|\u30AA\u30EC\u30F3\u30B8\u8272|orange
GOLD=\u91D1|\u91D1\u8272|gold
VIOLET=\u3059\u307F\u308C\u8272|\u30D0\u30A4\u30AA\u30EC\u30C3\u30C8|\u30F4\u30A1\u30A4\u30AA\u30EC\u30C3\u30C8|violet
SKYBLUE=\u7A7A\u8272|\u30B9\u30AB\u30A4\u30D6\u30EB\u30FC|skyblue
CHOCOLATE=\u8584\u3044\u8336\u8272|\u30C1\u30E7\u30B3\u30EC\u30FC\u30C8|\u30C1\u30E7\u30B3\u30EC\u30FC\u30C8\u8272|chocolate
BROWN=\u8336\u8272|\u30D6\u30E9\u30A6\u30F3|brown
# messages
LIBRELOGO=LibreLogo
ERROR=(%s \u884C\u76EE\u3067)\u30A8\u30E9\u30FC
ERR_ZERODIVISION=\u30BC\u30ED\u3067\u5272\u308A\u7B97\u3057\u305F\u3002
ERR_NAME=\u4E0D\u660E\u306A\u540D\u524D: \u201C%s\u201D\u3002
ERR_ARGUMENTS=%s \u306F %s \u500B\u306E\u5F15\u6570\u3092\u3068\u308A\u307E\u3059(%s \u500B\u4E0E\u3048\u3089\u308C\u307E\u3057\u305F)\u3002
ERR_BLOCK=\u30A8\u30E9\u30FC(\u62EC\u5F27\u306E\u8FBA\u308A\u306B\u30B9\u30DA\u30FC\u30B9\u304C\u91CD\u8907\u307E\u305F\u306F\u4E0D\u8DB3\u3057\u3066\u3044\u308B\u304B\u3082\u3057\u308C\u307E\u305B\u3093)
ERR_KEY=\u4E0D\u660E\u306A\u8981\u7D20: %s
ERR_INDEX=\u30A4\u30F3\u30C7\u30C3\u30AF\u30B9\u304C\u7BC4\u56F2\u5916\u3067\u3059\u3002
ERR_STOP=\u30D7\u30ED\u30B0\u30E9\u30E0\u304C\u7D42\u4E86\u3057\u307E\u3057\u305F:
ERR_MAXRECURSION=\u518D\u5E30\u306E\u6DF1\u3055\u304C\u6700\u5927\u5024(%d)\u3092\u8D8A\u3048\u307E\u3057\u305F\u3002
ERR_MEMORY=\u30E1\u30E2\u30EA\u30FC\u304C\u8DB3\u308A\u307E\u305B\u3093\u3002
ERR_NOTAPROGRAM=\u3053\u306E\u6587\u66F8\u30C9\u30AD\u30E5\u30E1\u30F3\u30C8\u3092\u30D7\u30ED\u30B0\u30E9\u30E0\u3068\u3057\u3066\u5B9F\u884C\u3057\u307E\u3059\u304B\uFF1F

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=forward|fd
BACKWARD=back|bk
TURNLEFT=left|turnleft|lt
TURNRIGHT=right|turnright|rt
PENUP=penup|pu
PENDOWN=pendown|pd
HOME=home
POINT=\u10EC\u10D4\u10E0\u10E2\u10D8\u10DA\u10D8
CIRCLE=\u10EC\u10E0\u10D4
ELLIPSE=\u10D4\u10DA\u10D8\u10E4\u10E1\u10D8
SQUARE=\u10D9\u10D5\u10D0\u10D3\u10E0\u10D0\u10E2\u10D8
RECTANGLE=\u10DB\u10D0\u10E0\u10D7\u10D9\u10E3\u10D7\u10EE\u10D4\u10D3\u10D8
LABEL=label
PENCOLOR=pencolor|pencolour|linecolor|pc
ANY=any
PENWIDTH=pensize|penwidth|linewidth|ps
PENSTYLE=penstyle|linestyle
PENJOINT=penjoint|linejoint
PENCAP=pencap|linecap
NONE=\u10EA\u10D0\u10E0\u10D8\u10D4\u10DA\u10D8
BEVEL=\u10D3\u10DD\u10DC\u10D4
MITER=miter
ROUNDED=\u10DB\u10E0\u10D2\u10D5\u10D0\u10DA\u10D8
SOLID=\u10DB\u10E7\u10D0\u10E0\u10D8
DASH=\u10EC\u10E7\u10D5\u10D4\u10E2\u10D8\u10DA\u10D8
DOTTED=\u10EC\u10D4\u10E0\u10E2\u10D8\u10DA\u10DD\u10D5\u10D0\u10DC\u10D8
CLOSE=\u10D3\u10D0\u10EE\u10E3\u10E0\u10D5\u10D0
FILL=\u10E8\u10D4\u10D5\u10E1\u10D4\u10D1\u10D0
FILLCOLOR=fillcolor|fillcolour|fc
FILLTRANSPARENCY=filltransparency
PENTRANSPARENCY=pentransparency|linetransparency
FILLSTYLE=\u10E9\u10D0\u10E1\u10EE\u10DB\u10D8\u10E1 \u10E1\u10E2\u10D8\u10DA\u10D8
FONTCOLOR=fontcolor|textcolor|textcolour
FONTTRANSPARENCY=fonttransparency|texttransparency
FONTHEIGHT=fontsize|textsize|textheight
FONTWEIGHT=\u10E8\u10E0\u10D8\u10E4\u10E2\u10D8\u10E1 \u10E1\u10D8\u10D2\u10D0\u10DC\u10D4
FONTSTYLE=fontstyle
BOLD=\u10E8\u10D4\u10D9\u10D5\u10E0\u10D0
ITALIC=\u10D9\u10E3\u10E0\u10E1\u10D8\u10D5\u10D8
UPRIGHT=upright|normal
NORMAL=\u10E9\u10D5\u10D4\u10E3\u10DA\u10D4\u10D1\u10E0\u10D8\u10D5\u10D8
FONTFAMILY=fontfamily
CLEARSCREEN=clearscreen|cs
TEXT=\u10E2\u10D4\u10E5\u10E1\u10E2\u10D8
HIDETURTLE=hideturtle|ht|hideme
SHOWTURTLE=showturtle|st|showme
POSITION=position|pos|setpos
HEADING=heading|setheading|seth
PAGESIZE=pagesize
GROUP=picture|pic
# control structures
TO=to
END=end
STOP=stop
REPEAT=repeat|forever
REPCOUNT=repcount
BREAK=\u10E8\u10D4\u10EC\u10E7\u10D5\u10D4\u10E2\u10D0
CONTINUE=\u10D2\u10D0\u10D2\u10E0\u10EB\u10D4\u10DA\u10D4\u10D1\u10D0
WHILE=\u10D7\u10D4\u10D7\u10E0\u10D8
FOR=-
IN=\u10D3\u10D8
IF=if
OUTPUT=\u10D2\u10D0\u10DB\u10DD\u10DC\u10D0\u10E2\u10D0\u10DC\u10D8
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=\u10ED\u10D4\u10E8\u10DB\u10D0\u10E0\u10D8\u10E2\u10D8
FALSE=\u10DB\u10EA\u10D3\u10D0\u10E0\u10D8
NOT=not
AND=\u10D3\u10D0
OR=\u10D0\u10DC
INPUT=\u10E8\u10D4\u10E2\u10D0\u10DC\u10D0
PRINT=\u10D1\u10D4\u10ED\u10D3\u10D5\u10D0
SLEEP=sleep
GLOBAL=global
# functions
RANDOM=random
INT=int
FLOAT=\u10DB\u10DD\u10DA\u10D8\u10D5\u10DA\u10D8\u10D5\u10D4
STR=str
SQRT=sqrt
LOG10=log10
SIN=sin
COS=cos
ROUND=\u10DB\u10E0\u10D2\u10D5\u10D0\u10DA\u10D8
ABS=\u10E2\u10D0\u10D1\u10E3\u10DA\u10D0\u10EA\u10D8\u10D4\u10D1\u10D8
COUNT=\u10D7\u10D5\u10DA\u10D0
SET=set
RANGE=\u10E4\u10DD\u10E0\u10D7\u10DD\u10EE\u10DA\u10D8\u10E1\u10E4\u10D4\u10E0\u10D8
LIST=\u10E1\u10D8\u10D0
TUPLE=tuple
SORTED=sorted
RESUB=sub
RESEARCH=search
REFINDALL=findall
MIN=min
MAX=max
PI=pi|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=h
MM=\u10DB\u10DB
CM=\u10E1\u10DB
PT=\u10DE\u10E2
INCH=in|"
# color codes
INVISIBLE=\u10E3\u10EE\u10D8\u10DA\u10D0\u10D5\u10D8
BLACK=\u10E8\u10D0\u10D5\u10D8
SILVER=silver
GRAY=gray|grey
WHITE=\u10D7\u10D4\u10D7\u10E0\u10D8
MAROON=maroon
RED=red
PURPLE=purple
FUCHSIA=fuchsia|magenta
GREEN=\u10DB\u10EC\u10D5\u10D0\u10DC\u10D4
LIME=\u10D3\u10E0\u10DD
OLIVE=olive
YELLOW=\u10E7\u10D5\u10D8\u10D7\u10D4\u10DA\u10D8
NAVY=navy
BLUE=\u10DA\u10E3\u10E0\u10EF\u10D8
TEAL=teal
AQUA=aqua|cyan
PINK=\u10D1\u10DB\u10E3\u10DA\u10D8
TOMATO=tomato
ORANGE=\u10E4\u10DD\u10E0\u10D7\u10DD\u10EE\u10DA\u10D8\u10E1\u10E4\u10D4\u10E0\u10D8
GOLD=\u10E8\u10D4\u10D9\u10D5\u10E0\u10D0
VIOLET=\u10D8\u10D8\u10E1\u10E4\u10D4\u10E0\u10D8
SKYBLUE=skyblue
CHOCOLATE=chocolate
BROWN=\u10E7\u10D0\u10D5\u10D8\u10E1\u10E4\u10D4\u10E0\u10D8
# messages
LIBRELOGO=LibreLogo
ERROR=Error (in line %s)
ERR_ZERODIVISION=\u10DC\u10E3\u10DA\u10D6\u10D4 \u10D2\u10D0\u10E7\u10DD\u10E4\u10D0.
ERR_NAME=Unknown name: \u201C%s\u201D.
ERR_ARGUMENTS=%s takes %s arguments (%s given).
ERR_BLOCK=Error (extra or missing spaces at brackets?)
ERR_KEY=Unknown element: %s
ERR_INDEX=Index out of range.
ERR_STOP=Program terminated:
ERR_MAXRECURSION=maximum recursion depth (%d) exceeded.
ERR_MEMORY=\u10D0\u10E0 \u10D0\u10E0\u10D8\u10E1 \u10E1\u10D0\u10D9\u10DB\u10D0\u10E0\u10D8\u10E1\u10D8 \u10DB\u10D4\u10EE\u10E1\u10D8\u10D4\u10E0\u10D4\u10D1\u10D0.
ERR_NOTAPROGRAM=Do you want to run this text document?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=zdat|zd
BACKWARD=\u0263er deffir
TURNLEFT=ayeffus
TURNRIGHT=azelma\u1E0D
PENUP=saliakeryun|ak
PENDOWN=siderakeryun|ik
HOME=axxam
POINT=agaz
CIRCLE=ta\u1E93ayert
ELLIPSE=taglayt
SQUARE=amku\u1E93
RECTANGLE=asrem
LABEL=tabzimt
PENCOLOR=iniakeryun|inakeryun|inizirg|nk
ANY=a win yellan
PENWIDTH=te\u0263ziastillu|te\u0263ziakeryun|tehrizirg|ts
PENSTYLE=a\u0263anibakeryun|a\u0263anibizirig
PENJOINT=asemlilastillu|asemlilizirig
PENCAP=tacacitastillu|tacacitizirig
NONE=ula yiwen
BEVEL=bevel
MITER=tacacit n upapas
ROUNDED=yattwa\u1E93
SOLID=a\u010D\u010Duran
DASH=tizdit
DOTTED=s tneqqi\u1E0Din
CLOSE=mdel
FILL=\u010D\u010Dar
FILLCOLOR=inita\u010D\u010Dart|\u010D\u010Darini|\u010Di
FILLTRANSPARENCY=tafrawant\u010D\u010Dar
PENTRANSPARENCY=tafrawantakeryun|tafrawantizirig
FILLSTYLE=a\u0263anibta\u010D\u010Dart
FONTCOLOR=initasefsit|inia\u1E0Dris|ina\u1E0Dris
FONTTRANSPARENCY=fonttransparency|texttransparency
FONTHEIGHT=te\u0263zitasefsit|te\u0263zia\u1E0Dris|tehria\u1E0Dris
FONTWEIGHT=tuzert
FONTSTYLE=a\u0263anib n tsefsit
BOLD=azuran
ITALIC=uknan
UPRIGHT=asawenayeffus|amagnu
NORMAL=amagnu
FONTFAMILY=tawaculttasefsit
CLEARSCREEN=sfe\u1E0Dagdil|sa
TEXT=a\u1E0Dris
HIDETURTLE=hideturtle|ht|hideme
SHOWTURTLE=showturtle|st|showme
POSITION=position|pos|setpos
HEADING=heading|setheading|seth
PAGESIZE=te\u0263ziasebter
GROUP=tugna|tug
# control structures
TO=\u0263er
END=tagara
STOP=se\u1E25bes
REPEAT=ales|yal ass
REPCOUNT=repcount
BREAK=yerrez
CONTINUE=kemmel
WHILE=ticki
FOR=i
IN=di
IF=ma
OUTPUT=tuff\u0263a
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=uz\u0263an
FALSE=aruz\u0263an
NOT=ma\u010D\u010Di
AND=akked
OR=ne\u0263
INPUT=asekcem
PRINT=aru
SLEEP=se\u1E5B\u01E7u
GLOBAL=amatu
# functions
RANDOM=agacu\u1E5Ban
INT=ilaw
FLOAT=ilaw
STR=asekkil
SQRT=a\u1E93ar
LOG10=alug10
SIN=asin
COS=akus
ROUND=yattwa\u1E93
ABS=amagdez
COUNT=Am\u1E0Dan
SET=usbi\u1E0D
RANGE=azilal
LIST=tabdart
TUPLE=tuple
SORTED=tri\u00E9
RESUB=anaddaw
RESEARCH=nadi
REFINDALL=afakk
MIN=adday
MAX=afellay
PI=pi|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=asrag
MM=mmitr
CM=cm
PT=taneqqi\u1E6D
INCH=di|"
# color codes
INVISIBLE=uffir
BLACK=amerkan
SILVER=a\u1E93ref
GRAY=amli\u0263di|amli\u0263di
WHITE=amellal
MAROON=aqahwi
RED=azegga\u0263
PURPLE=agadaw
FUCHSIA=fuchsia|magenta
GREEN=azegzaw
LIME=aqares
OLIVE=azemmur
YELLOW=awra\u0263
NAVY=navy
BLUE=amidadi
TEAL=anili afaw
AQUA=aqua|cyan
PINK=axuxi
TOMATO=\u1E6Duma\u1E6Dic
ORANGE=a\u010Dinawi
GOLD=ure\u0263
VIOLET=amidadi
SKYBLUE=anili igni
CHOCOLATE=cakula
BROWN=aqehwi
# messages
LIBRELOGO=LibreLogo
ERROR=Tucc\u1E0Da(deg uzirig %s)
ERR_ZERODIVISION=Tabe\u1E6D\u1E6Dayt \u0263ef ilem.
ERR_NAME=Isem arussin: \u201C%s\u201D.
ERR_ARGUMENTS=%s yettawi %s n ti\u0263ira (%s ttunefken-d).
ERR_BLOCK=Tucc\u1E0Da (tallunt gar tacciwin tzadne\u0263 txu\u1E63?)
ERR_KEY=Aferdis arussin: %s
ERR_INDEX=Amatar berra n tegrumma.
ERR_STOP=Ahil ibedd:
ERR_MAXRECURSION=telqey (%d) n usniles tafellayt t\u025Bedda.
ERR_MEMORY=Txu\u1E63 tkatut.
ERR_NOTAPROGRAM=Teb\u0263i\u1E0D ad tselkeme\u1E0D isemli-agi a\u1E0Dris?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=\u0430\u043B\u0493\u0430|\u0430\u043B
BACKWARD=\u0430\u0440\u0442\u049B\u0430|\u0430\u0440
TURNLEFT=\u0441\u043E\u043B\u0493\u0430|\u0441\u043E\u043B\u0493\u0430_\u0431\u04B1\u0440\u044B\u043B\u0443|\u0441
TURNRIGHT=\u043E\u04A3\u0493\u0430|\u043E\u04A3\u0493\u0430_\u0431\u04B1\u0440\u044B\u043B\u0443|\u043E
PENUP=\u049B\u0430\u043B\u0430\u043C\u0434\u044B_\u043A\u04E9\u0442\u0435\u0440\u0443|\u049B\u043A
PENDOWN=\u049B\u0430\u043B\u0430\u043C\u0434\u044B_\u0442\u04AF\u0441\u0456\u0440\u0443|\u049B\u0442
HOME=\u0431\u0430\u0441\u044B
POINT=\u043D\u04AF\u043A\u0442\u0435
CIRCLE=\u0448\u0435\u04A3\u0431\u0435\u0440
ELLIPSE=\u044D\u043B\u043B\u0438\u043F\u0441
SQUARE=\u0448\u0430\u0440\u0448\u044B
RECTANGLE=\u0442\u0456\u043A\u0442\u04E9\u0440\u0442\u0431\u04B1\u0440\u044B\u0448
LABEL=\u0431\u0435\u043B\u0433\u0456
PENCOLOR=\u049B\u0430\u043B\u0430\u043C_\u0442\u04AF\u0441\u0456|\u0441\u044B\u0437\u044B\u049B_\u0442\u04AF\u0441\u0456|\u0442
ANY=\u043A\u0435\u0437-\u043A\u0435\u043B\u0433\u0435\u043D
PENWIDTH=\u049B\u0430\u043B\u0430\u043C_\u04E9\u043B\u0448\u0435\u043C\u0456|\u049B\u0430\u043B\u0430\u043C_\u0436\u0443\u0430\u043D\u0434\u044B\u0493\u044B|\u0441\u044B\u0437\u044B\u049B_\u0436\u0443\u0430\u043D\u0434\u044B\u0493\u044B|\u0441\u0436
PENSTYLE=\u049B\u0430\u043B\u0430\u043C_\u0441\u0442\u0438\u043B\u0456|\u0441\u044B\u0437\u044B\u049B_\u0441\u0442\u0438\u043B\u0456
PENJOINT=\u049B\u0430\u043B\u0430\u043C\u0434\u044B_\u0431\u0456\u0440\u0456\u043A\u0442\u0456\u0440\u0443|\u0441\u044B\u0437\u044B\u049B\u0442\u0430\u0440\u0434\u044B_\u0431\u0456\u0440\u0456\u043A\u0442\u0456\u0440\u0443
PENCAP=\u0441\u044B\u0437\u044B\u049B_\u0431\u0430\u0441\u044B|\u0441\u044B\u0437\u044B\u049B_\u0430\u044F\u0493\u044B
NONE=\u0436\u043E\u049B
BEVEL=\u043A\u04E9\u043B\u0431\u0435\u0443
MITER=\u043A\u04E9\u043B\u0431\u0435\u044345
ROUNDED=\u0434\u043E\u043C\u0430\u043B\u0430\u049B\u0442\u0430\u0443
SOLID=\u0442\u04B1\u0442\u0430\u0441
DASH=\u0448\u0442\u0440\u0438\u0445\u0442\u0456
DOTTED=\u043F\u0443\u043D\u043A\u0442\u0438\u0440\u043B\u0456
CLOSE=\u0436\u0430\u0431\u0443
FILL=\u0442\u043E\u043B\u0442\u044B\u0440\u0443
FILLCOLOR=\u0442\u043E\u043B\u0442\u044B\u0440\u0443_\u0442\u04AF\u0441\u0456|\u0442\u0442
FILLTRANSPARENCY=\u0442\u043E\u043B\u0442\u044B\u0440\u0443_\u043C\u04E9\u043B\u0434\u0456\u0440\u043B\u0456\u043B\u0456\u0433\u0456
PENTRANSPARENCY=\u049B\u0430\u043B\u0430\u043C_\u043C\u04E9\u043B\u0434\u0456\u0440\u043B\u0456\u043B\u0456\u0433\u0456|\u0441\u044B\u0437\u044B\u049B_\u043C\u04E9\u043B\u0434\u0456\u0440\u043B\u0456\u043B\u0456\u0433\u0456
FILLSTYLE=\u0442\u043E\u043B\u0442\u044B\u0440\u0443_\u0442\u04AF\u0440\u0456
FONTCOLOR=\u049B\u0430\u0440\u0456\u043F_\u0442\u04AF\u0441\u0456|\u043C\u04D9\u0442\u0456\u043D_\u0442\u04AF\u0441\u0456
FONTTRANSPARENCY=\u049B\u0430\u0440\u0456\u043F_\u043C\u04E9\u043B\u0434\u0456\u0440\u043B\u0456\u0433\u0456|\u043C\u04D9\u0442\u0456\u043D_\u043C\u04E9\u043B\u0434\u0456\u0440\u043B\u0456\u0433\u0456
FONTHEIGHT=\u049B\u0430\u0440\u0456\u043F_\u04E9\u043B\u0448\u0435\u043C\u0456|\u043C\u04D9\u0442\u0456\u043D_\u04E9\u043B\u0448\u0435\u043C\u0456|\u043C\u04D9\u0442\u0456\u043D_\u0431\u0438\u0456\u043A\u0442\u0456\u0433\u0456
FONTWEIGHT=\u049B\u0430\u0440\u0456\u043F_\u0436\u0443\u0430\u043D\u0434\u044B\u0493\u044B
FONTSTYLE=\u049B\u0430\u0440\u0456\u043F_\u0441\u0442\u0438\u043B\u0456
BOLD=\u0436\u0443\u0430\u043D
ITALIC=\u043A\u0443\u0440\u0441\u0438\u0432
UPRIGHT=\u0442\u0443\u0440\u0430|\u049B\u0430\u043B\u044B\u043F\u0442\u044B
NORMAL=\u049B\u0430\u043B\u044B\u043F\u0442\u044B
FONTFAMILY=\u049B\u0430\u0440\u0456\u043F\u0442\u0435\u0440_\u043E\u0442\u0431\u0430\u0441\u044B
CLEARSCREEN=\u044D\u043A\u0440\u0430\u043D\u0434\u044B_\u0442\u0430\u0437\u0430\u0440\u0442\u0443|\u044D\u0442
TEXT=\u043C\u04D9\u0442\u0456\u043D
HIDETURTLE=\u0442\u0430\u0441\u0431\u0430\u049B\u0430\u043D\u044B_\u0436\u0430\u0441\u044B\u0440\u0443|\u0442\u0436|\u043C\u0435\u043D\u0456_\u0436\u0430\u0441\u044B\u0440\u0443
SHOWTURTLE=\u0442\u0430\u0441\u0431\u0430\u049B\u0430\u043D\u044B_\u043A\u04E9\u0440\u0441\u0435\u0442\u0443|\u0442\u043A|\u043C\u0435\u043D\u0456_\u043A\u04E9\u0440\u0441\u0435\u0442\u0443
POSITION=\u043E\u0440\u043D\u044B|\u043E\u0440\u043D|\u043E\u0440\u043D\u044B\u043D_\u043A\u04E9\u0440\u0441\u0435\u0442\u0443
HEADING=\u0430\u0442\u0430\u0443\u044B|\u0430\u0442\u0430\u0443\u044B\u043D_\u043E\u0440\u043D\u0430\u0442\u0443|\u0430\u0442\u0430
PAGESIZE=\u0431\u0435\u0442_\u04E9\u043B\u0448\u0435\u043C\u0456
GROUP=\u0441\u0443\u0440\u0435\u0442|\u0441\u0443\u0440
# control structures
TO=\u049B\u0430\u0439\u0434\u0430
END=\u0441\u043E\u04A3\u044B
STOP=\u0442\u043E\u049B\u0442\u0430\u0442\u0443
REPEAT=\u049B\u0430\u0439\u0442\u0430\u043B\u0430\u0443|\u0448\u0435\u043A\u0441\u0456\u0437
REPCOUNT=\u049B\u0430\u0439\u0442\u0430\u043B\u0430\u0443
BREAK=\u04AF\u0437\u0443
CONTINUE=\u0436\u0430\u043B\u0493\u0430\u0441\u0442\u044B\u0440\u0443
WHILE=\u0434\u0435\u0439\u0456\u043D
FOR=\u04AF\u0448\u0456\u043D
IN=\u0456\u0448\u0456\u043D\u0434\u0435
IF=\u0435\u0433\u0435\u0440
OUTPUT=\u0448\u044B\u0493\u044B\u0441
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=\u0430\u049B\u0438\u049B\u0430\u0442
FALSE=\u0436\u0430\u043B\u0493\u0430\u043D
NOT=\u0435\u043C\u0435\u0441
AND=\u0436\u04D9\u043D\u0435
OR=\u043D\u0435\u043C\u0435\u0441\u0435
INPUT=\u043A\u0456\u0440\u0456\u0441
PRINT=\u0431\u0430\u0441\u043F\u0430
SLEEP=\u043A\u04AF\u0442\u0443
GLOBAL=\u0436\u0430\u043B\u043F\u044B
# functions
RANDOM=\u043A\u0435\u0437\u0434\u0435\u0439\u0441\u043E\u049B
INT=\u0431\u04AF\u0442\u0456\u043D
FLOAT=\u0431\u04E9\u043B\u0448\u0435\u043A
STR=\u0436\u043E\u043B
SQRT=sqrt
LOG10=log10
SIN=sin
COS=cos
ROUND=\u0434\u043E\u043C\u0430\u043B\u0430\u049B\u0442\u0430\u0443
ABS=abs
COUNT=\u0441\u0430\u043D\u044B
SET=\u043E\u0440\u043D\u0430\u0442\u0443
RANGE=\u0430\u0443\u049B\u044B\u043C
LIST=\u0442\u0456\u0437\u0456\u043C
TUPLE=\u043A\u043E\u0440\u0442\u0435\u0436
SORTED=\u0441\u04B1\u0440\u044B\u043F\u0442\u0430\u043B\u0493\u0430\u043D
RESUB=sub
RESEARCH=\u0456\u0437\u0434\u0435\u0443
REFINDALL=\u0431\u0430\u0440\u043B\u044B\u0493\u044B\u043D_\u0442\u0430\u0431\u0443
MIN=\u043C\u0438\u043D
MAX=\u043C\u0430\u043A\u0441
PI=pi|\u043F\u0438|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=\u0441
MM=\u043C\u043C
CM=\u0441\u043C
PT=\u043F\u0442
INCH=\u0434\u044E\u0439\u043C|"
# color codes
INVISIBLE=\u0436\u0430\u0441\u044B\u0440\u044B\u043D
BLACK=\u049B\u0430\u0440\u0430
SILVER=\u043A\u04AF\u043C\u0456\u0441
GRAY=\u0441\u04B1\u0440
WHITE=\u0430\u049B
MAROON=\u049B\u044B\u0437\u044B\u043B-\u049B\u043E\u04A3\u044B\u0440
RED=\u049B\u044B\u0437\u044B\u043B
PURPLE=\u043A\u04AF\u043B\u0433\u0456\u043D
FUCHSIA=\u049B\u0430\u0440\u0430\u049B\u043E\u0448\u049B\u044B\u043B
GREEN=\u0436\u0430\u0441\u044B\u043B
LIME=\u0430\u0448\u044B\u049B \u0436\u0430\u0441\u044B\u043B
OLIVE=\u0437\u04D9\u0439\u0442\u04AF\u043D
YELLOW=\u0441\u0430\u0440\u044B
NAVY=\u049B\u043E\u044E_\u043A\u04E9\u043A
BLUE=\u043A\u04E9\u043A
TEAL=\u0436\u0430\u0441\u044B\u043B_\u043A\u04E9\u043A
AQUA=\u043A\u04E9\u0433\u0456\u043B\u0434\u0456\u0440
PINK=\u049B\u044B\u0437\u0493\u044B\u043B\u0442
TOMATO=\u043A\u04AF\u04A3\u0433\u0456\u0440\u0442_\u049B\u044B\u0437\u044B\u043B
ORANGE=\u049B\u044B\u0437\u0493\u044B\u043B\u0442-\u0441\u0430\u0440\u044B
GOLD=\u0430\u043B\u0442\u044B\u043D
VIOLET=\u043A\u04AF\u043B\u0433\u0456\u043D
SKYBLUE=\u0430\u0448\u044B\u049B_\u043A\u04E9\u043A
CHOCOLATE=\u0448\u043E\u043A\u043E\u043B\u0430\u0434_\u0442\u04AF\u0441\u0442\u0456
BROWN=\u049B\u043E\u04A3\u044B\u0440
# messages
LIBRELOGO=LibreLogo
ERROR=\u049A\u0430\u0442\u0435 (%s \u0436\u043E\u043B\u044B\u043D\u0434\u0430)
ERR_ZERODIVISION=\u041D\u04E9\u043B\u0433\u0435 \u0431\u04E9\u043B\u0443.
ERR_NAME=\u0410\u0442\u044B \u0431\u0435\u043B\u0433\u0456\u0441\u0456\u0437: "%s".
ERR_ARGUMENTS=%s \u04AF\u0448\u0456\u043D %s \u0430\u0440\u0433\u0443\u043C\u0435\u043D\u0442 \u043A\u0435\u0440\u0435\u043A (%s \u0431\u0435\u0440\u0456\u043B\u0434\u0456).
ERR_BLOCK=\u049A\u0430\u0442\u0435 (\u0436\u0430\u049B\u0448\u0430 \u0456\u0448\u0456\u043D\u0434\u0435\u0433\u0456 \u0431\u043E\u0441 \u0430\u0440\u0430\u043B\u044B\u049B\u0442\u0430\u0440 \u0430\u0440\u0442\u044B\u049B \u043D\u0435\u043C\u0435\u0441\u0435 \u0436\u0435\u0442\u0456\u0441\u043F\u0435\u0439\u0434\u0456?)
ERR_KEY=\u0411\u0435\u043B\u0433\u0456\u0441\u0456\u0437 \u044D\u043B\u0435\u043C\u0435\u043D\u0442: %s
ERR_INDEX=\u0418\u043D\u0434\u0435\u043A\u0441 \u0430\u0443\u049B\u044B\u043C\u043D\u0430\u043D \u0442\u044B\u0441.
ERR_STOP=\u0411\u0430\u0493\u0434\u0430\u0440\u043B\u0430\u043C\u0430 \u04AF\u0437\u0456\u043B\u0434\u0456:
ERR_MAXRECURSION=\u0440\u0435\u043A\u0443\u0440\u0441\u0438\u044F\u043D\u044B\u04A3 \u043C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u0434\u044B \u0442\u0435\u0440\u0435\u04A3\u0434\u0456\u0433\u0456\u043D\u0435\u043D (%d) \u0430\u0441\u044B\u043F \u043A\u0435\u0442\u0442\u0456\u043A.
ERR_MEMORY=\u0436\u0430\u0434\u044B \u0436\u0435\u0442\u043A\u0456\u043B\u0456\u043A\u0441\u0456\u0437.
ERR_NOTAPROGRAM=\u0411\u04B1\u043B \u043C\u04D9\u0442\u0456\u043D\u0434\u0456\u043A \u049B\u04B1\u0436\u0430\u0442\u0442\u044B \u043E\u0440\u044B\u043D\u0434\u0430\u0443 \u043A\u0435\u0440\u0435\u043A \u043F\u0435?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=\u1794\u1789\u17D2\u1787\u17BC\u1793\u200B\u1794\u1793\u17D2\u178F|fd
BACKWARD=\u1790\u1799\u1780\u17D2\u179A\u17C4\u1799|bk
TURNLEFT=\u1786\u17D2\u179C\u17C1\u1784|turnleft|lt
TURNRIGHT=\u179F\u17D2\u178A\u17B6\u17C6|turnright|rt
PENUP=penup|pu
PENDOWN=pendown
HOME=\u178A\u17BE\u1798
POINT=\u1785\u17C6\u178E\u17BB\u1785
CIRCLE=\u179A\u1784\u17D2\u179C\u1784\u17CB
ELLIPSE=\u1796\u1784\u200B\u1780\u17D2\u179A\u1796\u17BE
SQUARE=\u1780\u17B6\u179A\u17C1
RECTANGLE=\u1785\u178F\u17BB\u1780\u17C4\u178E\u1780\u17C2\u1784
LABEL=\u179F\u17D2\u179B\u17B6\u1780
PENCOLOR=\u1796\u178E\u17CC\u200B\u1794\u17C9\u17B7\u1780|pencolour|linecolor|pc
ANY=\u178E\u17B6\u1798\u17BD\u1799
PENWIDTH=\u1791\u17C6\u17A0\u17C6\u200B\u1794\u17C9\u17B7\u1780|penwidth|linewidth|ps
PENSTYLE=\u179A\u1785\u1793\u17B6\u1794\u17D0\u1791\u17D2\u1798\u200B\u1794\u17C9\u17B7\u1780|linestyle
PENJOINT=penjoint|linejoint
PENCAP=pencap|linecap
NONE=\u1782\u17D2\u1798\u17B6\u1793
BEVEL=\u1787\u17D2\u179A\u17BB\u1784\u200B\u1791\u17C1\u179A
MITER=\u1795\u17D2\u1782\u17BB\u17C6
ROUNDED=\u1798\u17BC\u179B
SOLID=\u178F\u17B6\u1793\u17CB
DASH=\u200B\u178A\u17B6\u1785\u17CB\u17D7
DOTTED=\u1785\u17BB\u1785\u17D7
CLOSE=\u1794\u17B7\u1791
FILL=\u1794\u17C6\u1796\u17C1\u1789
FILLCOLOR=\u1796\u178E\u17CC\u200B\u1794\u17C6\u1796\u17C1\u1789|fillcolour|fc
FILLTRANSPARENCY=\u1794\u17C6\u1796\u17C1\u1789\u200B\u1797\u17B6\u1796\u200B\u1790\u17D2\u179B\u17B6
PENTRANSPARENCY=\u1797\u17B6\u1796\u200B\u1790\u17D2\u179B\u17B6|\u1797\u17B6\u1796\u1790\u17D2\u179B\u17B6\u1794\u1793\u17D2\u1791\u17B6\u178F\u17CB
FILLSTYLE=\u179A\u1785\u1793\u17B6\u1794\u17D0\u1791\u17D2\u1798\u200B\u200B\u1794\u17C6\u1796\u17C1\u1789
FONTCOLOR=\u1796\u178E\u17CC\u200B\u1796\u17BB\u1798\u17D2\u1796\u17A2\u1780\u17D2\u179F\u179A|textcolor|textcolour
FONTTRANSPARENCY=fonttransparency|texttransparency
FONTHEIGHT=\u1791\u17C6\u17A0\u17C6\u200B\u1796\u17BB\u1798\u17D2\u1796\u17A2\u1780\u17D2\u179F\u179A|textsize|textheight
FONTWEIGHT=\u1780\u1798\u17D2\u179A\u17B6\u179F\u17CB\u200B\u1796\u17BB\u1798\u17D2\u1796\u17A2\u1780\u17D2\u179F\u179A
FONTSTYLE=\u179A\u1785\u1793\u17B6\u1794\u17D0\u1791\u17D2\u1798\u200B\u1796\u17BB\u1798\u17D2\u1796\u17A2\u1780\u17D2\u179F\u179A
BOLD=\u178A\u17B7\u178F\u200B
ITALIC=\u1791\u17D2\u179A\u17C1\u178F
UPRIGHT=\u179F\u17D2\u178A\u17B6\u17C6|\u1792\u1798\u17D2\u1798\u178F\u17B6
NORMAL=\u1792\u1798\u17D2\u1798\u178F\u17B6\u200B
FONTFAMILY=\u1780\u17D2\u179A\u17BB\u1798\u200B\u1796\u17BB\u1798\u17D2\u1796\u17A2\u1780\u17D2\u179F\u179A
CLEARSCREEN=\u179F\u1798\u17D2\u17A2\u17B6\u178F\u200B\u17A2\u17C1\u1780\u17D2\u179A\u1784\u17CB|cs
TEXT=\u17A2\u178F\u17D2\u1790\u1794\u1791
HIDETURTLE=hideturtle|ht|hideme
SHOWTURTLE=showturtle|st|showme
POSITION=position|pos|setpos
HEADING=heading|setheading|seth
PAGESIZE=\u1791\u17C6\u17A0\u17C6\u200B\u1791\u17C6\u1796\u17D0\u179A
GROUP=\u179A\u17BC\u1794\u1797\u17B6\u1796|pic
# control structures
TO=\u178A\u179B\u17CB
END=\u1796\u17C1\u179B\u1794\u1789\u17D2\u1785\u1794\u17CB
STOP=\u1794\u1789\u17D2\u1788\u1794\u17CB
REPEAT=\u1792\u17D2\u179C\u17BE\u200B\u17A1\u17BE\u1784\u200B\u179C\u17B7\u1789|\u179A\u17A0\u17BC\u178F
REPCOUNT=repcount
BREAK=\u1794\u17C6\u1794\u17C2\u1780
CONTINUE=\u1794\u1793\u17D2\u178F
WHILE=while
FOR=\u179F\u1798\u17D2\u179A\u17B6\u1794\u17CB
IN=\u1782\u17B7\u178F\u200B\u1787\u17B6
IF=if
OUTPUT=\u179B\u1791\u17D2\u1792\u1795\u179B
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=\u1796\u17B7\u178F
FALSE=\u1798\u17B7\u1793\u200B\u1796\u17B7\u178F
NOT=not
AND=\u1793\u17B7\u1784
OR=or
INPUT=\u200B\u1794\u1789\u17D2\u1785\u17BC\u179B
PRINT=\u1794\u17C4\u17C7\u200B\u200B\u1796\u17BB\u1798\u17D2\u1796\u200B
SLEEP=\u178A\u17C1\u1780
GLOBAL=\u179F\u1780\u179B\u200B
# functions
RANDOM=\u1785\u17C3\u178A\u1793\u17D2\u1799
INT=int
FLOAT=\u17A2\u178E\u17D2\u178A\u17C2\u178F
STR=str
SQRT=sqrt
LOG10=log10
SIN=sin
COS=cos
ROUND=\u1798\u17BC\u179B
ABS=abs
COUNT=\u1785\u17C6\u1793\u17BD\u1793
SET=\u1780\u17C6\u178E\u178F\u17CB
RANGE=\u1787\u17BD\u179A
LIST=\u1794\u1789\u17D2\u1787\u17B8
TUPLE=tuple
SORTED=\u1794\u17B6\u1793\u200B\u178F\u1798\u17D2\u179A\u17C0\u1794
RESUB=sub
RESEARCH=\u179F\u17D2\u179C\u17C2\u1784\u179A\u1780\u200B
REFINDALL=findall
MIN=\u1793\u17B6\u1791\u17B8
MAX=\u17A2\u178F\u17B7\u1794\u179A\u1798\u17B6
PI=pi|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=h
MM=\u1798.\u1798.
CM=\u179F.\u1798.
PT=pt
INCH=in|"
# color codes
INVISIBLE=\u1798\u17BE\u179B\u200B\u1798\u17B7\u1793\u200B\u1783\u17BE\u1789
BLACK=\u1781\u17D2\u1798\u17C5\u200B
SILVER=\u1794\u17D2\u179A\u17B6\u1780\u17CB
GRAY=\u1794\u17D2\u179A\u1795\u17C7|grey
WHITE=\u179F
MAROON=\u178F\u17D2\u1793\u17C4\u178F\u200B\u1785\u17B6\u179F\u17CB
RED=\u1780\u17D2\u179A\u17A0\u1798
PURPLE=\u179F\u17D2\u179C\u17B6\u1799
FUCHSIA=\u179F\u17D2\u179C\u17B6\u1799\u200B\u1781\u17D2\u1785\u17B8|\u179F\u17D2\u179C\u17B6\u1799\u1781\u17D2\u1785\u17B8
GREEN=\u1794\u17C3\u178F\u1784
LIME=\u1794\u17C3\u178F\u1784
OLIVE=\u17A2\u17BC\u179B\u17B8\u179C
YELLOW=\u179B\u17BF\u1784
NAVY=\u1781\u17C0\u179C\u200B\u1785\u17B6\u179F\u17CB
BLUE=\u1781\u17C0\u179C
TEAL=\u1781\u17C0\u179C\u200B\u1794\u17C3\u178F\u1784\u200B\u1780\u17D2\u179A\u1798\u17C5
AQUA=aqua|cyan
PINK=\u1795\u17D2\u1780\u17B6\u1788\u17BC\u1780
TOMATO=\u1794\u17C9\u17C1\u1784\u1794\u17C9\u17C4\u17C7
ORANGE=\u200B\u1791\u17B9\u1780\u200B\u1780\u17D2\u179A\u17BC\u1785
GOLD=\u1798\u17B6\u179F
VIOLET=\u179F\u17D2\u179C\u17B6\u1799
SKYBLUE=\u1795\u17D2\u1791\u17C3\u1798\u17C1\u1783
CHOCOLATE=\u179F\u17BC\u1780\u17BC\u17A1\u17B6
BROWN=\u178F\u17D2\u1793\u17C4\u178F
# messages
LIBRELOGO=LibreLogo
ERROR=\u1780\u17C6\u17A0\u17BB\u179F (\u1780\u17D2\u1793\u17BB\u1784\u200B\u178F\u17BD %s)
ERR_ZERODIVISION=\u1785\u17C2\u1780\u200B\u1793\u17B9\u1784\u200B\u179F\u17BC\u1793\u17D2\u1799\u00A0\u17D4
ERR_NAME=Unknown name: \u201C%s\u201D.
ERR_ARGUMENTS=%s \u1785\u17B6\u1794\u17CB\u200B\u1799\u1780\u200B\u17A2\u17B6\u1782\u17BB\u1799\u1798\u17C9\u1784\u17CB %s (\u1794\u17B6\u1793\u200B\u1795\u17D2\u178A\u179B\u17CB\u17B2\u17D2\u1799 %s )\u17D4
ERR_BLOCK=\u1780\u17C6\u17A0\u17BB\u179F (\u1794\u17B6\u178F\u17CB\u200B \u17AC\u200B\u1798\u17B6\u1793\u200B\u1785\u1793\u17D2\u179B\u17C4\u17C7\u200B\u1794\u1793\u17D2\u1790\u17C2\u1798\u200B\u1793\u17C5\u200B\u179C\u1784\u17CB\u200B\u1780\u17D2\u179A\u1785\u1780?)
ERR_KEY=\u1798\u17B7\u1793\u200B\u179F\u17D2\u1782\u17B6\u179B\u17CB\u200B\u1792\u17B6\u178F\u17BB\u17D6 %s
ERR_INDEX=\u179B\u17B7\u1794\u17B7\u1780\u17D2\u179A\u1798\u200B\u1780\u17D2\u179A\u17C5\u200B\u1787\u17BD\u179A\u17D4
ERR_STOP=\u1794\u17B6\u1793\u200B\u1794\u1789\u17D2\u1785\u1794\u17CB\u200B\u1780\u1798\u17D2\u1798\u179C\u17B7\u1792\u17B8\u17D6
ERR_MAXRECURSION=\u1787\u1798\u17D2\u179A\u17C5\u200B\u1780\u17BE\u178F\u200B\u17A1\u17BE\u1784\u200B\u200B\u178A\u178A\u17C2\u179B\u200B\u17A2\u178F\u17B7\u1794\u179A\u1798\u17B6 (%d) \u1794\u17B6\u1793\u200B\u179B\u17BE\u179F\u17D4
ERR_MEMORY=\u17A2\u1784\u17D2\u1782\u200B\u1785\u1784\u1785\u17B6\u17C6\u200B\u1798\u17B7\u1793\u200B\u1782\u17D2\u179A\u1794\u17CB\u1782\u17D2\u179A\u17B6\u1793\u17CB\u00A0\u17D4
ERR_NOTAPROGRAM=\u178F\u17BE\u200B\u17A2\u17D2\u1793\u1780\u200B\u1785\u1784\u17CB\u200B\u178A\u17C6\u178E\u17BE\u179A\u1780\u17B6\u179A\u200B\u17AF\u1780\u179F\u17B6\u179A\u200B\u1793\u17C1\u17C7?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=forward|fd
BACKWARD=back|bk
TURNLEFT=left|turnleft|lt
TURNRIGHT=right|turnright|rt
PENUP=penup|pu
PENDOWN=pendown|pd
HOME=home
POINT=point
CIRCLE=circle
ELLIPSE=ellipse
SQUARE=square
RECTANGLE=rectangle
LABEL=label
PENCOLOR=pencolor|pencolour|linecolor|pc
ANY=any
PENWIDTH=pensize|penwidth|linewidth|ps
PENSTYLE=penstyle|linestyle
PENJOINT=penjoint|linejoint
PENCAP=pencap|linecap
NONE=ne yek j\u00EE
BEVEL=bevel
MITER=miter
ROUNDED=round
SOLID=solid
DASH=dashed
DOTTED=dotted
CLOSE=close
FILL=fill
FILLCOLOR=fillcolor|fillcolour|fc
FILLTRANSPARENCY=filltransparency
PENTRANSPARENCY=pentransparency|linetransparency
FILLSTYLE=fillstyle
FONTCOLOR=fontcolor|textcolor|textcolour
FONTTRANSPARENCY=fonttransparency|texttransparency
FONTHEIGHT=fontsize|textsize|textheight
FONTWEIGHT=fontweight
FONTSTYLE=fontstyle
BOLD=qalind
ITALIC=italic
UPRIGHT=upright|normal
NORMAL=asay\u00EE
FONTFAMILY=fontfamily
CLEARSCREEN=clearscreen|cs
TEXT=Niv\u00EEs
HIDETURTLE=hideturtle|ht|hideme
SHOWTURTLE=showturtle|st|showme
POSITION=position|pos|setpos
HEADING=heading|setheading|seth
PAGESIZE=pagesize
GROUP=picture|pic
# control structures
TO=to
END=daw\u00EE
STOP=stop
REPEAT=repeat|forever
REPCOUNT=repcount
BREAK=break
CONTINUE=continue
WHILE=while
FOR=ji bo
IN=\u00EEn\u00E7
IF=if
OUTPUT=output
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=rast e
FALSE=\u015Fa\u015F\u00EE ye
NOT=not
AND=\u00FB
OR=an j\u00EE
INPUT=input
PRINT=print
SLEEP=sleep
GLOBAL=global
# functions
RANDOM=random
INT=int
FLOAT=float
STR=str
SQRT=sqrt
LOG10=log10
SIN=sin
COS=cos
ROUND=round
ABS=abs
COUNT=Bihijm\u00EAre
SET=set
RANGE=Navber
LIST=list
TUPLE=tuple
SORTED=R\u00EAzkir\u00EE
RESUB=sub
RESEARCH=search
REFINDALL=findall
MIN=min
MAX=max
PI=pi|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=h
MM=mm
CM=cm
PT=pt
INCH=in|"
# color codes
INVISIBLE=invisible
BLACK=re\u015F
SILVER=silver
GRAY=gray|grey
WHITE=white
MAROON=maroon
RED=red
PURPLE=purple
FUCHSIA=fuchsia|magenta
GREEN=green
LIME=lime
OLIVE=olive
YELLOW=yellow
NAVY=navy
BLUE=blue
TEAL=teal
AQUA=aqua|cyan
PINK=pink
TOMATO=tomato
ORANGE=orange
GOLD=gold
VIOLET=violet
SKYBLUE=skyblue
CHOCOLATE=chocolate
BROWN=brown
# messages
LIBRELOGO=LibreLogo
ERROR=Error (in line %s)
ERR_ZERODIVISION=Li sifir\u00EA parva kirin.
ERR_NAME=Unknown name: \u201C%s\u201D.
ERR_ARGUMENTS=%s takes %s arguments (%s given).
ERR_BLOCK=Error (extra or missing spaces at brackets?)
ERR_KEY=Unknown element: %s
ERR_INDEX=Index out of range.
ERR_STOP=Program terminated:
ERR_MAXRECURSION=maximum recursion depth (%d) exceeded.
ERR_MEMORY=not enough memory.
ERR_NOTAPROGRAM=Do you want to run this text document?

View File

@@ -0,0 +1,156 @@
# turtle graphics
FORWARD=\u0CAE\u0CC1\u0C82\u0CA6\u0C95\u0CCD\u0C95\u0CC6|fd
BACKWARD=\u0CB9\u0CBF\u0C82\u0CA6\u0C95\u0CCD\u0C95\u0CC6|bk
TURNLEFT=\u0C8E\u0CA1|\u0C8E\u0CA1\u0C95\u0CCD\u0C95\u0CC6 \u0CA4\u0CBF\u0CB0\u0CC1\u0C97\u0CBF\u0CB8\u0CC1|lt
TURNRIGHT=\u0CAC\u0CB2|\u0CAC\u0CB2\u0C95\u0CCD\u0C95\u0CC6 \u0CA4\u0CBF\u0CB0\u0CC1\u0C97\u0CBF\u0CB8\u0CC1|rt
PENUP=\u0CB2\u0CC7\u0C96\u0CA8\u0CBF\u0C8E\u0CA4\u0CCD\u0CA4\u0CC1|pu
PENDOWN=\u0CB2\u0CC7\u0C96\u0CA8\u0CBF\u0C87\u0CB3\u0CBF\u0CB8\u0CC1|pd
HOME=\u0CA8\u0CC6\u0CB2\u0CC6
POINT=\u0CAC\u0CBF\u0C82\u0CA6\u0CC1\u0C97\u0CB3\u0CC1
CIRCLE=\u0CB5\u0CC3\u0CA4\u0CCD\u0CA4
ELLIPSE=\u0CA6\u0CC0\u0CB0\u0CCD\u0C98\u0CB5\u0CC3\u0CA4\u0CCD\u0CA4
SQUARE=\u0C9A\u0CCC\u0C95
RECTANGLE=\u0C86\u0CAF\u0CA4
LABEL=\u0CB2\u0CC7\u0CAC\u0CB2\u0CCD
PENCOLOR=\u0CB2\u0CC7\u0C96\u0CA8\u0CBF\u0CAC\u0CA3\u0CCD\u0CA3|\u0CB2\u0CC7\u0C96\u0CA8\u0CBF\u0CAF\u0CAC\u0CA3\u0CCD\u0CA3|\u0CB0\u0CC7\u0C96\u0CC6\u0CAC\u0CA3\u0CCD\u0CA3|pc
ANY=\u0CAF\u0CBE\u0CB5\u0CC1\u0CA6\u0CBE\u0CA6\u0CB0\u0CC2
PENWIDTH=\u0CB2\u0CC7\u0C96\u0CA8\u0CBF\u0C97\u0CBE\u0CA4\u0CCD\u0CB0|\u0CB2\u0CC7\u0C96\u0CA8\u0C85\u0C97\u0CB2|\u0CB0\u0CC7\u0C96\u0CC6\u0C85\u0C97\u0CB2|ps
PENSTYLE=\u0CB2\u0CC7\u0C96\u0CA8\u0CBF\u0CB6\u0CC8\u0CB2\u0CBF|\u0C97\u0CC6\u0CB0\u0CC6\u0CB6\u0CC8\u0CB2\u0CBF
PENJOINT=\u0CB2\u0CC7\u0C96\u0CA8\u0CBF\u0C9C\u0CCB\u0CA1\u0CA3\u0CC6|\u0CB0\u0CC7\u0C96\u0CC6\u0C9C\u0CCB\u0CA1\u0CA3\u0CC6
PENCAP=\u0CB2\u0CC7\u0C96\u0CA8\u0CBF\u0C95\u0CCD\u0CAF\u0CBE\u0CAA\u0CCD|\u0CB8\u0CBE\u0CB2\u0CBF\u0CA8\u0C95\u0CCD\u0CAF\u0CBE\u0CAA\u0CCD
NONE=\u0C8F\u0CA8\u0CC2 \u0C87\u0CB2\u0CCD\u0CB2
BEVEL=\u0CB8\u0CCD\u0CA4\u0CB0
MITER=\u0CAE\u0CBF\u0C9F\u0CB0\u0CCD
ROUNDED=\u0CA6\u0CC1\u0C82\u0CA1\u0CBE\u0CA6
SOLID=\u0C98\u0CA8
DASH=\u0C85\u0CA1\u0CCD\u0CA1\u0C97\u0CC6\u0CB0\u0CC6\u0C97\u0CB3\u0CC1\u0CB3\u0CCD\u0CB3
DOTTED=\u0C9A\u0CC1\u0C95\u0CCD\u0C95\u0CBF\u0CAF\u0CC1\u0C95\u0CCD\u0CA4
CLOSE=\u0CAE\u0CC1\u0C9A\u0CCD\u0C9A\u0CC1
FILL=\u0CA4\u0CC1\u0C82\u0CAC\u0CBF\u0CB8\u0CC1
FILLCOLOR=\u0CAC\u0CA3\u0CCD\u0CA3\u0CA4\u0CC1\u0C82\u0CAC\u0CBF\u0CB8\u0CC1|\u0CAC\u0CA3\u0CCD\u0CA3\u0CA4\u0CC1\u0C82\u0CAC\u0CBF\u0CB8\u0CC1|fc
FILLTRANSPARENCY=\u0CAA\u0CBE\u0CB0\u0CA6\u0CB0\u0CCD\u0CB6\u0C95\u0CA4\u0CC6\u0CAD\u0CB0\u0CCD\u0CA4\u0CBF\u0CAE\u0CBE\u0CA1\u0CC1
PENTRANSPARENCY=\u0CB2\u0CC7\u0C96\u0CA8\u0CBF\u0CAA\u0CBE\u0CB0\u0CA6\u0CB0\u0CCD\u0CB6\u0C95\u0CA4\u0CC6|\u0CB8\u0CBE\u0CB2\u0CBF\u0CA8\u0CAA\u0CBE\u0CB0\u0CA6\u0CB0\u0CCD\u0CB6\u0C95\u0CA4\u0CC6
FILLSTYLE=\u0CA4\u0CC1\u0C82\u0CAC\u0CBF\u0CB8\u0CC1\u0CB5 \u0CB6\u0CC8\u0CB2\u0CBF
FONTCOLOR=\u0C85\u0C95\u0CCD\u0CB7\u0CB0\u0CB6\u0CC8\u0CB2\u0CBF\u0CAC\u0CA3\u0CCD\u0CA3|\u0CAA\u0CA0\u0CCD\u0CAF\u0CAC\u0CA3\u0CCD\u0CA3|\u0CAA\u0CA0\u0CCD\u0CAF\u0CAC\u0CA3\u0CCD\u0CA3
FONTTRANSPARENCY=fonttransparency|texttransparency
FONTHEIGHT=\u0C85\u0C95\u0CCD\u0CB7\u0CB0\u0CB6\u0CC8\u0CB2\u0CBF\u0C97\u0CBE\u0CA4\u0CCD\u0CB0|\u0CAA\u0CA0\u0CCD\u0CAF\u0C97\u0CBE\u0CA4\u0CCD\u0CB0|\u0CAA\u0CA0\u0CCD\u0CAF\u0C8E\u0CA4\u0CCD\u0CA4\u0CB0
FONTWEIGHT=\u0C85\u0C95\u0CCD\u0CB7\u0CB0\u0CB6\u0CC8\u0CB2\u0CBF \u0CA4\u0CC2\u0C95
FONTSTYLE=\u0C85\u0C95\u0CCD\u0CB7\u0CB0\u0CB6\u0CC8\u0CB2\u0CBF
BOLD=\u0CAC\u0CCB\u0CB2\u0CCD\u0CA1\u0CCD\u200D
ITALIC=\u0C87\u0C9F\u0CBE\u0CB2\u0CBF\u0C95\u0CCD
UPRIGHT=\u0CA8\u0CC6\u0C9F\u0CCD\u0C9F\u0C97\u0CC6|\u0CB8\u0CBE\u0CAE\u0CBE\u0CA8\u0CCD\u0CAF
NORMAL=\u0CB8\u0CBE\u0CAE\u0CBE\u0CA8\u0CCD\u0CAF
FONTFAMILY=\u0C85\u0C95\u0CCD\u0CB7\u0CB0\u0CB6\u0CC8\u0CB2\u0CBF\u0CB8\u0CAE\u0CC2\u0CB9
CLEARSCREEN=\u0CA4\u0CC6\u0CB0\u0CC6\u0C85\u0CB3\u0CBF\u0CB8\u0CC1|cs
TEXT=\u0CAA\u0CA0\u0CCD\u0CAF
HIDETURTLE=\u0C86\u0CAE\u0CC6\u0C85\u0CA1\u0C97\u0CBF\u0CB8\u0CC1|ht|\u0CA8\u0CA8\u0CCD\u0CA8\u0CA8\u0CCD\u0CA8\u0CC1\u0C85\u0CA1\u0C97\u0CBF\u0CB8\u0CC1
SHOWTURTLE=\u0C86\u0CAE\u0CC6\u0CA4\u0CCB\u0CB0\u0CBF\u0CB8\u0CC1|st|\u0CA8\u0CA8\u0CCD\u0CA8\u0CA8\u0CCD\u0CA8\u0CC1\u0CA4\u0CCB\u0CB0\u0CBF\u0CB8\u0CC1
POSITION=\u0CB8\u0CCD\u0CA5\u0CBE\u0CA8|pos|\u0CB8\u0CCD\u0CA5\u0CBE\u0CA8\u0CB9\u0CCA\u0C82\u0CA6\u0CBF\u0CB8\u0CC1
HEADING=\u0CB6\u0CC0\u0CB0\u0CCD\u0CB7\u0CBF\u0C95\u0CC6|\u0CB6\u0CC0\u0CB0\u0CCD\u0CB7\u0CBF\u0C95\u0CC6\u0CB9\u0CCA\u0C82\u0CA6\u0CBF\u0CB8\u0CC1|seth
PAGESIZE=\u0CAA\u0CC1\u0C9F\u0CA6\u0C97\u0CBE\u0CA4\u0CCD\u0CB0
GROUP=\u0C9A\u0CBF\u0CA4\u0CCD\u0CB0|pic
# control structures
TO=\u0C97\u0CC6
END=\u0C95\u0CCA\u0CA8\u0CC6
STOP=\u0CA8\u0CBF\u0CB2\u0CCD\u0CB2\u0CBF\u0CB8\u0CC1
REPEAT=\u0CAA\u0CC1\u0CA8\u0CB0\u0CBE\u0CB5\u0CB0\u0CCD\u0CA4\u0CBF\u0CB8\u0CC1|\u0CAF\u0CBE\u0CB5\u0CBE\u0C97\u0CB2\u0CC2
REPCOUNT=repcount
BREAK=\u0CA4\u0CA1\u0CC6
CONTINUE=\u0CAE\u0CC1\u0C82\u0CA6\u0CC1\u0CB5\u0CB0\u0CBF\u0CB8\u0CC1
WHILE=\u0CAC\u0CBF\u0CB3\u0CBF
FOR=\u0C97\u0CBE\u0C97\u0CBF
IN=in
IF=\u0C87\u0CA6\u0CC1 \u0C86\u0CA6\u0CB2\u0CCD\u0CB2\u0CBF
OUTPUT=\u0C94\u0C9F\u0CCD\u200C\u0CAA\u0CC1\u0C9F\u0CCD
LEFTSTRING=\u201C|\u2018
RIGHTSTRING=\u201D|\u2019
TRUE=\u0CB8\u0CA4\u0CCD\u0CAF
FALSE=\u0C85\u0CB8\u0CA4\u0CCD\u0CAF
NOT=\u0C87\u0CB2\u0CCD\u0CB2
AND=\u0CAE\u0CA4\u0CCD\u0CA4\u0CC1
OR=\u0C85\u0CA5\u0CB5
INPUT=\u0C87\u0CA8\u0CCD\u200C\u0CAA\u0CC1\u0C9F\u0CCD\u200C
PRINT=\u0CAE\u0CC1\u0CA6\u0CCD\u0CB0\u0CBF\u0CB8\u0CC1
SLEEP=\u0C9C\u0CA1
GLOBAL=\u0C9C\u0CBE\u0C97\u0CA4\u0CBF\u0C95
# functions
RANDOM=\u0CAF\u0CBE\u0CB5\u0CC1\u0CA6\u0CBE\u0CA6\u0CB0\u0CC1
INT=int
FLOAT=\u0CA4\u0CC7\u0CB2\u0CC1
STR=str
SQRT=sqrt
LOG10=log10
SIN=sin
COS=cos
ROUND=\u0CA6\u0CC1\u0C82\u0CA1\u0CBE\u0CA6
ABS=\u0C9F\u0CCD\u0CAF\u0CBE\u0CAC\u0CCD\u200C\u0C97\u0CB3\u0CC1
COUNT=\u0C8E\u0CA3\u0CBF\u0C95\u0CC6
SET=set
RANGE=\u0CB5\u0CCD\u0CAF\u0CBE\u0CAA\u0CCD\u0CA4\u0CBF
LIST=\u0CAA\u0C9F\u0CCD\u0C9F\u0CBF
TUPLE=\u0C9F\u0CAA\u0CB2\u0CCD
SORTED=\u0CB5\u0CBF\u0C82\u0C97\u0CA1\u0CBF\u0CB8\u0CB2\u0CBE\u0CA6
RESUB=\u0C89\u0CAA
RESEARCH=\u0CB9\u0CC1\u0CA1\u0CC1\u0C95\u0CC1
REFINDALL=\u0C8E\u0CB2\u0CCD\u0CB2\u0CBE\u0CB9\u0CC1\u0CA1\u0CC1\u0C95\u0CC1
MIN=\u0C95\u0CA8\u0CBF\u0CB7\u0CCD\u0C9F
MAX=\u0C97\u0CB0\u0CBF\u0CB7\u0CCD\u0C9F
PI=pi|\u03C0
# measurement
DECIMAL=.
DEG=\u00B0
HOUR=h
MM=\u0CAE\u0CBF.\u0CAE\u0CBF
CM=\u0CB8\u0CC6\u0C82.\u0CAE\u0CBF
PT=pt
INCH=in|"
# color codes
INVISIBLE=\u0C85\u0CA6\u0CC3\u0CB6\u0CCD\u0CAF
BLACK=\u0C95\u0CAA\u0CCD\u0CAA\u0CC1
SILVER=\u0CAC\u0CC6\u0CB3\u0CCD\u0CB3\u0CBF
GRAY=\u0CAC\u0CC2\u0CA6\u0CC1|\u0CAC\u0CC2\u0CA6\u0CC1
WHITE=\u0CAC\u0CBF\u0CB3\u0CBF
MAROON=\u0C95\u0C82\u0CA6\u0CC1\u0C97\u0CC6\u0C82\u0CAA\u0CC1
RED=\u0C95\u0CC6\u0C82\u0CAA\u0CC1
PURPLE=\u0CA8\u0CC7\u0CB0\u0CB3\u0CC6
FUCHSIA=\u0CA8\u0CC7\u0CB0\u0CB3\u0CC6\u0C97\u0CC6\u0C82\u0CAA\u0CC1|\u0C95\u0CA1\u0CC1\u0C97\u0CC6\u0C82\u0CAA\u0CC1
GREEN=\u0CB9\u0CB8\u0CBF\u0CB0\u0CC1
LIME=\u0CB8\u0CAE\u0CAF
OLIVE=\u0C86\u0CB2\u0CBF\u0CB5\u0CCD
YELLOW=\u0CB9\u0CB3\u0CA6\u0CBF
NAVY=\u0C97\u0CBE\u0CA2\u0CAC\u0CC2\u0CA6\u0CC1 \u0CA8\u0CC0\u0CB2\u0CBF
BLUE=\u0CA8\u0CC0\u0CB2\u0CBF
TEAL=\u0C97\u0CBE\u0CA2\u0CA8\u0CC0\u0CB2\u0CBF\u0CB9\u0CB8\u0CBF\u0CB0\u0CC1
AQUA=\u0CA8\u0CC0\u0CB2\u0CBF\u0CB9\u0CB8\u0CBF\u0CB0\u0CC1|\u0CB9\u0CB8\u0CBF\u0CB0\u0CC1\u0CA8\u0CC0\u0CB2\u0CBF
PINK=\u0CB8\u0C82\u0CAA\u0CB0\u0CCD\u0C95\u0C95\u0CCA\u0C82\u0CA1\u0CBF
TOMATO=\u0C9F\u0CCA\u0CAE\u0CCD\u0CAF\u0CBE\u0C9F\u0CCA
ORANGE=\u0CB5\u0CCD\u0CAF\u0CBE\u0CAA\u0CCD\u0CA4\u0CBF
GOLD=\u0CAC\u0CCB\u0CB2\u0CCD\u0CA1\u0CCD\u200D
VIOLET=\u0CA8\u0CC7\u0CB0\u0CB3\u0CC6
SKYBLUE=\u0C86\u0C95\u0CBE\u0CB6\u0CA8\u0CC0\u0CB2\u0CBF
CHOCOLATE=\u0C9A\u0CBE\u0C95\u0CCB\u0CB2\u0CC7\u0C9F\u0CCD
BROWN=\u0C95\u0C82\u0CA6\u0CC1
# messages
LIBRELOGO=LibreLogo
ERROR=\u0CA6\u0CCB\u0CB7 (%s \u0CB8\u0CBE\u0CB2\u0CBF\u0CA8\u0CB2\u0CCD\u0CB2\u0CBF)
ERR_ZERODIVISION=\u0CB6\u0CC2\u0CA8\u0CCD\u0CAF\u0CA6\u0CBF\u0C82\u0CA6 \u0CAD\u0CBE\u0C97\u0CBE\u0C95\u0CBE\u0CB0.
ERR_NAME=Unknown name: \u201C%s\u201D.
ERR_ARGUMENTS=%s \u0C8E\u0CA8\u0CCD\u0CA8\u0CC1\u0CB5\u0CC1\u0CA6\u0CC1 %s \u0C86\u0CB0\u0CCD\u0C97\u0CCD\u0CAF\u0CC1\u0CAE\u0CC6\u0C82\u0C9F\u0CCD\u200C\u0C97\u0CB3\u0CA8\u0CCD\u0CA8\u0CC1 \u0CA4\u0CC6\u0C97\u0CC6\u0CA6\u0CC1\u0C95\u0CCA\u0CB3\u0CCD\u0CB3\u0CC1\u0CA4\u0CCD\u0CA4\u0CA6\u0CC6 (%s \u0C92\u0CA6\u0C97\u0CBF\u0CB8\u0CB2\u0CBE\u0CA6).
ERR_BLOCK=\u0CA6\u0CCB\u0CB7 (\u0C86\u0CB5\u0CB0\u0CA3\u0C97\u0CB3\u0CB2\u0CCD\u0CB2\u0CBF \u0CB9\u0CC6\u0C9A\u0CCD\u0C9A\u0CC1\u0CB5\u0CB0\u0CBF \u0C85\u0C82\u0CA4\u0CB0\u0C97\u0CB3\u0CC1 \u0C87\u0CB5\u0CC6\u0CAF\u0CC6 \u0C85\u0CA5\u0CB5 \u0C95\u0CBE\u0CA3\u0CBF\u0CB8\u0CC1\u0CA4\u0CCD\u0CA4\u0CBF\u0CB2\u0CCD\u0CB2\u0CB5\u0CC6?)
ERR_KEY=\u0C97\u0CCA\u0CA4\u0CCD\u0CA4\u0CBF\u0CB0\u0CA6 \u0C98\u0C9F\u0C95: %s
ERR_INDEX=\u0CB8\u0CC2\u0C9A\u0CBF\u0CAF\u0CC1 \u0CB5\u0CCD\u0CAF\u0CBE\u0CAA\u0CCD\u0CA4\u0CBF\u0CAF \u0CB9\u0CCA\u0CB0\u0C97\u0CBF\u0CA6\u0CC6.
ERR_STOP=\u0CAA\u0CCD\u0CB0\u0CCB\u0C97\u0CCD\u0CB0\u0CBE\u0C82 \u0C85\u0C82\u0CA4\u0CCD\u0CAF\u0C97\u0CCA\u0C82\u0CA1\u0CBF\u0CA6\u0CC6:
ERR_MAXRECURSION=\u0C97\u0CB0\u0CBF\u0CB7\u0CCD\u0C9F \u0CAA\u0CC1\u0CA8\u0CB0\u0CBE\u0CB5\u0CB0\u0CCD\u0CA4\u0CA8\u0CBE \u0C86\u0CB3\u0CB5\u0CC1 (%d) \u0CAE\u0CC0\u0CB0\u0CBF\u0CA6\u0CC6.
ERR_MEMORY=\u0CB8\u0CBE\u0C95\u0CB7\u0CCD\u0C9F\u0CC1 \u0CB8\u0CCD\u0CAE\u0CC3\u0CA4\u0CBF \u0C87\u0CB2\u0CCD\u0CB2.
ERR_NOTAPROGRAM=\u0CA8\u0CC0\u0CB5\u0CC1 \u0C88 \u0CAA\u0CA0\u0CCD\u0CAF \u0CA6\u0CB8\u0CCD\u0CA4\u0CBE\u0CB5\u0CC7\u0C9C\u0CA8\u0CCD\u0CA8\u0CC1 \u0C9A\u0CB2\u0CBE\u0CAF\u0CBF\u0CB8\u0CB2\u0CC1 \u0CAC\u0CAF\u0CB8\u0CC1\u0CB5\u0CBF\u0CB0\u0CBE?

Some files were not shown because too many files have changed in this diff Show More